@import url(reset.css);

@font-face{
	font-family: Gilroy;
	src: url(../assets/Gilroy-Regular.otf);
	font-weight: 500;
}
@font-face{
	font-family: Gilroy;
	src: url(../assets/Gilroy-Medium.otf);
	font-weight: 600;
}
@font-face{
	font-family: Gilroy;
	src: url(../assets/Gilroy-Bold.otf);
	font-weight: bold;
}
a{
	color: inherit;
	text-decoration: none;
}
*{
	box-sizing: border-box;
	font-family: 'Gilroy' !important;
}
img{
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
body{
	font-family: 'Gilroy';
	font-size: 16px;
	color: #4E4E4E;
	background-image: url(../assets/main-bg.png);
	background-position: top center;
	background-color: #F6F8FC;
}
/*LODAER*/
.loader-wrp{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loader{
	width: 100px;
	height: 100px;
	border: 5px solid #F6F8FC;
	border-top-color: #89AD31;
	border-radius: 50px;
	animation: loader .5s infinite linear;
}
@keyframes loader{
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}
/*LOADER END*/
.top-panel{
	position: relative;
	width: 100%;
	height: 90px;
	background: #fff;
	color: #4B4B4B;
	padding: 0 10%;
	transition: 0.3s;
}
.top-panel .content{
	display: flex;
	overflow: hidden;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	position: relative;
}
.top-panel .content a.logo{
	position: absolute;
	left: 0;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 20px;
}
.top-panel .content a.logo span{
	margin-left: 15px;
}
.top-panel .content .phone{
	position: absolute;
	display: flex;
	align-items: center;
	right: 0;
	font-size: 22px;
	font-weight: 600;
}
.top-panel .content .middle{
	font-size: 16px;
	font-weight: 500;
}
.top-panel .content .middle span{
	padding: 0 10px;
	border-right: 1px solid #9D9D9D;
}
.top-panel .content .middle span:last-child{
	border: none;
}
.top-panel .content .phone span{
	display: block;
	width: 25px;
	height: 25px;
	background: url(../assets/phone.svg);
	background-size: 25px;
}
.top-panel .content .phone h1{
	padding-left: 10px;
}
/* HEADER */
.header{
	position: relative;
	width: 100%;
	background: url(../assets/header-bg.jpg) center no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 100px;
}
.header .container{
	width: 50%;
	height: 100%;
	background: rgba(137,173,49,.8);
	color: #fff;
}
.header .container .content{
	padding-top: 100px;
	padding-bottom: 100px;
	padding-right: 20px;
	padding-left: 20%;
}
.header .container .content h1{
	font-size: 36px;
	font-weight: 700;
}
.header .container .content p{
	font-size: 24px;
	line-height: 32px;
	padding: 25px 0;
}
.header .container .content a{
	display: inline-flex;
	background: #fff;
	color: #89AD31;
	font-weight: 600;
	font-size: 24px;
	border-radius: 100px;
	padding: 10px;
	padding-left: 30px;
	line-height: 50px;
}
.header .container .content a span{
	display: block;
	margin-left: 10px;
	width: 50px;
	height: 50px;
	background: url(../assets/phone-btn.svg);
	background-size: 50px;
}
.header .scroll-icon{
	position: absolute;
	left: 0; right: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: url(../assets/scroll-down.svg) center no-repeat;
	background-size: 24px 14px;
	background-color: #fff;
	margin: 0 auto;
	transform: translateY(30px);
	box-shadow: 0 3px 6px rgba(0,0,0,.2);
}
/* HEADER END */
/*  - ---   */
/*WHY WE*/
.why-we{
	padding: 0 10%;
}
.why-we .content{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.why-we .content .col{
	width: 330px;
	display: flex;
	align-items: center;
	margin: 10px 0;
}
.why-we .content .text{
	padding: 0 20px;	
	font-size: 16px;
	line-height: 18px;
}
.why-we .content .text h1{
	font-size: 18px;
	font-weight: 600;
	color: #89AD31;
	margin-bottom: 10px;
}
.why-we .content img{
	max-width: 60px;
	max-height: 60px;
	object-fit: contain;
}
/* WHY WE END */
/* HR LINE */
.hr-line{
	width: 80%;
	height: 2px;
	background: url(../assets/hr.png);
	margin: 50px auto;
}
/* SECTION TITLE */
.section-title {
	margin: 20px auto;
    font-size: 26px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}
.section-title span{
	position: relative;
    color: #89AD31;
}
.section-title span:before {
    display: block;
    content: '';
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: -40px;
    bottom: 0;
    margin: auto 0;
    width: 10px;
    height: 10px;
    background: #89AD31;
    opacity: 0.35;
}
.section-title span:after {
    display: block;
    content: '';
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    background: #89AD31;
    opacity: 0.35;
}
/* SERVICES LIST */
.services{
	padding: 0 10%;
	margin-bottom: 50px;
}
.services .content .service-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.services .content .service-list .col{
	cursor: default;
	min-width: 230px;
	max-width: 230px;
	margin: 10px;
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	padding-bottom: 30px;
	font-size: 16px;
	font-weight: 600;
	color: #89AD31;
	text-align: center;
	user-select: none;
	transition: 0.3s;
}
.services .content .service-list .col:hover{
	transform: scale(1.05);
	box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.services .content .service-list .col img{
	margin: 20px auto;
	max-width: 50px;
	max-height: 50px;
}
.services .all-services{
	padding-top: 50px;
}
.services .all-services h1{
	font-size: 26px;
	font-weight: 600;
}
.services .all-services p{
	color: #A5A5A5;
	font-size: 18px;
	line-height: 25px;
	max-width: 50%;
	margin: 20px 0;
}
.services .all-services .list ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.services .all-services .list ul li{
	width: 245px;
	padding: 10px;
	background: url(../assets/list-icon.svg) no-repeat;
	background-position: left center;
	white-space: nowrap;
	text-indent: 16px;
}
/* SERVICES LIST END */
/* HOW IT WORKS START */
.how-it-works{
	padding: 0 10%;
}
.how-it-works .steps{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 30px 0;
}
.how-it-works .steps .step{
	border-radius: 20px;
	width: 300px;
	background: #fff;
	margin: 10px;
	padding: 20px;
	text-align: center;
	color: #8D8D8D;
	cursor: default;
	transition: 0.3s;
}
.how-it-works .steps .step:hover{
	transform: scale(1.05);
	box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.how-it-works .steps .step h1{
	font-weight: 600;
}
.how-it-works .steps .step h2{
	font-size: 40px;
	color: #89AD31;
	margin: 10px 0;
	font-weight: bold;
}
.how-it-works .steps .step p{
	margin: 20px 0;
	line-height: 22px;
}
.how-it-works .content .title p{
	max-width: 500px;
	text-align: center;
	margin: 0 auto;
	line-height: 22px;
}
/* HOW IT WORKS END */
/* FAQ START */
.asked-questions{
	padding: 0 10%;
}
.asked-questions .desc{
	text-align: center;
}
.asked-questions .sect-img{
	width: 50px;
	height: 50px;
	margin: 0 auto;
	display: block;
}
.asked-questions .faqs{
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.asked-questions .faqs .faq{
	position: relative;
	width: 400px;
	background: url(../assets/question.svg) no-repeat;
	background-position: 15px 20px;
	background-size: 16px;
	background-color: #fff;
	margin: 10px;
	cursor: pointer;
	border: 2px dashed rgba(137,173,49,.5);
}
.asked-questions .faqs .faq:before{
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 16px;
	height: 16px;
	background: url(../assets/downn.png) center no-repeat;
	background-size: 100%;
	z-index: 1;
	transition: 0.3s;
}
.asked-questions .faqs .faq.shown:before{
	transform: rotate(180deg);
}
.asked-questions .faqs .faq-q{
	padding: 20px;
	padding-right: 40px;
	font-weight: 600;
	color: #89AD31;
	line-height: 20px;
	text-indent: 20px;
}
.asked-questions .faqs .faq-a{
	border: 1px solid #bdc3c7;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	border-top: none;
	display: none;
	position: absolute;
	background: #fff;
	min-width: 160px;
	z-index: 2;
	cursor: text;
	padding: 20px;
}
.asked-questions .faqs .faq.shown .faq-a{
}
/* END FAQS */
/* 50 STATES */
.fifty-states{
	margin-top: 50px;
	background: url(../assets/states-bg.png) center no-repeat;
	background-color: #89AD31;
	background-size: contain;
	padding: 50px 10%;
	color: #fff;
}
.fifty-states .top{
	text-align: center;
}
.fifty-states .top h1{
	margin: 20px auto;
	font-size: 28px;
	font-weight: 600;
}
.fifty-states .states{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.fifty-states .states span{
	display: block;
	width: 200px;
	padding: 10px 0;
	text-align: center;
}
/* 50 STATES END */
/* TESTIMONIALS */
.section-six .row{
	display: flex;
	flex-wrap: wrap;
	margin: 0 5%;
	margin-top: 50px;
}
.section-six .row .col{
	-webkit-box-flex: 0;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
	padding: 10px;
}
.section-six .row .card{
	width: 100%;
	background: #F1F1F1;
	border-radius: 20px;
	padding: 20px;
	color: #8D8D8D;
	font-size: 17px;
}
.section-six{
	padding-top: 30px;
}
.section-six .row .card .title{
	display: flex;
	align-items: center;
}
.section-six .row .card .title img{
	width: 50px;
	height: 50px;
	border-radius: 25px;
	object-fit: cover;
	background: #89AD31;
}
.section-six .row .card .title .name{
	padding-left: 15px;
}
.section-six .row .card .title .name h1{
	color: #5F5F5F;
	font-size: 20px;
}
.section-six .row .card .content{
	padding: 20px 0;
	line-height: 20px;
	font-style: italic;
}
.section-six .row .card .stars{
	height: 24px;
	width: 24px;
	background: url(../assets/stars.png) no-repeat;
}
.section-six .row .card .stars.one{
	width: 24px;
}
.section-six .row .card .stars.two{
	width: 57px;
}
.section-six .row .card .stars.three{
	width: 86px;
}
.section-six .row .card .stars.four{
	width: 115px;
}
.section-six .row .card .stars.five{
	width: 144px;
}
/* TESTIMONIALS END */
/* CALL AN PRO */
.call-an-pro{
	padding: 0 10%;
	padding-top: 50px;
	text-align: center;
	font-size: 28px;
}
.call-an-pro h1 span{
	color: #89AD31;
	font-weight: 600;
}
.call-an-pro a{
	padding: 15px 30px;
	background: #89AD31;
	color: #fff;
	display: inline-block;
	margin-top: 30px;
	font-size: 20px;
	font-weight: 600;
	border-radius: 50px;
}
/* CALL AN PRO END */
/* BOTTOM PARARAPH */
p.bottom{
	color: #8D8D8D;
	font-size: 14px;
	line-height: 22px;
	margin: 50px 10%;
}
/* BOTTOM PARARAPH END */
/* GALLERY */
.gallersy{
	margin: 0 10%;
}
.gallery .pics{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.gallery .pics .pic{
	position: relative;
	width: 330px;
	height: 250px;
	border-radius: 20px;
	margin: 10px;
	background: pink;
	transition: 0.3s;
	cursor: pointer;
	overflow: hidden;
}
.gallery .pics .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery .pics .pic:hover{
	transform: scale(1.05);
}
.pic-popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 99;
	justify-content: center;
	align-items: center;
	display: none;
}
.pic-popup .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0.8;
}
.pic-popup .pic{
	position: relative;
	border-radius: 20px;
	cursor: zoom-out;
	max-width: 90%;
	max-height: 90%;
}
/* GALLERY END */
.caller-btn{
	display: flex;
	justify-content: center;
}
.caller-btn a{
    padding: 15px 30px;
    background: #89AD31;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
}
/* FOOTER */
.footer{
	padding: 0 10%;
}
.footer .left{
	float: left;
	display: flex;
	flex-direction: column;
}
.footer .left a{
	font-weight: 600;
	display: flex;
	align-items: center;
}
.footer .left h1{
	color: #8D8D8D;
	padding-top: 20px;
}
.footer .left a span{
	margin-left: 15px;
}
.footer .right{
	float: right;
	display: flex;
	flex-wrap: wrap;
}
.footer .right .col{
	display: flex;
	flex-direction: column;
	margin: 0 20px;
}
.footer .right .col span{
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 10px;
}
.footer .right .col a{
	padding: 5px 0;
	font-size: 14px;
}
.top-panel .content .phone a{
	display: flex;
	align-items: center;
}
.top-panel.fixed{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	background: rgba(255,255,255,.9);
}
.custom-page{
	margin: 50px 10%;
}
.custom-page .title{
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	padding-bottom: 20px;
}
.custom-page p{
	padding: 10px 0;
}
.custom-page p strong{
	font-weight: 700;
}
.custom-page p a{
	text-decoration: underline !important;
}

/* RESPONSIVE */

@media only screen and (max-width: 1200px){
	.top-panel .content .middle{ display: none; }
	.header .container{ width: 80%; }
	.header .container .content{
		padding: 50px; padding-bottom: 50px; padding-left: 10%;
	}
	.header .container .content p{ padding: 20px 0; }
	.why-we .content .col{ width: 260px; }
	.header{ margin-bottom: 50px; }
	.hr-line{ margin: 30px auto; }
	.services .content .service-list .col img{ max-width: 40px; max-height: 40px; }
	.services .content .service-list .col{ padding: 10px; padding-bottom: 20px; }
	.services .all-services{ padding-top: 30px; }
	.services .all-services p{ max-width: 100%; }
	.services .all-services .list ul li{ width: 250px; }
	.services{ margin-bottom: 20px; }
	.how-it-works .steps .step img{ max-width: 40px; max-height: 40px; }
	.how-it-works .steps .step p{ margin: 5px 0; }
	.asked-questions .sect-img{ width: 40px; height: 40px; }
	.section-title{ font-size: 22px; }
	.asked-questions .faqs{ margin: 20px auto; }
	.fifty-states{ margin-top: 30px; padding: 30px 10%; }
	.fifty-states .top img{ max-width: 30px; }
	.fifty-states .top h1{ font-size: 20px; }
	.fifty-states .states span{ font-size: 14px; padding: 5px 0; }
	.section-six{ padding-top: 10px; }
	.section-six .row{ margin-top: 30px; }
	.section-six .row .card .title img{ width: 35px; height: 35px; }
	.section-six .row .card .title .name h1{ font-size: 16px; }
	.section-six .row .card .title .name h2{ font-size: 14px; }
	.section-six .row .card .content{ font-size: 14px; }
	.section-six .row .card .stars{ height: 20px; background-size: contain; }
	.call-an-pro{ padding-top: 20px; font-size: 22px; }
	.section-six .row .col{ flex: 0 0 50%; max-width: 50%; }
	.fifty-states .states{ justify-content: center; }
}
@media only screen and (max-width: 860px){
	.footer .right{
		float: none;
		width: 100%;
		padding-top: 30px;
		flex-direction: column;
	}
	.section-six .row .col{ flex: 0 0 100%; max-width: 100%;}
	.fifty-states .states span{ width: 100px; font-size: 13px; }
	.top-panel{ height: 60px; padding: 0 5%; }
	.top-panel.fixed .content .phone{ font-size: 16px; position: relative;}
	.top-panel .content .phone{ font-size: 16px; animation: call-btn 1s infinite;}
	.top-panel .content .phone span{ width: 16px; height: 16px; background-size: 16px; }
	.top-panel.fixed .content .phone h1:before{ content: 'Tap to call: '; }
	.top-panel .content .phone h1{ padding-left: 5px; font-size: 0;}
	.top-panel.fixed .content .phone h1{ padding-left: 5px; font-size: 16px;}
	.header .container .content h1{ font-size: 28px; margin-top: 20px;}
	.header .container .content p{ font-size: 18px; line-height: 23px; }
	@keyframes call-btn{
		0%{ transform: scale(1); }
		50%{ transform: scale(1.1); }
		100%{ transform: scale(1); }
	}
}
@media only screen and (max-width: 860px){
	.header .container{ width: 100%; text-align: center; }
	.header .scroll-icon{ transform: scale(0.7); bottom: -30px; }
	.header .container .content{ padding: 20px; padding-bottom: 40px; }
	.header .container .content a span{ display: none; }
	.header .container .content a{ font-size: 16px; line-height: 26px; padding: 10px 20px; animation: pulss 1s infinite;}
	@keyframes pulss{
		0%{ transform: scale(1); }
		50%{ transform: scale(0.9); }
		100%{ transform: scale(1); }
	}
	.section-title span:before{ display: none; }
	.section-title span:after{ display: none; }
	.top-panel .content a.logo img{ width: 25px; height: 25px; }
	.top-panel.fixed .content a.logo{ font-size: 16px; display: none;}
	.top-panel .content a.logo{ font-size: 16px;}
	.top-panel .content a.logo span{ margin-left: 5px; }
	.why-we .content .col{ flex-direction: column; text-align: center; }
	.why-we .content img{ max-width: 40px; max-height: 40px; margin-bottom: 15px; }
	.footer .right .col{ margin: 0; margin-bottom: 15px; }
	p.bottom{ margin: 0 5%; }
	.services{ padding: 0 5%; }
	.how-it-works{ padding: 0 5%; }
	.asked-questions{ padding: 0 5%; }
	.services .content .service-list .col{ min-width: 45%; max-width: 45%; margin: 1%; }
	.gallery .pics .pic{ width: 45%;margin: 1%; border-radius: 5px; height: 160px; }
}