/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
   font-family: 'Brixton_Lead Vector';
   src: url('../fonts/Brixton_Lead-Vector.eot');
   src: url('../fonts/Brixton_Lead-Vector.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Brixton_Lead-Vector.woff2') format('woff2'),
        url('../fonts/Brixton_Lead-Vector.woff') format('woff'),
        url('../fonts/Brixton_Lead-Vector.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

:root{
	--dark_main: #2E2E2D;
	--red_main: #DF1C1E;
	scroll-behavior: inherit;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--red_main);
	color: #fff;
}
::selection{
	background-color: var(--red_main);
	color: #fff;
}
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: "Inter", sans-serif;
	background-color: #fff;
	color: var(--dark_main);
	font-weight: 400;
	font-size: 2rem;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
a{
	color: inherit;
}
a:hover{
	color: var(--red_main);
}
h1, h2, h3{
	font-family: 'Brixton_Lead Vector';
	font-weight: 400;
	text-transform: uppercase;
}
h1 span, h2 span, h3 span, h4 span, h5 span{
	color: var(--red_main);
}
h1{
	font-size: 12rem;
	line-height: 1;
}
h2{
	font-size: 8rem;
	line-height: 1.1;
}
h3{
	font-size: 6rem;
	line-height: 1.1;
}
h4{
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.18;
}
h5{
	font-size: 3rem;
	font-weight: 700;
}
h5{
	font-size: 2.6rem;
	font-weight: 700;
}


