*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Montserrat;
}
a{
	text-decoration: none !important;
}
ul{
	list-style: none !important;
}
:root{
	--theme-orange: #E74C3C;;
}
@media(min-width:768px){
	.container{
		width:750px
	}
}
@media(min-width:992px){
	.container{
		width:970px
	}
}
@media(min-width:1200px){
	.container{
		width:1170px
	}
}
.container-fluid{
	padding-right:15px;
	padding-left:15px;
	margin-right:auto;
	margin-left:auto
}
h2.heading{
	color: var(--theme-orange);
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
}
@media (max-width: 767px) {
	h2.heading{
		font-size: 21px;
		line-height: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	h2.heading{
		font-size: 32px;
		line-height: 35px;
	}
}
@media (min-width: 992px) and (max-width: 1600px) {
	h2.heading{
		font-size: 42px;
		line-height: 45px;
	}	
}

::selection{
	background: var(--theme-orange);
	color: #fff;
}
/*header*/
#header{
	background: url('/webp/v3/contact-bg.jpg');
	background-size: cover;
	height: 200px;
	display: flex;
	align-items: center;
}
#header h3{
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
}
@media (max-width: 767px) {
	#header h3{
		font-size: 30px;
		line-height: 43px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#header h3{
		font-size: 30px;
		line-height: 50px;
	}
	#header{
		height: 300px;
	}
}
@media (min-width: 992px) and (max-width: 1400px) {
	#header h3{
		font-size: 48px;
		line-height: 70px;
	}
	#header{
		height: 400px;
	}
}

/*contact*/
#contact{
	padding: 90px 0;
}
#contact .form-group{
	margin-top: 33px;
}
#contact .form-group label{
	font-size: 14px;
	line-height: 26px;
}
#contact .form-group label span{
	color: var(--theme-orange);
}
#contact .form-group input{
	height: 60px;
}
#contact .form-group .form-control{
	margin-top: 7px;
	background: #FFFFFF;
	border: 1px solid #B1AFAF;
	border-radius: 10px;
	box-shadow: none;
	transition: 0.3s;
	font-size: 14px;
}
#contact .form-group .form-control:focus{
	border-color: var(--theme-orange);
}
#contact .form-group p{
	font-size: 14px;
	line-height: 20px;
	margin-top: 5px;
}
#contact .form-group .btn{
	width: 50%;
	height: 60px;
	background: linear-gradient(90deg, #F1653F 0%, #E64432 100%);
	border-radius: 62px;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
}
@media (max-width: 767px) {
	#contact{
		padding: 40px 0;
	}
	#contact .form-group label{
		font-size: 14px;
	}
	#contact .form-group input{
		height: 70px;
	}
	#contact .form-group p{
		font-size: 14px;
	}
	#contact .form-group .btn{
		width: 95%;
		font-size: 16px;
	}
	#contact .form-group{
		margin-top: 25px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#contact{
		padding: 70px 0;
	}
	#contact .form-group{
		margin-top: 35px;
	}
	#contact .form-group input{
		height: 75px;
	}
	#contact .form-group label{
		font-size: 14px;
	}
	#contact .form-group p{
		font-size: 14px;
	}
}