/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@font-face {
    font-family: 'Plantagenet Cherokee';
    src: url('../webfonts/PlantagenetCherokee.eot');
    src: url('../webfonts/PlantagenetCherokee.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/PlantagenetCherokee.woff2') format('woff2'),
        url('../webfonts/PlantagenetCherokee.woff') format('woff'),
        url('../webfonts/PlantagenetCherokee.ttf') format('truetype'),
        url('../webfonts/PlantagenetCherokee.svg#PlantagenetCherokee') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: "Roboto", sans-serif;
	background-color: #FAF5DC;
	color: #797979;
	font-weight: 400;
	font-size: 1.6rem;
}
/*font-family: "Red Rose", serif;*/
ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #FAF5DC;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: #A7691F;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}


/*home area*/
.home_area{
	padding-top: 4rem;
	position: relative;
	z-index: 1;
}
.hero_img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left bottom;
	position: absolute;
	right: 0;
	top: 0;
	width: 56%;
	height: 88%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-bottom: 4.4rem;
	max-width: 82.5rem;
}
.logo{
	display: inline-block;
	width: 100%;
	max-width: 35rem;
	margin-bottom: 6rem;
}
.home_area h1{
	font-size: 5.5rem;
	font-family: 'Plantagenet Cherokee';
	font-weight: 400;
	line-height: 1.1;
	color: #1C2A3F;
	max-width: 48.3rem;
	margin-bottom: 2.5rem;
}
.home_area p{
	font-size: 3rem;
	font-family: 'Plantagenet Cherokee';
	line-height: 1.1;
	max-width: 55rem;
}
.circle_box {
	background-color: #A7691F;
	height: 17.7rem;
	width: 17.7rem;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	padding: 1rem 0.5rem 1.6rem;
	-webkit-box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.29);
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.29);
	-webkit-transform: rotate(-19deg);
	-ms-transform: rotate(-19deg);
	transform: rotate(-19deg);
	position: absolute;
	left: 0;
	bottom: 18rem;
	z-index: 2;
}
.circle_box p{
	font-size: 2.5rem;
	color: #FAF5DD;
	line-height: 1;
	font-weight: 400;
}
.circle_box h2{
	font-size: 7.6rem;
	color: #FAF5DD;
	font-family: 'Plantagenet Cherokee';
	font-weight: 400;
	line-height: 1;
	margin-top: 0.5rem;
}
.circle_box h2 small{
	font-size: 2.8rem;
}
.button{
	color: #A7691F !important;
	font-size: 3rem;
	font-weight: 900;
	background-color: #FFDF2E;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	padding: 1rem 1.3rem;
	border-radius: 0.5rem;
	position: relative;
}
.button img{
	width: 3.2rem;
}
.button:hover{
	background-color: #fff;
}


.blinking{
	-webkit-animation: blinking 1.3s infinite linear;
	        animation: blinking 1.3s infinite linear;
}
@-webkit-keyframes blinking{
	0%, 100%{
		opacity: 1;
	}
	50%{
		opacity: 0;
	}
}
@keyframes blinking{
	0%, 100%{
		opacity: 1;
	}
	50%{
		opacity: 0;
	}
}
/*about area*/
.about_area .title_wrapper h2{
	color: #1C2A3F;
	margin-bottom: 3rem;
}
.about_img{
	width: 100%;
	max-width: 52.7rem;
}
.about_content{
	margin-left: 4rem;
}
.about_content ul li{
	color: #222222;
	font-size: 2rem;
	line-height: 1.3;
	font-family: 'Plantagenet Cherokee';
	padding-left: 4rem;
	margin-bottom: 2rem;
	position: relative;
}
.about_content ul li::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 2.5rem;
	width: 2.5rem;
	background-image: url(../img/check.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.warranty_box{
	padding-top: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-left: -4rem;
}
.warranty_box img{
	width: 15rem;
	margin-right: 1.8rem;
}
.warranty_box h4{
	font-weight: 900;
	color: #A21A0E;
	font-size: 2.7rem;
	max-width: 40rem;
}
/*service area*/
.sec_pad{
	padding: 6rem 0;
}
.title_wrapper{
	position: relative;
	z-index: 1;
}
.title_wrapper h2{
	color: #424955;
	font-family: 'Plantagenet Cherokee';
	font-size: 5.5rem;
	font-weight: 400;
	line-height: 1;
}
.title_wrapper p{
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 2rem;
	max-width: 84.5rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.4;
	color: #39404E;
}
.service_area{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 8rem 0;
}
.service_area .title_wrapper h2{
	color: #FAF5DD;
}
.service_box{
	background-color: #fff;
	padding: 0 3rem 3rem;
	border-radius: 0.8rem;
	text-align: center;
	height: 100%;
}
.service_box img{
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	height: 11.8rem;
	width: 11.8rem;
	margin-top: -6rem;
}
.service_box h4 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #222222;
	line-height: 1;
	margin-top: 1.7rem;
	margin-bottom: 1.5rem;
}
.service_box p{
	margin-left: auto;
	margin-right: auto;
	font-weight: 700;
	max-width: 29rem;
}