/* 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: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--red_main);
	-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;
	display: none;
	-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;
}
.hamburger-menu span {
	background: var(--red_main);
	width: 4rem;
	height: .3rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
main.overflow-hidden {
   padding-top: 12rem;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	background-color: #fff;
}
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
.logo{
	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;
	width: 100%;
	max-width: 38rem;
	height: 15rem;
	background-color: var(--red_main);
	padding: 2rem 4rem;
	margin-bottom: -3rem;
	margin-left: -5rem;
}
.menu{
	padding-top: 2.1rem;
	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;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 10rem;
	   -moz-column-gap: 10rem;
	        column-gap: 10rem;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.menu>ul>li {
   padding: 1.9rem 2.5rem 4.9rem;
   -webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu>ul>li>a {
	text-decoration: none;
	font-weight: 600;
	color: var(--dark_main);
	line-height: 1;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover {
	color: var(--red_main) !important;
}
.menu>ul>li.dropdown_wrap,
.language_toggle{
	position: relative;
}
.menu>ul>li.dropdown_wrap:hover{
	background-color: var(--dark_main);
	color: #fff;
}
.menu>ul>li.dropdown_wrap:hover>a{
	color: #fff !important;
}
.menu>ul>li.dropdown_wrap>a::after,
.language_toggle::after{
	content: '\EA4E';
	font-family: 'remixicon';
	margin-left: 0.3rem;
	font-size: 80%;
	position: relative;
	font-weight: 600;
	top: 0.1rem;
}
.language_toggle::after {
	top: 0;
}
.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--dark_main);
	padding: 1rem 0 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	list-style: none;
	min-width: 100%;
}
.menu>ul>li.dropdown_wrap:hover>ul{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap>ul>li>a{
	color: #fff;
	white-space: nowrap;
	padding: 0.6rem 2.7rem;
	display: block;
	text-decoration: none;
}
.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a{
	color: var(--red_main);
}
.language_wrap{
	position: relative;
	padding-bottom: 4rem;
	padding-top: 1.5rem;
}
.language_toggle {
	font-weight: 600;
	cursor: pointer;
	border: 0.1rem solid var(--dark_main);
	border-radius: 4rem;
	padding: 1.1rem 1.2rem;
	line-height: 1;
}
.language_toggle i{
	font-weight: 300;
}
.language_toggle img{
	height: 2.4rem;
}
.language_content{
	position: absolute;
	right: 0;
	top: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	width: 12rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	list-style: none;
}
.language_content li a{
	display: block;
	text-decoration: none;
	padding: 0.5rem 1.5rem;
}
.language_content li a:hover{
	background-color: var(--red_main);
	color: #fff;
}
.language_wrap:hover .language_content{
	opacity: 1;
	pointer-events: all;
}


/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-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: 1.1rem 2rem;
	color: #FFFFFF;
	border: 0.1rem solid transparent;
	border-radius: 0rem;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.225;
	text-align: center;
	background-color: var(--red_main);
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.button::after{
	content: '\EA68';
	font-family: 'remixicon';
	font-weight: 400;
	font-size: 110%;
}
.button:hover{
	background-color: #fff;
	color: var(--red_main);
	border-color: var(--red_main);
	-webkit-box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
}
.button.white_btn{
	background-color: #fff;
	color: var(--dark_main);
}
.button.white_btn:hover{
	color: #fff;
	background-color: var(--red_main);
}
.black_btn{
	background: var(--dark_main);
	color: #fff;
}
.button_wrapper{
	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: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.light_btn{
	background-color: #CCEBE9;
	color: var(--dark_main);
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.light_btn::after{
	display: none;
}
.light_btn i{
	font-weight: 300;
	font-size: 130%;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2rem;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--red_main);
	z-index: 1000;
	text-decoration: none;
}

.back-to-top i {
	color: #fff;
}
/*Home area*/
.home_area {
	padding: 0 0 6rem;
	position: relative;
	z-index: 1;
}
.home_area::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% - 29rem);
	background-color: var(--red_main);
	z-index: -2;
}
.home_slider_wrap .owl-item::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: -o-linear-gradient(39deg,rgba(19, 24, 24, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(51deg,rgba(19, 24, 24, 1) 0%, rgba(255, 255, 255, 0) 100%);
	mix-blend-mode: multiply;
	pointer-events: none;
}
.hero_slider {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
	max-width: 182rem;
	height: 100%;
	z-index: -2;
}
.hero_slider::before{
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--dark_main);
	opacity: 0.5;
	mix-blend-mode: multiply;
}
.hero_slider::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: -o-linear-gradient(top, var(--dark_main), transparent);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--dark_main)), to(transparent));
	background: linear-gradient(to bottom, var(--dark_main), transparent);
	width: 100%;
	height: 15rem;
	mix-blend-mode: multiply;
}
.home_banner{
	position: relative;
	z-index: 1;
	padding: 29rem 0 14rem;
}
.hero_slider img,
.hero_slider video{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	z-index: -2;
	-o-object-fit: cover;
	   object-fit: cover;
}
.home_content{
	max-width: 64rem;
	color: #fff;
}
.home_content p{
	margin-top: 1.5rem;
	max-width: 57rem;
}
.news_card{
	display: block;
	color: var(--dark_main);
	text-decoration: none;
	position: relative;
	background-color: #EBEBEB;
	margin-bottom: 8rem;
}
.news_card::before{
	position: absolute;
	content: '';
	width: 0;
   height: 0;
   border-left: 3.8rem solid transparent;
   border-right: 3.8rem solid transparent;
   border-top: 8rem solid #EBEBEB;
   left: 50%;
   -webkit-transform: translateX(-50%);
       -ms-transform: translateX(-50%);
           transform: translateX(-50%);
   top: 100%;
   -webkit-transition: inherit;
   -o-transition: inherit;
   transition: inherit;
}
.news_img img{
	aspect-ratio: 18/7;
	-o-object-fit: cover;
	   object-fit: cover;
}
.news_card:hover .news_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.news_content{
	padding: 4rem 3.5rem 5rem;
	text-align: center;
}
.news_content h3{
	font-size: 2.4rem;
	max-width: 46rem;
}
.news_content p strong{
	font-size: 2.4rem;
}
.news_content p:not(:first-child){
	margin-top: 1.5rem;
}

.feature_wrap{
	padding: 7rem 0 2.5rem;
	color: #fff;
}
.feature_wrap .container{
	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;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.feature_item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.feature_item p:not(:first-child){
	margin-top: 1.5rem;
}
.feature_item p {
	max-width: 28.4rem;
	font-size: 1.8rem;
}
.feature_item p strong{
	font-size: 2.2rem;
}
.feature_icon{
	width: 11.6rem;
	height: 13rem;
	position: relative;
	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;
	background-color: #fff;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.feature_icon img{
	height: 8rem;
}
.feature_icon::before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-left: 5.8rem solid transparent;
	border-right: 5.8rem solid transparent;
	border-top: 2.5rem solid #fff;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 100%;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.controls_inner{
	display: inline-block;
	position: relative;
	padding: 0 5rem;
}
.owl-dots {
	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-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	        row-gap: 1rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    margin-top: 3rem;
}
.owl-dots button{
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
	background-color: var(--dark_main);
	padding: 0.1rem;
	border: none;
}
.owl-dots button.active{
	background-color: var(--red_main);
}
.owl-nav button{
	position: absolute;
	top: 45%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 0;
	background-color: var(--dark_main);
	color: #fff;
	width: 7rem;
	height: 5.5rem;
	font-size: 2.5rem;
	border: none;
	line-height: 1;
}
.owl-nav button:hover{
	background-color: var(--red_main);
}
.owl-nav button.owl-prev{
	left: 0rem;
}
.owl-nav button.owl-next{
	right: 0rem;
}

