@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}


body {
	font-family: "Poppins", sans-serif, "Segoe UI", Tahoma, Geneva, Verdana;
	font-weight: 500;
	outline: none;
	display: grid;
	background: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  h1,
  h2,
  h3,
  h4 {
	color: #4ffac1;
	font-weight: 700;
  }
  
  p {
	color: #7e4eec;
	font-weight: 500;
	line-height: 1.7;
  }
  
  a {
	text-decoration: none;
  }
  
  img {
	max-width: 90%;
  }
  
  .btn {
	display: inline-block;
	color: white;
	background-color: #2acfcf;
	text-transform: capitalize;
	font-weight: 700;
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 100px;
	transition: 0.3s;
  }
  
  .btn.btn-sm {
	padding: 7px 21px;
  }
  
  .btn.btn-lg {
	padding: 12px 36px;
  }
  
  .btn.btn-plus-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
  }
  
  .btn.btn-plus-icon .icon {
	font-size: 22px;
  }
  
  .btn:hover {
	background-color: #6be1e1;
  }
  
  .flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
  }
  
  .flex-ver-top {
	align-items: flex-start;
  }
  
  .scale-effect:active {
	transform: scale(0.88);
	transition: 0.2s;
  }
  
  .section-header {
	text-align: center;
  }
  
  .section-header h2 {
	font-size: 35px;
  }
  
  @media (max-width: 500px) {
	.section-header h2 {
	  font-size: 26px;
	}
  }
  
  @media (max-width: 280px) {
	.section-header h2 {
	  font-size: 22px;
	}
  }
  
  .section-header p {
	width: 50%;
	margin: 7px auto 0;
  }
  
  @media (max-width: 992px) {
	.section-header p {
	  width: 70%;
	}
  }
  
  @media (max-width: 500px) {
	.section-header p {
	  width: 100%;
	}
  }
  
  .container {
	position: relative;
	width: 78%;
	margin: 0 auto;
  }
  
  @media (max-width: 992px) {
	.container {
	  width: 90%;
	}
  }
  
  .header {
	padding: 45px 0;
  }
  
  .header .logo img {
	height: 30px;
  }
  
  .header .main-navgation {
	flex: 1;
	gap: 0;
  }



.contact-wrap {
	width: 80%;
	height: auto;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.contact-in {
	padding: 40px 30px;
}

.contact-in:nth-child(1) {
	flex: 30%;
	background: url(../images/1.jpg);
	color: rgb(196, 30, 30);
}

.contact-in:nth-child(2) {
	flex: 45%;
	background: #81f8c2;
}

.contact-in:nth-child(3) {
	flex: 25%;
	padding: 0;
}

.contact-in h1 {
	font-size: 24px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-in h2 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 15px;
}

.contact-in h2 i {
	font-size: 16px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: #edf8f9;
	color: #000;
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}

.contact-in p {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 20px;
}

.contact-in ul {
	padding: 0;
	margin: 0;
}

.contact-in ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
	margin-top: 5px;
}

.contact-in ul li a {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	background: rgb(164, 168, 167);
	border-radius: 50px;
}

.contact-in ul li a i {
	font-size: 14px;
	line-height: 30px;
	color: rgb(6, 5, 5);
}

.contact-in form {
	width: 100%;
	height: auto;
}

.contact-in-input {
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	border: 1px solid rgb(9, 9, 9);
	outline: none;
	padding-left: 5px;
	background: transparent;
	color: rgb(14, 16, 1);
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-input::placeholder {
	color: rgb(6, 6, 6);
}

.contact-in-textarea {
	width: 100%;
	height: 140px;
	margin-bottom: 20px;
	border: 1px solid rgb(13, 13, 13);
	outline: none;
	padding-top: 5px;
	padding-left: 5px;
	background: transparent;
	color: rgb(236, 58, 58);
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
	color: rgb(11, 11, 11);
}

.contact-in-btn {
	width: 100%;
	height: 40px;
	border: 1px solid rgb(10, 9, 9);
	outline: none;
	background: transparent;
	color: rgb(6, 5, 5);
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
}

.contact-in iframe {
	width: 100%;
	height: 100%;
}

@media only screen and (max-width:480px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}

@media only screen and (max-width:360px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}
