/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@700&family=Oswald:wght@300&family=Overpass:wght@600&family=PT+Sans:wght@400;700&display=swap');

/*======================
   02. Basic css
========================*/
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;
}
html{
	scroll-behavior: smooth;
	font-size: 62.5%;
}
body {
	font-size: 1.8rem;
	line-height: 1.44;
	font-weight: 400;
	/*font-family: 'Libre Franklin', sans-serif;
	font-family: 'Oswald', sans-serif;
	font-family: 'Overpass', sans-serif;*/
	font-family: 'PT Sans', sans-serif;
	background-color: #fff;
	color: #504D4F;
}

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: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0px;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	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;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	position: absolute;
	right: 15px;
	display: none;
	z-index: 999;
	top: -15px;
	text-align: right;
}
.hamburger-menu span {
	background: #242424;
	width: 3.4rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu span.line-center {
   width: 21px;
   margin-left: auto;
}
.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(54%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-464%) rotate(-135deg);
}

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: transparent;
	padding: 3.5rem 0;
}

/*sticky START CSS*/
header.sticky {
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
}
.logo{
	display: inline-block;
}
.logo img{
	max-width: 23.5rem;
}
#menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
#menu li {
	padding-right: 7rem;
}

#menu li a {
	font-size: 1.4rem;
	text-transform: uppercase;
	color: #504D4F;
	padding: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-family: 'Overpass', sans-serif;
	font-weight: 600;
	line-height: 1.35;
}

#menu li:last-child{
	padding-right: 0;
}

#menu>li>a.active,
#menu>li>a:hover {
	color: #E2001A;
}
/*hero area*/
.hero_wrapper{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 80rem;
	position: relative;
	z-index: 1;
}
.hero_wrapper::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	background-color: rgba(80, 77, 79, 0.11);
	left: 0;
	top: 0;
	z-index: -1;
}
.hero_content{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	height: 80rem;
	width: 100%;
	padding-bottom: 7rem;
}
.hero_content h1 {
   font-size: 6rem;
   color: #1D201E;
   font-weight: 700;
   font-family: 'Libre Franklin', sans-serif;
   max-width: 36rem;
   line-height: 1.16;
   padding-bottom: 2rem;
}
.hero_content p {
   max-width: 32rem;
   padding-bottom: 4rem;
}
.button{
	display: inline-block;
	min-width: 14rem;
	padding: 1.1rem 3.4rem 1rem;
	background-color: #E2001A;
	border-radius: 3.5rem;
	border: 0.1rem solid #E2001A;
	font-size: 1.3rem;
	font-weight: 600;
	font-family: 'Overpass', sans-serif;
	line-height: 1.3;
	color: #FFFFFF;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	text-transform: uppercase;
}
.button:hover{
	background-color: transparent;
	color: #E2001A;
}

/*evitar area*/
.evitar_wrapper{
	padding: 11rem 0 16rem;
}
.evitar_heading{
	text-align: right;
}
.evitar_heading h3 {
   font-size: 3.2rem;
   font-weight: 700;
   color: #E2001A;
   line-height: 1.21;
   font-family: 'Libre Franklin', sans-serif;
   max-width: 26rem;
   margin-left: auto;
}
.evitar_heading h2{
	font-size: 7rem;
	line-height: 1;
	color: #E2001A;
	font-family: 'Libre Franklin', sans-serif;
	font-weight: 700;
}
.evitar_content{
	padding-left: 2.5rem;
}
.evitar_content p {
   font-size: 2.4rem;
   line-height: 1.29;
   max-width: 67rem;
}
/*que area*/
.que_wrapper{
	background-color: #F8F9F9;
	padding: 18rem 0 28.7rem;
}
.que_content_heading{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 13.5rem;
}
.que_content_heading h2{
	font-size: 10rem;
	color: #504D4F;
	font-weight: 300;
	font-family: 'Oswald', sans-serif;
	padding-right: 3rem;
	line-height: 1;
}
.que_content_heading h3 {
	font-size: 3.6rem;
	font-weight: 700;
	color: #E2001A;
	max-width: 38rem;
}
.que_content p {
   padding-top: 2.5rem;
   max-width: 54rem;
}
.que_content1 {
	padding-left: 12rem;
}
.que_content2{
	padding-left: 13rem;
}
.que_content3{
	padding-left: 13rem;
}
.que_content4{
	padding-left: 13rem;
}
.que_content a{
	display: inline-block;
	font-size: 1.4rem;
	color: #E2001A;
	font-weight: 600;
	font-family: 'Overpass', sans-serif;
	text-transform: uppercase;
	margin-top: 3rem;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	border-bottom: 0.1rem solid transparent;
}
.que_content a:hover{
	border-color: #E2001A;
}
.que_img{
	position: relative;
	display: inline-block;
	z-index: 0;
	margin-top: 13.5rem;
}
.que_img .q1{
	max-width: 36rem;
}
.que_img .qs1 {
	position: absolute;
	bottom: -6.2rem;
	right: 2.2rem;
	z-index: 2;
	max-width: 14.9rem;
}
.que_content_heading1{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	margin-top: 28rem;
}
.que_content_heading1 h3{
	max-width: 33rem;
}
.que_img1 {
    padding-left: 3rem;
    margin-top: 28rem;
}
.qs2 {
	position: absolute;
	top: -11.2rem;
	right: -5.8rem;
	z-index: 2;
	max-width: 16.4rem;
}
.que_content_heading3{
	margin-top: 26.5rem;
}
.que_content_heading3 h3 {
   max-width: 33rem;
}
.que_img3{
	margin-top: 26.5rem;
}
.qs3 {
   position: absolute;
   left: 1rem;
   z-index: 2;
   bottom: -9rem;
   max-width: 13.6rem;
}
.qs4 {
   position: absolute;
   top: -8rem;
   right: -8.2rem;
   z-index: 2;
   max-width: 15.4rem;
}
.que_content_heading4, .que_img4 {
    margin-top: 27.8rem;
}