/*about area*/
.about_content p{
	margin-top: 2.5rem;
	max-width: 68rem;
}
.about_img{
	padding-right: 8rem;
}
.link{
	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;
	font-weight: 700;
	color: var(--red_main);
	text-decoration: none;
}
.link::after{
	content: '\EA68';
	font-family: 'remixicon';
	font-weight: 400;
}
.link:hover{
	color: var(--dark_main);
}
.about_slider .owl-nav button.owl-prev{
	left: -3.5rem;
}
.about_slider .owl-nav button.owl-next{
	right: -3.5rem;
}

/*service area*/
.service_area{
	background-color: #EBEBEB;
}
.service_title{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	row-gap: 3rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 7rem;
}
.service_title p{
	margin-top: 2.5rem;
	max-width: 115rem;
}
.service_box{
	display: block;
	text-decoration: none;
	height: 100%;
	background-color: #fff;
	text-align: center;
}
.service_img{
	background-color: var(--dark_main);
	height: 25rem;
	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;
}
.service_img img{
	height: 14.4rem;
	max-width: 18.2rem;
	-o-object-fit: contain;
	   object-fit: contain;
}
.service_box:hover .service_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.service_content{
	padding: 3rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--red_main);
}
.service_content p{
	/*max-width: 22rem;*/
	line-height: 1.4;
	margin-left: auto;
	margin-right: auto;
}
.gap_55{
	--bs-gutter-x: 5.5rem;
	--bs-gutter-y: 5.5rem;
}

