/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Lato:wght@400;700;900&display=swap');
/*font-family: 'Kalam', cursive;
font-family: 'Lato', sans-serif;*/
/*======================
   02. Basic css
========================*/
@font-face {
    font-family: 'Rockwell';
    src: url('../webfonts/Rockwell.eot');
    src: url('../webfonts/Rockwell.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Rockwell.woff2') format('woff2'),
        url('../webfonts/Rockwell.woff') format('woff'),
        url('../webfonts/Rockwell.ttf') format('truetype'),
        url('../webfonts/Rockwell.svg#Rockwell') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
	--yellow: #EE8A43;
	--dark: #40210F;
}
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.56;
	font-family: 'Kalam', cursive;
	background-color: #FAFAFA;
	color: #40210F;
	font-weight: 400;
	font-size: 1.6rem;
}
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: #fff;
	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: #f33737;
	-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{
	background-color: #FAFAFA;
	z-index: 1;
	position: relative;
}
.home_area>img{
	position: absolute;
	top: 0;
	left: -3rem;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center center;
	   object-position: center center;
	width: calc(100% + 3rem);
	height: 100%;
	z-index: -1;
	border-bottom-left-radius: 76.2rem;
}
.logo img{
	max-width: 37.4rem;
	padding-top: 7.2rem;
}
.home_wapper {
    max-width: 51.7rem;
    margin-left: auto;
    text-align: center;
}
.home_wapper h1{
	font-size: 3.7rem;
	font-weight: 700;
	line-height: 1.08;
	color: #fff;
	text-align: center;
	padding: 2rem 0 3.5rem;
}
.home_wapper h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.42;
    color: #000;
    font-family: 'Rockwell';
    max-width: 30rem;
    margin: 0 auto;
    text-transform: uppercase;
}
.home_wapper .tel_box {
    background-color: #060607;
    padding: 1rem 2rem;
    font-size: 4rem;
    line-height: 1.2;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 1rem;
    margin: 2rem 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.home_wapper .tel_box img{
	width: 3.2rem;
	margin-right: 2rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.home_wapper p{
	font-size: 1.7rem;
	line-height: 1.35;
	font-weight: 700;
	color: #000;
	font-family: 'Rockwell';
	padding-bottom: 2rem;
}
.service_circle {
    width: 20.7rem;
    height: 20.7rem;
    border-radius: 50%;
    background-color: #FF0000;
    border: 0.8rem solid #FFA400;
    text-align: center;
    position: absolute;
    left: 17rem;
    bottom: 7rem;
    -webkit-transform: rotate(349deg);
        -ms-transform: rotate(349deg);
            transform: rotate(349deg);
}
.service_circle h3{
	font-size: 3rem;
	line-height: 1;
	color: #FFF500;
	font-weight: 700;
	font-family: 'Rockwell';
	margin-top: 1rem;
}
.service_circle img{
	max-width: 8rem;
	margin-top: 1.5rem;
}
/*service_area*/

.service_area h2{
	font-size: 2.8rem;
	line-height: 1.42;
	color: #000;
	font-weight: 700;
	font-family: 'Rockwell';
	margin-bottom: 1.5rem;
}
.service_area ul li{
	font-size: 2.5rem;
	line-height: 1.12;
	color: var(--yellow);
	font-weight: 700;
	padding-left: 3.5rem;
	position: relative;
}
.service_area ul li:not(:last-child){
	margin-bottom: 1rem;
}
.service_area ul li::before {
    content: '';
    position: absolute;
    background-image: url(../img/right.svg);
    background-size: contain;
    background-position: center center;
    width: 2.3rem;
    height: 2.3rem;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
}
.service_padd{
	padding-bottom: 3.4rem;
}
.car_right {
    margin-top: -15rem;
    text-align: center;
}
.car_right h3{
	font-size: 2.2rem;
	color: #000;
	font-family: 'Rockwell';
	font-weight: 700;
	max-width: 22rem;
	padding-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}
.car_right h3 span{
	font-size: 4rem;
	line-height: 1;
	color: var(--yellow);
}
.call_left{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #060607;
	padding: 1.1rem 3rem 1rem 2rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border-radius: 1rem;
	font-size: 4rem;
	line-height: 1.2;
	color: #E27D3B;
	font-weight: 700;
	font-family: 'Lato', sans-serif;

}
.call_left:hover{
	color: #E27D3B;
}
.call_left img{
	max-width: 3.2rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 2rem;
}
.lock_wapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
}
.lock_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66%;
            flex: 0 0 16.66%;
    max-width: 16.66%;
    text-align: center;
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.lock_item img{
	max-width: 18.2rem;
	border-radius: 50%;
	width: 100%;
}
.lock_cont{
	padding: 2rem 0rem;
}
.lock_cont h3{
	font-size: 1.8rem;
	line-height: 1.44;
	font-weight: 700;
	color: #000;
	font-family: 'Rockwell';

}
/*blog_area*/
.blog_area{
	padding: 5.2rem 0 6.2rem;
}
.title {
	text-align: center;
}
.title h2{
	font-size: 2.8rem;
	line-height: 1.44;
	color: #000;
	font-weight: 700;
	margin-bottom: 0.8rem;
	font-family: 'Rockwell';
}
.title p{
	font-size: 2.3rem;
	line-height: 1.47;
	color: #EE8A43;
	font-weight: 700;
	max-width: 88rem;
	margin: 0 auto;
}
/*team_wap*/
.team_wap {
	height: 100%;
	position: relative;
	padding-bottom: 4.5rem;
}
.team_content{
	padding: 2.5rem 1rem 1rem;
}
.team_content p{
	font-style: italic;
}
.team_content h3{
	color: #EA440C;
	font-size: 1.8rem;
	line-height: 1.1;
	text-transform: uppercase;
	font-family: 'Rockwell';
	font-weight: 700;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
}
.ratting_box {
	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;
}
.ratting_box img:not(:last-child) {
    margin-right: 0.5rem;
}
.ratting_box img {
    width: 1.5rem;
    margin-bottom: 1.5rem;
}
/*man_wapper*/
.man_wapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.man_wapper>img{
	max-width: 37.7rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 9rem;
}
.man_wapper p{
	font-size: 2.8rem;
	line-height: 1.42;
	color: #000;
	max-width: 63.3rem;
	font-family: 'Rockwell';
	font-weight: 700;
}
.man_wapper p span {
    color: #EE8A43;
    display: block;
    padding: 3rem 0 3.5rem;
    font-family: 'Kalam', cursive;
}
/*footer*/
footer{
	margin-top: 10.9rem;
	padding: 2rem 0;
}
footer{
	background-color: #EF843A;
}
.footer_wap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer_wap .f_extra {
	max-width: 24.4rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 5.8rem;
	margin-top: -11rem;
}
.footer_wap p{
	color: #000;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: 'Rockwell';
	line-height: 1.4;
	margin-top: 2.5rem;

}
.footer_wap p a{
	color: #000;
}
.footer_wap p a:hover{
	color: #fff;
}
/*header_area*/
.header_area{
	background-color: #EF843A;
	padding: 2rem 0;
}
.header_area a img{
	max-width: 19.5rem;
	margin-bottom: -5rem;
}
.header_area h2{
	font-size: 3.5rem;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	text-align: center;
}
/*legales_wap*/
.legales_wap{
	padding: 8rem 0;
}
.legales_wap h2{
	font-size: 2.2rem;
	line-height: 1.22;
	font-weight: 700;
	color: #000;
	padding-bottom: 2.5rem;
	font-family: 'Lato', sans-serif;
}
.legales_wap p{
	font-size: 2.2rem;
	line-height: 1.22;
	color: #000;
	padding-bottom: 2.5rem;
	font-family: 'Lato', sans-serif;
}
.legales_wap ul li{
	font-size: 2.2rem;
	line-height: 1.22;
	color: #000;
	font-family: 'Lato', sans-serif;
}
.legales_wap ul{
	padding-bottom: 2.5rem;
}
/*animate*/
.animate{
	-webkit-animation: flicker 1.5s linear infinite;
	        animation: flicker 1.5s linear infinite;
}
@-webkit-keyframes flicker{
	0%,100%{opacity: 1;}
	50%{opacity: 0;}
}
@keyframes flicker{
	0%,100%{opacity: 1;}
	50%{opacity: 0;}
}

.bt-rappel {
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: fixed;
    font-size: 2.3rem;
    font-weight: 600;
    left: -29rem;
    background: #000;
    top: 25%;
    z-index: 50000;
    padding: 1.0rem 1.5rem;
    display: block;
    color: #fff !important;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
    -webkit-box-shadow: .0rem .0rem 1.0rem .0rem rgba(119, 119, 119, 0.75);
    box-shadow: .0rem .0rem 1.0rem .0rem rgba(119, 119, 119, 0.75);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}
.bt-rappel img{
	height: 3.2rem;
}
.bt-rappel.open{
	left: 0;
}
.bt-rappel span{
	padding-top: 0.4rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.7rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #EA440C;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}