/*banner area*/
.banner_wrapper{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 89.2rem;
}
.title{
	font-size: 4.5rem;
	font-weight: 700;
	color: #1D201E;
	line-height: 1.2;
	font-family: 'Libre Franklin', sans-serif;
}
.banner_content{
	padding-top: 29rem;
}
.banner_content h3{
	max-width: 33rem;
	padding-bottom: 1.5rem;
}
.banner_content p {
   padding-top: 3.5rem;
   max-width: 43rem;
}

/*slider area*/
.slider_wrapper{
	padding-top: 17.5rem;
}
.slider_heading .title{
	max-width: 44rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-bottom: 7.5rem;
}
.barnd_wrap {
	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;
	padding-left: 4rem;
	padding-right: 4rem;
}
.barnd_wrap1{
	margin-top: 5rem;
}
.brand_img img {
   max-width: 18rem;
}
.brand_slider .owl-prev {
   background-color: transparent;
   padding: 0;
   max-width: 3.1rem;
   position: absolute;
   left: -16rem;
   top: 50%;
   -webkit-transform: translateY(-50%) rotate(180deg);
       -ms-transform: translateY(-50%) rotate(180deg);
           transform: translateY(-50%) rotate(180deg);
}
.brand_slider .owl-next {
   background-color: transparent;
   padding: 0;
   max-width: 3.1rem;
   position: absolute;
   right: -16rem;
   top: 50%;
   -webkit-transform: translateY(-50%);
       -ms-transform: translateY(-50%);
           transform: translateY(-50%);
}
.brand_slider .owl-next img,
.brand_slider .owl-prev img{
	max-width: 3.1rem;
}
.brand_slider button.owl-prev.disabled,
.brand_slider button.owl-next.disabled {
   display: none;
}
.slide {
   height: 13.6rem;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   margin-top: 5.5rem;
}
.slide img{
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}