/*gps area*/
.gps_area{
	padding: 6rem 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.gps_bg {
	position: absolute;
	top: 39%;
	left: 0;
	height: 136%;
	width: auto;
	z-index: -1;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.gps_content {
	max-width: 27.5rem;
	margin-left: auto;
	text-align: center;
}
.gps_content p:first-child{
	text-align: left;
}
.gps_content p{
	font-size: 2.7rem;
	color: #A7691F;
	line-height: 1.2;
	font-family: 'Plantagenet Cherokee';
}
.gps_content p span{
	font-size: 4rem;
	font-weight: 900;
	font-family: "Roboto", sans-serif;
	vertical-align: middle;
}
.arrow_content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	text-align: right;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	margin-top: 4.5rem;
}
.arrow_content img{
	width: 6.4rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-top: -1.5rem;
}
.arrow_content span{
	font-size: 3rem;
	color: #39404E;
	font-weight: 700;
	max-width: 41rem;
	line-height: 1.3;
}

/*garantie area*/
.garantie_box{
	background-size: cover;
	background-position: center;
	padding: 3.5rem 7.5rem;
	margin-bottom: 4rem;
}
.garantie_box img{
	width: 21.5rem;
	margin-bottom: 2.7rem;
}
.garantie_box h4{
	font-size: 4rem;
	color: #D9B63D;
	line-height: 1;
	font-weight: 400;
	font-family: 'Plantagenet Cherokee';
	max-width: 43rem;
}

/*review area*/
.review_box {
	background-color: #fff;
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0.3rem 2rem #e4e4e4;
	        box-shadow: 0 0.3rem 2rem #e4e4e4;
	padding: 3rem;
	height: 100%;
}
.review_top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
	margin-bottom: 2rem;
}
.review_top>img{
	-o-object-fit: cover;
	   object-fit: cover;
	height: 7.5rem;
	width: 7.5rem;
	border-radius: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.review_top h5{
	font-size: 2.5rem;
	color: #222222;
	font-family: 'Plantagenet Cherokee';
}
.rating{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #E3C900;
	-webkit-column-gap: 0.3rem;
	   -moz-column-gap: 0.3rem;
	        column-gap: 0.3rem;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	margin-top: 1rem;
}
.review_box p{
	line-height: 1.31;
	max-width: 29rem;
}

/*quote area*/
.quote_area img{
	width: 100%;
	max-width: 33.4rem;
}
.quote_content{
	max-width: 67rem;
}
.quote_content p{
	font-size: 2.7rem;
	color: #A7691F;
	font-family: 'Plantagenet Cherokee';
	line-height: 1.25;
	margin-bottom: 3rem;
}

/*footer area*/
footer{
	overflow: hidden;
}
.footer_top{
	background-size: cover;
	background-position: center;
	padding-bottom: 4rem;
}
.footer_top .container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 4.5rem;
	   -moz-column-gap: 4.5rem;
	        column-gap: 4.5rem;
}
.footer_logo{
	display: inline-block;
	max-width: 22.5rem;
	width: 100%;
}
.footer_bottom{
	color: #A7691F;
	padding: 1.5rem 0;
	font-family: 'Plantagenet Cherokee';
	font-size: 1.7rem;
}
.footer_bottom a{
	color: inherit;
}
.footer_bottom a:hover{
	color: #424955;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #A7691F;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}



.header_area {
   background-color: #ffffff;
   padding: 4rem 0;
}
.head_wap h2 {
	font-size: 3.5rem;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'Plantagenet Cherokee';
	text-transform: uppercase;
	color: #1C2A3F;
}
.head_wap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.head_wap a img {
   max-width: 16.9rem;
}
.legales_wap {
   padding: 8rem 0;
   background-color: #FAFAFA;
   font-family: "Lato", sans-serif;
}
.legales_wap p {
	font-size: 2.2rem;
	line-height: 1.22;
	color: #000;
	padding-bottom: 2.5rem;
}
.legales_wap h2 {
	font-size: 2.2rem;
	line-height: 1.22;
	font-weight: 700;
	color: #000;
	padding-bottom: 2.5rem;
}
.legales_wap ul {
   padding-bottom: 2.5rem;
}
.legales_wap ul li {
	font-size: 2.2rem;
	line-height: 1.22;
	color: #000;
}