/*header-section*/
.header-section{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 90vh;
	z-index: 3;
}
@media screen and (max-width:1000px){
	.hero-banner1{
		position: relative !important;
		height: auto;
		width: 100% !important;
		background: #F5F8FF!important;
	}
	.hero-banner1 img{
		display: inline-flex !important;
	}
}

.hero-banner1{
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	background: url(../img/contact-banner1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 23;
	transition: all 0.1s ease-in-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hero-banner1 img{
	display: none;
	max-width: 500px;
}
@media screen and (max-width:520px){
.hero-banner1 img{
	max-width: 100% !important;
}
}
.header-section .site-container{
	height: 100%;
}
.hero-sec{
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 80px;
}
@media screen and (max-width:1000px){
	.hero-sec{
		display: block !important;
	}
}



.main-contact{
	position: relative;
	width: 100%;
	height: auto;
}
@media screen and (max-width:1000px){
	.main-contact{
		margin-top: 50px !important;
	}
}
@media screen and (max-width:500px){
	.main-contact{
		padding: 0px !important;
	}
}
.contact-details{
	position: relative;
	width: 100%;
	height: auto;
	display: block;
}
.contact-details h1{
	margin: 0;
	padding: 0;
	white-space: nowrap;
	font-weight: 700;
}

.contact-details ul{
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	margin-top: 50px;
}
.contact-details ul li{
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	margin-top: 20px;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid #EEEEEE;
	padding-bottom: 17px;
}
.contact-details ul li p{
	margin: 0;
	padding: 0;
	margin-bottom: 5px;
	color: #768089;
}
.contact-details ul li a{
	display: inline-block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease-in-out;
}
.contact-details ul li a:hover{
	border-color: #ffffff;
}
/*contact-form*/
.contact-form,
.contact-form form{
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	margin-top: 20px;
}
.contact-form{
	margin-top: 50px;
}
.contact-form h3{
	margin: 0;
	padding: 0;
	font-size: 25px;
	font-weight: 700;
	color: #252525;
}
.form-input{
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.form-input input{
	position: relative;
	width: 100%;
	height: 60px;
	padding: 10px 20px;
	outline: none;
	border: none;
	background: #F2F3F5;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
	border: 1px solid #D1D1D1;
}
.form-input input::placeholder{
	color: #444444;
	font-size: 14px;
	font-weight: 500;
}
.form-input textarea:focus,
.form-input input:focus{
	border-color: #151A1E;
}
.form-input textarea{
	position: relative;
	width: 100%;
	height: 120px;
	padding: 10px 20px;
	outline: none;
	border: none;
	background: #F2F3F5;
	color: #444444;
	transition: all 0.3s ease-in-out;
	resize: none;
	border-radius: 3px;
	border: 1px solid #D1D1D1;
}
.form-input textarea::placeholder{
	color: #444444;
	font-size: 14px;
	font-weight: 500;
}

.form-input input[type="submit"]{
	position: relative;
	display: inline-flex;
	background: #FF3850;
	color: #ffffff !important;
	margin-top: 10px;
	padding: 15px 30px;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .125rem;
    white-space: nowrap;
    width: auto;
}
.form-input input[type="submit"]:hover{
	letter-spacing: 2px;
	background: #FF1533;
}