/*contact  area*/
.contact_wrapper{
	padding-top: 28rem;
	padding-bottom: 18.8rem;
}
.contact_heading{
	padding-bottom: 1.5rem;
}
.contact_heading p {
   padding-top: 3rem;
   max-width: 33rem;
}
.frm_row{
	margin-left: -3.75rem;
	margin-right: -3.75rem;
}
.frm_row>div{
	padding-left: 3.75rem;
	padding-right: 3.75rem;
}
.input_box{
	padding-top: 9rem;
}
.input_box input,
.input_box textarea{
	height: 4rem;
	border: none;
	border-bottom: 0.1rem solid #E2001A;
	width: 100%;
	padding: 1rem 0;
	color: #1D201E;
}
.input_box input::-webkit-input-placeholder, .input_box textarea::-webkit-input-placeholder{
	font-size: 1.8rem;
	color: #504D4F;
}
.input_box input::-moz-placeholder, .input_box textarea::-moz-placeholder{
	font-size: 1.8rem;
	color: #504D4F;
}
.input_box input:-ms-input-placeholder, .input_box textarea:-ms-input-placeholder{
	font-size: 1.8rem;
	color: #504D4F;
}
.input_box input::-ms-input-placeholder, .input_box textarea::-ms-input-placeholder{
	font-size: 1.8rem;
	color: #504D4F;
}
.input_box input::placeholder,
.input_box textarea::placeholder{
	font-size: 1.8rem;
	color: #504D4F;
}
.textarea_box textarea{
	height: 12rem;
	resize: none;
}
.check_box{
	padding-top: 3rem;
}
.check_box input{
	display: none;
}
.check_box label{
	font-size: 1.2rem;
	line-height: 1;
	color: #504D4F;
	position: relative;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	font-weight: 400;
	cursor: pointer;
	margin-left: 3.6rem;
}
.check_box label::before {
	position: absolute;
	content: '';
	height: 1.8rem;
	width: 1.8rem;
	border: .1rem solid #707070;
	left: -3.6rem;
	top: -.3rem;
}
.check_box input:checked + label::after {
	position: absolute;
	content: '';
	border-left: .1rem solid #707070;
	border-bottom: .1rem solid #707070;
	left: -3.12rem;
	top: .2rem;
	height: .5rem;
	width: 1rem;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.form_btn{
	text-align: right;
	padding-top: 5rem;
}
.form_btn .button{
	padding: 1.2rem 5rem .9rem;
}
/*address area*/
.address_wrapper{
	background-color: #F8F9F9;
	padding: 10.15rem 0 12rem;
}
.address_box_wrap{
	padding-top: 7.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.address_box h4{
	font-size: 2.4rem;
	line-height: 1.2;
	color: #1D201E;
	font-weight: 700;
	font-family: 'Libre Franklin', sans-serif;
	border-bottom: .2rem solid #E2001A;
	padding-bottom: 1.8rem;
	max-width: 13.5rem;
}
.address{
	padding-top: 3.2rem;
}
.address p{
	color: #1D201E;
}
.info{
	padding-top: 3rem;
}
.info_tel a{
	font-size: 2.4rem;
	color: #1D201E;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	line-height: 1.08;
}
.info_tel a:hover{
	color: #E2001A;
}
.info_mail a{
	color: #1D201E;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.info_mail a:hover{
	color: #E2001A;
}
/*bannr area 2*/
.banner_wrapper2{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
	height: 55.5rem;
}
.banner_wrapper2::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgba(80, 77, 79, 0.11);
	z-index: -1;
}
/*footer area*/
.footer_wrapper{
	padding-top: 4rem;
	padding-bottom: 10rem;
}
.footer_top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 4rem;
	border-bottom: 0.1rem solid #707070;
}
.footer_box{
	padding-top: 3rem;
}
.flogo{
	display: inline-block;
}
.flogo img{
	max-width: 13.7rem;
}
.footer_box a,
.footer_box p{
	font-size: 1.5rem;
	color: #504D4F;
	font-weight: 400;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.footer_box a:hover{
	color: #E2001A;
}
.social_icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.social_icon li{
	padding-right: 3rem;
}
.social_icon li:last-child{
	padding-right: 0;
}
.social_icon li a{
	font-size: 2rem;
	color: #51534A;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.social_icon li a:hover{
	color: #E2001A;
}
.footer_bottm{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-top: 2.5rem;
}
.footer_img{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.footer_img .f1{
	max-width: 16rem;
}
.footer_img .f2{
	max-width: 12.5rem;
	margin-left: 6rem;
}
.fcookies a{
	display: inline-block;
	padding: 0 .8rem;
	position: relative;
}
.fcookies a::before {
	position: absolute;
	content: '';
	height: .3rem;
	width: .3rem;
	background-color: #504D4F;
	border-radius: 50%;
	right: -.2rem;
	top: 50%;
	transform: translateY(-50%);
	padding: .1rem;
}
.fcookies a:last-child{
	padding-right: 0;
}
.fcookies a:first-child{
	padding-left: 0;
}
.fcookies a:last-child::before{
	display: none;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 24px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 90px;
	right: 20px;
	border-radius: 50%;
	background: #E2001A;;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}
.loading-mask {
    position: fixed;
    width: 100%;
    background-color: rgb(255 255 255 / 69%);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}
.custom-loader {
	width:50px;
	height:24px;
	background:
	  radial-gradient(circle closest-side,#E2001A 90%,#0000) 0%   50%,
	  radial-gradient(circle closest-side,#E2001A 90%,#0000) 50%  50%,
	  radial-gradient(circle closest-side,#E2001A 90%,#0000) 100% 50%;
	background-size:calc(100%/3) 12px;
	background-repeat: no-repeat;
	animation:d3 1s infinite linear;
  }
  @keyframes d3 {
	  20%{background-position:0%   0%, 50%  50%,100%  50%}
	  40%{background-position:0% 100%, 50%   0%,100%  50%}
	  60%{background-position:0%  50%, 50% 100%,100%   0%}
	  80%{background-position:0%  50%, 50%  50%,100% 100%}
  }
  .c-form , .e-form{
    color: #E2001A;
    font-size: 21px;
}
.trust-area .page-title{
	padding: 170px 0px 70px;
    font-weight: 700;
    color: #E2001A;
    line-height: 1.21;
    font-family: 'Libre Franklin', sans-serif;
}
.trust-area .page-title h2{
	font-size: 3.1rem;
}
.trust-area{
	background-color: #F8F9F9;
}
.area-404 {
    text-align: center;
    min-height: 100vh;
}
.area-404 h1 {
    font-size: 226px;
	color: black;
}
.area-404 a {
    display: block;
    font-size: 1.4rem;
    color: #E2001A;
    font-weight: 600;
    font-family: 'Overpass', sans-serif;
    text-transform: uppercase;
    margin-top: 3rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-bottom: 0.1rem solid transparent;
	text-decoration: underline;
}
.img-404{
	width: 50%;
}
font[color="#1f497d"],font[color="#0084d1"],font[color="#0070c0"] {
	color: #cf2c29;
    font-family: 'Overpass';
    margin-bottom: 10px;
    display: block;
    margin-top: 10px;
}