/*method area*/
.method_area{
	position: relative;
	z-index: 1;
}
.method_area::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background-color: #F9F9F5;
	z-index: -1;
}
.title_wrap{
	max-width: 111rem;
}
.title_wrap p{
	margin-top: 2.5rem;
}
.method_slider .owl-stage{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.method_card{
    height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #fff;
	-webkit-box-shadow: 0.1rem 0.5rem 6rem rgba(0, 0, 0, 0.05);
	        box-shadow: 0.1rem 0.5rem 6rem rgba(0, 0, 0, 0.05);
}
.method_card img{
	-o-object-fit: cover;
	   object-fit: cover;
	width: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.method_content{
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	padding: 4.5rem 5rem;
}
.method_badge{
	background-color: var(--red_main);
	color: #fff;
	font-size: 3rem;
	font-family: "Brixton_Lead Vector";
	line-height: 1.1;
	display: inline-block;
	margin-bottom: 3rem;
	padding: 0.6rem 1.3rem;
}
.method_content p{
	margin-top: 3rem;
}
.method_content h4{
	font-size: 3rem;
}
.method_slider .owl-stage{
	padding: 7rem 0;
}
.method_slider .owl-item:not(.center){
	opacity: 0.3;
}
.method_slider .owl-dots{
	margin-top: 0;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.method_slider .owl-dots button{
	height: 5.7rem;
	width: 5.1rem;
	border-radius: 0;
	background-color: #717071;
	color: #fff;
	font-family: "Brixton_Lead Vector";
	font-size: 3.6rem;
	position: relative;
}
.method_slider .owl-dots button::after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-left: 2.55rem solid transparent;
	border-right: 2.55rem solid transparent;
	border-top: 1.4rem solid #717071;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 100%;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.method_slider .owl-dots .active button{
	background-color: var(--red_main);
}
.method_slider .owl-dots .active button::after{
	border-top-color: var(--red_main);
}

/*app area*/
.app_wrap{
	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;
}
.app_img{
	width: 63.5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	position: relative;
}
.app_img::before{
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 106%;
	aspect-ratio: 1.15/1;
	left: 7.5rem;
	background-image: url(../img/app2.png);
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
.app_content {
	background-color: var(--red_main);
	color: #fff;
	padding: 4.5rem 5rem;
	position: relative;
	width: 46rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 7rem;
}
.app_content::before{
	position: absolute;
	content: '';
	width: 0;
   height: 0;
   border-top: 5rem solid transparent;
   border-bottom: 5rem solid transparent;
   border-right: 10rem solid var(--red_main);
   right: 100%;
   -webkit-transform: translateY(-50%);
       -ms-transform: translateY(-50%);
           transform: translateY(-50%);
   top: 50%;
   -webkit-transition: inherit;
   -o-transition: inherit;
   transition: inherit;
}
.app_content p{
	margin-top: 2rem;
}
.app_content .link{
	color: #fff;
}
.app_content .link:hover{
	color: var(--dark_main);
}
.qr_wrap{
	width: 20rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 7rem;
}
.qr{
	width: 14rem;
	padding: 1.5rem;
	border: 0.1rem solid var(--dark_main);
	margin-bottom: 2.8rem;
}
/*cta area*/
.cta_area{
	background-color: #EBEBEB;
	padding: 8rem 0 9rem;
	position: relative;
	z-index: 1;
}
.cta_area p{
	max-width: 78rem;
	margin-top: 2rem;
}
.cta_area .button{
	min-width: 19rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.cta_bg{
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center center;
	z-index: -1;
	opacity: 0.5;
}
.cta_bg::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: -o-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, rgba(255, 255, 255, 0) 100%);
}
/*footer*/
footer{
	padding: 8rem 0 13rem;
	background-color: var(--dark_main);
	color: #fff;
}
footer ul{
	list-style: none;
	line-height: 1.8;
}
footer p{
	margin-top: 3rem;
}
footer a{
	color: #fff;
	text-decoration: none;
}
footer a:hover{
	color: var(--red_main);
}
footer h3{
	margin-bottom: 2.5rem;
	color: var(--red_main);
}
.footer_item{
	max-width: 25%;
}
.footer_bottom {
	font-size: 2rem;
	margin-top: 10rem;
}
.footer_bottom ul{
	list-style: disc;
	list-style-position: inside;
	margin-top: 2.5rem;
	display: none;
}
.footer_bottom ul li::marker{
	color: var(--red_main);
}
.footer_bottom ul li:not(:last-child){
	margin-right: 2.1rem;
}
.footer_bottom ul li:first-child{
	list-style: none;
}
.footer_bottom h4{
	text-transform: uppercase;
	font-family: 'Brixton_Lead Vector';
	font-weight: 400;
	text-transform: uppercase;
	font-size: 5rem;
	line-height: 1;
}
.footer_bottom h4 span{
	display: block;
}
.icon_box{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	width: 4rem;
	height: 4.5rem;
	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: var(--dark_main);
	background-color: #fff;
	position: relative;
	font-size: 2.2rem;
}
.icon_box a::after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-left: 2rem solid transparent;
	border-right: 2rem solid transparent;
	border-top: 1rem solid #fff;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 100%;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.icon_box a:hover {
	background-color: var(--red_main);
	color: #fff;
}
.icon_box a:hover::after{
	border-top-color: var(--red_main);
}
.icon_box a:not(:last-child){
	margin-right: 1rem;
}
.footer_last_item{
	padding-top: 9rem;
}



.inner_home .home_banner{
	padding: 7rem 0;
	min-height: 50rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.inner_home .home_banner .home_content{
	max-width: 84rem;
}
.inner_home .home_banner h1{
	font-size: 9rem;
}
.inner_home .home_banner h1 span{
	display: block;
}
.home_area>.container{
	padding-top: 3rem;
	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;
}
.link.back_link{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	color: #fff;
}
.link.back_link::after{
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.link.back_link:hover{
	color: var(--dark_main);
}
.breadcrumb{
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: #fff;
}
.breadcrumb li,
.breadcrumb li.active,
.breadcrumb li a{
	color: #fff;
	text-decoration: none;
}
.breadcrumb li a:hover{
	color: var(--dark_main);
}
.intro_content{
	padding: 4rem 0 6rem;
}
.intro_content p{
	margin-top: 2rem;
	max-width: 150rem;
}
/*info area*/
.info_area .info_item{
	padding: 10rem 0;
}
.gap_120{
	--bs-gutter-x: 12rem;
	--bs-gutter-y: 12rem;
}
.gap_40{
	--bs-gutter-x: 4rem;
	--bs-gutter-y: 4rem;
}
.info_area .info_item p{
	margin-top: 2rem;
}
.info_area .info_item:nth-child(odd) .row{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.info_area .info_item:nth-child(odd){
	background-color: #EBEBEB;
}
.info_img{
	position: relative;
}
.info_item .service_icon{
	position: absolute;
	inset: 0;
	background-color: rgba(46, 46, 45, 0.6);
	z-index: 1;
	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;
}
.info_item .service_icon img{
	height: 20rem;
	max-width: 27rem;
	-o-object-fit: contain;
	   object-fit: contain;
}

.service_details{
	padding-top: 8rem;
}
.inner_content{
	max-width: 100rem;
}
.inner_content>*:not(:last-child){
	margin-bottom: 3rem;
}
.inner_content h4{
	padding-top: 3rem;
}
.inner_content ul{
	padding-left: 2rem;
}
.inner_content ul li:not(:first-child){
	margin-top: 1rem;
}
.inner_content ul li::marker{
	color: var(--red_main);
}
.service_area_inner{
	background-color: transparent;
}
.service_area_inner .service_title{
	margin-bottom: 5rem;
}
.service_area_inner .service_box{
	-webkit-box-shadow: 0.1rem 0.5rem 3rem rgba(0, 0, 0, 0.1);
	        box-shadow: 0.1rem 0.5rem 3rem rgba(0, 0, 0, 0.1);
}
.line{
	background-color: #717071;
	height: 0.1rem;
	opacity: 0.5;
	margin-block: 8rem !important;
}
.team_card{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.team_card>img{
	width: 11rem;
	aspect-ratio: 1/1;
	border-radius: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.team_card p strong{
	display: block;
}
.team_card p a{
	text-decoration: none;
	color: var(--red_main);
}
.team_card p:not(:first-child){
	margin-top: 1rem;
}
.team_card p a:hover{
	color: var(--dark_main);
}
.interest_content>p{
	margin-top: 2rem;
	text-wrap: balance;
}
.app_wrap.v2{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.app_wrap.v2 .app_img{
	text-align: center;
	width: 100%;
}
.app_wrap.v2 .app_img::before{
	width: 100%;
	left: 0;
	top: 3rem;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	aspect-ratio: 0.96 / 1;
}
.app_wrap.v2 .app_img img{
	max-width: 30rem;
}
.app_wrap.v2 .app_content {
	width: 40rem;
	margin-left: auto;
	margin-right: auto;
}
.app_wrap.v2 .app_content::before {
	right: 50%;
	-webkit-transform: translateY(0%) translateX(50%) rotate(90deg);
	    -ms-transform: translateY(0%) translateX(50%) rotate(90deg);
	        transform: translateY(0%) translateX(50%) rotate(90deg);
	top: auto;
	bottom: 100%;
}
.app_wrap.v2 .qr_wrap {
	width: 40rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 4rem;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.app_wrap.v2 .qr{
	margin-bottom: 0;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

/*contact area*/
.contact_area{
	border-top: 0.1rem solid rgba(113, 112, 113, 0.3);
}
.contact_content{
	max-width: 98rem;
}
.contact_content p{
	margin-top: 2.5rem;
}
.contact_content form{
	margin-top: 5rem;
}
.contact_content form .row input,
.contact_content form .row textarea,
.contact_content form .row select{
	width: 100%;
	display: block;
	border: 0.1rem solid #707070;
	border-radius: 0;
	height: 5rem;
	padding: 0 2rem;
	font-size: 1.8rem;
	resize: none;
}
.contact_content form .row textarea {
	height: 21rem;
	padding-top: 1rem;
}
.contact_content form  .form-check{
	margin-bottom: 0;
	margin-top: 4rem;
}
.contact_content form .form-check-input{
	border-radius: 0;
	border-color: var(--dark_main);
	width: 2rem;
	height: 2rem;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
}
.contact_content form .form-check-input:checked {
	background-color: var(--red_main);
	border-color: var(--red_main);
}
.map iframe{
	width: 100%;
	border: none;
	display: block;
	aspect-ratio: 25 / 19;
	height: auto;
}
.address_block p{
	margin-bottom: 3rem;
}
.address_block p a{
	text-decoration: none;
}
.address_block p strong{
	color: var(--red_main);
	display: inline-block;
}
.iban p strong{
	min-width: 6rem;
}

.full_image .service_img img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	max-width: 100%;
}

.contact_content.v2{
	max-width: 100%;
}
.information_area h3{
	font-size: 4rem;
	color: var(--red_main);
	margin-top: 7rem;
}
.information_area .input{
	margin-top: 2.5rem;
}
.information_area textarea.input{
	height: 12.5rem !important;
}
.contact_infomation{
	background-color: #EBEBEB;
	padding-top: 0.1rem;
	padding-bottom: 7rem;
}
.contact_infomation h3{
	padding-bottom: 1.5rem;
}
.information_img{
	width: 100%;
	max-width: 134rem;
	margin-bottom: 5rem;
}