/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,400;0,700;1,700&family=Oswald:wght@300;400&family=Varela+Round&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;
}
p a{
	color: #758588;
}
p a:hover{
	color: #FE7423;
}
body {
	line-height: 1.75;
	font-family: 'Varela Round', sans-serif;
	background-color: #fff;
	color: #758588;
	font-weight: 400;
	font-size: 2.4rem;
}
/*font-family: 'Albert Sans', sans-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: #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: #FE7423;
	-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*/
.toggle_wrap{
	cursor: pointer;
	z-index: 999;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.toggle_wrap p {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	line-height: 1;
	font-size: 1.6rem;
	color: #758588;
	margin-left: 1.2rem;
	width: 1.7rem;
	word-break: break-all;
}
.hamburger-menu {
	display: inline-block;
}
.hamburger-menu span {
	background: #FE7423;
	width: 4.0rem;
	height: .3rem;
	display: block;
	margin: 0.9rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 1rem;
}
.hamburger-menu .line-center{
	width: 2.5rem;
	margin-left: auto;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(400%) rotate(135deg);
	-ms-transform: translateY(400%) rotate(135deg);
	transform: translateY(400%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-380%) rotate(-135deg);
	-ms-transform: translateY(-380%) rotate(-135deg);
	transform: translateY(-380%) rotate(-135deg);
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	padding: 4rem 0 3.5rem;
}
header::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 0.5rem;
	width: 100%;
	z-index: -1;
	background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(254,116,35,1)), color-stop(50%, rgba(117,133,136,1)));
	background: -o-linear-gradient(left, rgba(254,116,35,1) 50%, rgba(117,133,136,1) 50%);
	background: linear-gradient(90deg, rgba(254,116,35,1) 50%, rgba(117,133,136,1) 50%);
}

/*sticky START CSS*/
header.sticky {
	padding: 3rem 0 2.5rem;
	background-color: #fff;
   -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);
}
header.sticky .logo{
	width: 28rem;
}
header>.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;
}
.logo{
	width: 36rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: inline-block;
}
.call {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #758588;
	font-size: 2.6rem;
	line-height: 1.53;
	margin-left: 32rem;
}
.call img {
	width: 5rem;
	height: 5rem;
	margin-right: 2.5rem;
	background-color: #758588;
	border-radius: 50%;
	padding: 0 1.4rem;
}
.call:hover{
	color: #FE7423;
}
.call:hover img{
	background-color: #FE7423;
}
.menu_area{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background-color: #fff;
	overflow: auto;
	padding-bottom: 2rem;
	padding-top: 16rem;
	opacity: 0;
	pointer-events: none;
}
.menu_area.current{
	opacity: 1;
	pointer-events: all;
}
.menu_area h2{
	font-size: 3rem;
	font-weight: 700;
	color: #637276;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	border-bottom: 0.1rem solid #637276;
	padding-bottom: 2.2rem;
	font-family: 'Albert Sans', sans-serif;
	line-height: 1.23;
	margin-bottom: 2.2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin-top: 5rem;
}
.menu_area a:hover h2,
.menu_area a.active h2{
	color: #FE7423;
}
.menu_area ul li a{
	font-size: 2.2rem;
	color: #637276;
}
.menu_area ul li a:hover,
.menu_area ul li a.active{
	color: #FE7423;
}




.language{
	position: absolute;
	top: 18rem;
	background-color: #BDCBCE;
	right: 0;
	padding: 0.6rem 1.8rem 1.8rem;
	z-index: 10;
}
.language li{
	margin-top: 1.2rem;
}
.language li a {
	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;
	height: 2.9em;
	max-height: 2.9rem;
	width: 2.9rem;
	border-radius: 50%;
	background-color: #fff;
	padding: 0.3rem;
	border: 0.2rem solid transparent;
}
.language li a img{
	width: 100%;
}
.language li a:hover,
.language li a.active{
	border-color: #FE7423;
}
.row:not(.no-gutters){
	margin-left: -2rem;
	margin-right: -2rem;
}
.row>div{
	padding-left: 2rem;
	padding-right: 2rem;
}
/*home area*/
.home_area{
	position: relative;
	z-index: 1;
	padding-top: 16.8rem;
}
.home_area::before {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	height: 100%;
	background-image: url(../img/bg1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top left;
	z-index: -1;
	width: 80%;
}
.slider_wrapper{
	position: relative;
	z-index: 1;
	padding: 9.2rem 0 4.6rem;
}
.home_slider{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: -1;
}
.home_slider .owl-stage-outer,
.home_slider .owl-stage,
.home_slider .owl-item{
	height: 100%;
}
.home_slider .item{
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
}
.home_slider .item::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: -webkit-gradient(linear, left top, right top, from(rgba(117,133,136,0)), to(rgb(23 25 25)));
	background: -o-linear-gradient(left, rgba(117,133,136,0) 0%, rgb(23 25 25) 100%);
	background: linear-gradient(90deg, rgba(117,133,136,0) 0%, rgb(23 25 25) 100%);
}
.home_content h2{
	font-size: 9rem;
	color: #fff;
	font-weight: 700;
	font-family: 'Albert Sans', sans-serif;
	line-height: 1.1;
	margin-bottom: 2rem;
	max-width: 75rem;
}
.home_content h2 span{
	color: #FE7423;
}
.desc_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.desc_wrap p{
	color: #fff;
	line-height: 1.58;
	max-width: 49rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 12.4rem;
}
.scroll_box{
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
	border: 0.2rem solid #FFFFFF;
	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;
	color: #fff !important;
	font-size: 1.4rem;
	font-weight: 300;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	line-height: 1.1;
	text-align: center;
	margin: 1rem auto 0;
}
.scroll_box:hover{
	border-color: #FE7423;
	background-color: #FE7423;
}
.scroll_box i{
	margin-top: 0.2rem;
	font-size: 120%;
	line-height: 0.8;
}
.img_box{
	position: relative;
	z-index: 1;
}
.img_box img{
	height: 24.3rem;
	width: 24.3rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.img_box h4 {
	font-size: 3rem;
	color: #fff;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	left: -5rem;
	text-align: center;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	bottom: -3rem;
	width: 24.3rem;
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
}
.img_box h4 sup{
	top: -1rem;
}
.img_box::before,
.img_box::after{
	position: absolute;
	content: '';
	border-top: 0.2rem solid #FE7423;
	border-right: 0.2rem solid #FE7423;
}
.img_box::before{
	top: -2rem;
	right: -2rem;
	width: 12.7rem;
	height: 12.3rem;
}
.img_box::after{
	top: -3.7rem;
	right: -3.7rem;
	width: 5.9rem;
	height: 5.7rem;
}
.home_content{
	margin-left: auto;
	max-width: 101rem;
}

/*step area*/
.step_box{
	z-index: 1;
	padding-top: 9rem;
	padding-bottom: 9rem;
}
.step_box::before{
	position: absolute;
	z-index: -1;
	content: '';
	top: 0;
	height: 100%;
	width: 200rem;
}
.direction {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 8.8rem;
	left: -4.4rem;
	z-index: 2;
	pointer-events: none;
	-webkit-filter: drop-shadow(0.1rem 0 4rem rgba(0, 0, 0, 0.16));
	        filter: drop-shadow(0.1rem 0 4rem rgba(0, 0, 0, 0.16));
}
.title_md{
	font-size: 5rem;
	font-weight: 700;
	color: #FE7423;
	font-family: 'Albert Sans', sans-serif;
	line-height: 1.2;
}
.orange::before{
	background-color: #FE7423;
	right: 0;
}
.step_box.dark{
	padding-left: 14rem;
}
.dark::before{
	left: 0;
	background-color: #758588;
}
.current-info, .number{
	display: none;
}
.step_area input,
.step_area .nice-select{
	width: 100%;
	height: 6rem;
	background-color: #fff;
	padding: 0 2rem;
	font-size: 2rem;
	color: #758588;
	line-height: 6rem;
}
.nice-select:after {
	border-bottom: 0.3rem solid #758588;
	border-right: 0.3rem solid #758588;
	height: 1rem;
	margin-top: -0.4rem;
	right: 2rem;
	width: 1rem;
}
.content .title{
	display: none;
}
.step_item .title_md{
	padding-bottom: 3rem;
}
.actions ul{
	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;
	margin-top: 9.9rem;
}
.actions ul li a{
	color: #fff;
	font-size: 1.8rem;
	text-transform: uppercase;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
}
.actions ul li:first-child a::before{
	content: '\f104';
	margin-right: 2rem;
}
.actions ul li:not(:first-child) a::after{
	content: '\f105';
	margin-left: 2rem;
}
.actions ul li:first-child a::before,
.actions ul li:not(:first-child) a::after{
	font-family: 'Font Awesome 5 Pro';
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	border: 0.1rem solid #FE7423;
	color: #fff;
	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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 130%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.actions ul li:first-child a:hover::before,
.actions ul li:not(:first-child) a:hover::after{
	background-color: #FE7423;
}
.actions ul li:first-child a:not(::before){
	display: none;
}
.wizard{
	position: relative;
}
.steps ul{
	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;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: 0;
}
.steps ul li a {
	width: 4.5rem;
	height: 0.3rem;
	background-color: #fff;
	display: block;
	margin: 0 0.3rem;
	font-size: 1.8rem;
	text-transform: uppercase;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	text-align: center;
}
.steps ul li a span,
.steps ul li.last a span.number{
	position: absolute;
	bottom: calc(100% + 1.4rem);
	left: 47%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	opacity: 0;
	line-height: 1;
}
.steps ul li.last a span.number{
	display: block;
	opacity: 1;
	left: 53%;
}
.steps ul li.current a span{
	opacity: 1;
}
.steps ul li.current a{
	background-color: #FE7423;
}
/*search area*/
.search_area{
	background-color: #fff;
	padding: 1.2rem 0 4.2rem;
	-webkit-box-shadow: 0.1rem 0 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0 4rem rgba(0, 0, 0, 0.16);
}
.search_form{
	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;
}
.search_form .title_md{
	font-size: 3.6rem;
	margin-right: 4.5rem;
}
.input_group{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	max-width: 66rem;
}
.input_group input{
	width: 100%;
	border: 0.1rem solid #758588;
	height: 6rem;
	padding: 0 3rem;
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 400;
	color: #FE7423;
	border-radius: none;
	font-family: 'Oswald', sans-serif;
}
.input_group input::-webkit-input-placeholder{
	opacity: 1;
	color: #FE7423;
}
.input_group input::-moz-placeholder{
	opacity: 1;
	color: #FE7423;
}
.input_group input:-ms-input-placeholder{
	opacity: 1;
	color: #FE7423;
}
.input_group input::-ms-input-placeholder{
	opacity: 1;
	color: #FE7423;
}
.input_group input::placeholder{
	opacity: 1;
	color: #FE7423;
}
.input_group button{
	color: #fff;
	padding: 0;
	background-color: #FE7423;
	border: 0.1rem solid #758588;
	width: 6rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.input_group button:hover{
	background-color: #758588;
}
/*need_wrap area*/
.need_wrap{
	padding-top: 3rem;
	padding-bottom: 12rem;
}
.need_wrap .row,
.step_item .row{
	margin-left: -1rem;
	margin-right: -1rem;
}
.need_wrap .row>div,
.step_item .row>div{
	padding-left: 1rem;
	padding-right: 1rem;
}
.need_help p{
	font-size: 2.2rem;
	line-height: 1.90;
	font-family: 'Oswald', sans-serif;
	margin-right: 2rem;
	color: #758588;
	text-transform: uppercase;
}
.need_help{
	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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-bottom: 2.5rem;
	border-bottom: 0.1rem solid rgba(117, 133, 136, 0.5);
}
.ev_box{
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 8rem 2rem 7.3rem;
	text-align: center;
	height: 100%;
}
.ev_box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: -1;
}
.ev_box>img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	-o-object-fit: cover;
	   object-fit: cover;
	opacity: 0.7;
}
.ev_box:hover>img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.position_box img{
	height: 6rem;
	margin-bottom: 3rem;
}
.position_box p{
	font-size: 2.6rem;
	text-transform: uppercase;
	color: #fff;
	font-weight: 900;
	font-style: italic;
	line-height: 1.19;
}

/*tape area*/
.tape_content{
	margin-top: 10.5rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
}
.tape_content::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.85;
	z-index: -1;
}
.tape_img::before{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	height: 100%;
	width: 120rem;
	background-color: #758588;
	z-index: -1;
	opacity: 0.7;
	mix-blend-mode: multiply;
	-webkit-box-shadow: 0.1rem 0 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0 4rem rgba(0, 0, 0, 0.16);
}
.tape_img img {
	max-width: 65rem;
	width: 100%;
	margin-top: -7rem;
	margin-bottom: -7rem;
}
.right_content{
	max-width: 64rem;
	padding: 7rem 0;
	padding-left: 10rem;
}
.right_content .title{
	font-style: normal;
	font-weight: 900;
	font-size: 5rem;
}
sup {
   font-size: 60%;
   top: -2rem;
}
/*follow area*/
.follow_area{
	padding-top: 11.5rem;
}
/*blog area*/
.title_wrap{
	position: relative;
	text-align: center;
}
.title_wrap .link_btn{
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.blog_area{
	padding: 14rem 0 12rem;
}
.title{
	font-size: 5.6rem;
	font-weight: 700;
	font-style: italic;
	color: #758588;
}
.title span{
	color: #FE7423;
}
.blog_box{
	position: relative;
	height: 100%;
	padding-bottom: 8rem;
}
.blog_box .link_btn{
	position: absolute;
	left: 0;
	bottom: 0;
}
.blog_media{
	overflow: hidden;
	display: block;
}
.blog_media iframe,
.blog_media img{
	width: 100%;
	border: none;
	height: 27rem;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
}
.blog_box:hover .blog_media img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.blog_box h2{
	font-size: 3.6rem;
	font-weight: 700;
	margin: 5rem 0;
	color: #758588;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	line-height: 1.19;
	font-family: 'Albert Sans', sans-serif;
}
.blog_box a:hover h2{
	color: #FE7423;
}
.link_btn{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 2.2rem;
	text-transform: uppercase;
	color: #FE7423;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
}
.link_btn:hover{
	color: #758588;
}
.link_btn span{
	height: 4rem;
	width: 4rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border-radius: 50%;
	background-color: #FE7423;
	color: #fff;
	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;
	margin-right: 1.5rem;
	font-size: 2.8rem;
	line-height: 1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.link_btn:hover span{
	background-color: #758588;
}
/*.check_area*/
.check_area{
	background-color: rgba(0, 0, 0, 0.8);
}
.check_box {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 6.7rem 7.5rem 18rem;
	text-align: left;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.check_box::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: -1;
}
.check_box>img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	-o-object-fit: cover;
	   object-fit: cover;
	opacity: 0.7;
}
.check_box:hover>img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.check_position h2{
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 700;
	font-style: italic;
	font-family: 'Albert Sans', sans-serif;
	color: #fff;
	max-width: 40rem;
}
.check_position p{
	color: #fff;
	margin-top: 4.5rem;
	max-width: 48.8rem;
}
.check_box .link_btn{
	color: #fff;
}
.check_box .link_btn:first-child{
	margin-right: 8rem;
}
.check_box .link_btn span{
	background-color: #fff;
	color: #758588;
}
.check_box .link_btn:hover{
	color: #FE7423;
}
.check_box .link_btn:hover span{
	background-color: #FE7423;
	color: #fff;
}
.check_btn{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	position: absolute;
	left: 7.5rem;
	bottom: 10rem;
}
.flyer {
	position: absolute;
	right: 4.5rem;
	bottom: 4.5rem;
	pointer-events: none;
	max-width: 27rem;
	z-index: -1;
}
.check_slider .owl-stage,
.check_slider2 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.check_slider .owl-item .item,
.check_slider2 .owl-item .item{
	height: 100%;
}
.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;
	margin-top: 3rem;
	margin-bottom: 4rem;
}
.owl-dots button{
	height: 1.8rem;
	width: 1.8rem;
	padding: 0.1rem;
	border-radius: 50%;
	background-color: #637276;
	margin: 0 0.8rem;
}
.owl-dots button.active{
	background-color: #FE7423;
}
/*footer*/
footer{
	background-color: #FE7423;
	padding: 5.8rem 0 0;
}
footer h2{
	font-size: 3rem;
	line-height: 1.23;
	font-weight: 700;
	padding-bottom: 2.2rem;
	color: #FFFFFF;
	text-transform: uppercase;
	border-bottom: .1rem solid #FFFFFF;
	font-family: 'Albert Sans', sans-serif;
	margin-bottom: 2.4rem;
	letter-spacing: 0.04rem;
}
footer ul li a{
	font-size: 2.2rem;
	line-height: 1.90;
	font-weight: 400;
	color: #FFFFFF;
}
footer ul li a:hover{
	color: #000;
}
.footer_bottom{
   padding: 2.0rem 0 6rem;
   background-color: #fff;
   margin-top: 11rem;
}
.map {
   margin-top: 5.4rem;
}
.map p{
	font-size: 2.2rem;
	width: 11rem;
}
.map img{
	width: 16.4rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 2.6rem;
}
.gap{
	margin-top: 4.5rem;
	display: block;
	width: 12.4rem;
}
.footer_item p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.77;
}
.social_media{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.social_media a {
	border: .3rem solid #758588;
	border-radius: 50%;
	width: 6.5rem;
	height: 6.5rem;
	color: #758588;
	margin-left: 1.6rem;
	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;
}
.social_media a:first-child{
	margin-left: 0;
}
.social_media a:hover{
	color: #fff;
	background-color: #FE7423;
	border: .3rem solid #FE7423;
}
.flogo{
	display: inline-block;
	width: 100%;
	max-width: 33rem;
}

/*inner pages*/
.inner_wrapper{
	padding: 19.5rem 0;
	position: relative;
	z-index: 1;
}
.inner_wrapper h2{
	font-family: 'Albert Sans', sans-serif;
	font-size: 9rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.inner_wrapper .home_slider{
	width: 100%;
}
.inner_bg{
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}
.inner_bg::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.6;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(rgba(117,133,136,0)), to(rgb(23 25 25)));
	background: -o-linear-gradient(left, rgba(117,133,136,0) 0%, rgb(23 25 25) 100%);
	background: linear-gradient(90deg, rgba(117,133,136,0) 0%, rgb(23 25 25) 100%);
}

.breadcrumb_area{
	padding: 3.7rem 0;
}
.breadcrumb_area .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;
}
.breadcrumb{
	padding: 0;
	margin-bottom: 0;
	border-radius: 0;
	background-color: transparent;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.breadcrumb-item.active,
.breadcrumb-item,
.breadcrumb-item a {
   color: #758588;
   font-size: 2rem;
   font-family: 'Albert Sans', sans-serif;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}
.breadcrumb-item+.breadcrumb-item::before {
   line-height: 1;
}
.breadcrumb-item a:hover{
	color: #FE7423;
}
.prev_btn{
	background-color: transparent;
	padding: 0;
	border: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #758588;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-size: 1.8rem;
}
.prev_btn span{
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	border: 0.1rem solid #FE7423;
	color: #758588;
	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;
	margin-right: 2rem;
	font-size: 140%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.prev_btn:hover{
	color: #FE7423;
}
.prev_btn:hover span{
	background-color: #FE7423;
	color: #fff;
}
.ask_area{
	padding-bottom: 8.7rem;
}
.ask_area p{
	max-width: 114.4rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.3rem;
}
.ask_area .title_md{
	position: relative;
	padding-bottom: 3rem;
}
.ask_area .title_md::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 27.4rem;
	height: 0.1rem;
	background-color: #758588;
	opacity: 0.5;
}
.location_area{
	background-color: rgba(117, 133, 136, 0.15);
	padding: 4rem 0 12rem;
}
.location_box{
	text-align: center;
	background-color: #fff;
	padding: 3.5rem 3rem 5.5rem;
}
.location_box img{
	height: 7.7rem;
}
.location_box h3{
	font-size: 3rem;
	font-weight: 700;
	color: #FE7423;
	line-height: 1.3;
	margin-top: 3rem;
	font-family: 'Albert Sans', sans-serif;
}
.location_box h4{
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.3;
	margin-top: 4rem;
	font-family: 'Albert Sans', sans-serif;
	padding-bottom: 0.3rem;
}
.location_box p{
	max-width: 44.5rem;
	margin-left: auto;
	margin-right: auto;
}
.check_slider2 .flyer {
   max-width: 41rem;
}
.title_sm{
	font-family: 'Albert Sans', sans-serif;
	font-weight: 700;
	font-size: 3.2rem;
}
.treadmark_area{
	background-color: rgba(117, 133, 136, 0.15);
	padding: 4rem 0 9rem;
}
.treadmark_area p{
	max-width: 78.6rem;
}
.blog_area.v2{
	padding: 5rem 0 13rem;
}
.blog_area.v2 .blog_media img {
   height: 32.2rem;
}
.blog_area.v2 .blog_box h2 {
   margin: 6rem 0 2.5rem;
}
.blog_area.v2 .blog_box p{
	max-width: 63rem;
}

.search_area.v2{
	background-color: #FE7423;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.search_area.v2 .search_form{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.search_area.v2 .search_form input{
	background-color: transparent;
	border-color: #fff;
	border-right: none;
	color: #fff;
}
.search_area.v2 .search_form input::-webkit-input-placeholder{
	color: #fff;
	opacity: 1;
}
.search_area.v2 .search_form input::-moz-placeholder{
	color: #fff;
	opacity: 1;
}
.search_area.v2 .search_form input:-ms-input-placeholder{
	color: #fff;
	opacity: 1;
}
.search_area.v2 .search_form input::-ms-input-placeholder{
	color: #fff;
	opacity: 1;
}
.search_area.v2 .search_form input::placeholder{
	color: #fff;
	opacity: 1;
}
.search_area.v2 .search_form button{
	border-color: #fff;
	border-left: none;
}
.language_filter ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-left: -1rem;
	margin-right: -1rem;
}
.language_filter ul li{
	padding-left: 1rem;
	padding-right: 1rem;
}
.language_filter ul li a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	text-transform: uppercase;
	color: #758588;
	font-size: 1.8rem;
	max-width: 14.8rem;
	line-height: 1.4;
}
.language_filter ul li a:hover{
	color: #FE7423;
}
.language_filter ul li a img{
	width: 1.8rem;
	margin-right: 1rem;
	margin-top: 0.3rem;
}
.language_filter{
	padding: 5.5rem 0;
	border-bottom: 0.1rem solid rgba(117, 133, 136, 0.5);
}

.datasheet_item{
	padding-top: 0.5rem;
	padding-bottom: 5rem;
}
.datasheet_item:nth-child(even){
	background-color: #EAEDED;
}
.datasheet_item img{
	border: 0.1rem solid #707070;
	width: 25rem;
	margin-right: 4rem;
}
.datasheet_item h4{
	font-size: 2.8rem;
	line-height: 1.3;
	font-weight: 700;
	color: #FE7423;
	font-family: 'Albert Sans', sans-serif;
}
.datasheet_item p{
	font-size: 2.2rem;
	line-height: 1.65;
}
.datasheet_item ul li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 2rem;
	font-family: 'Albert Sans', sans-serif;
}
.datasheet_item ul li>span{
	width: 22rem;
	margin-right: 1rem;
	font-weight: 700;
}
.color{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.color span{
	height: 2rem;
	width: 2rem;
	border-radius: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 0.5rem;
}
.color span.black{
	background-color: #000000;
}
.color span.gray{
	background-color: #ADADAD;
}
.cta_area{
	padding: 7.2rem 0;
	background-color: #FE7423;
	color: #fff;
	text-align: center;
}
.cta_area p{
	font-weight: 500;
	font-family: 'Albert Sans', sans-serif;
	max-width: 80.8rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}
.link_btn.white_btn{
	color: #fff;
}
.link_btn.white_btn span{
	background-color: #fff;
	color: #758588;
}
.link_btn.white_btn:hover{
	color: #000;
}
.link_btn.white_btn:hover span{
	background-color: #000;
	color: #fff;
}
.car_img{
	width: 100%;
	max-width: 132rem;
}
/*.product area*/

.product_item{
	padding: 5rem 0;
	border-bottom: .1rem solid rgba(117, 133, 136, 0.5);
}
.product_color{
	padding: 5rem 0 1rem;
	color: #FE7423;
}
.product_bottom{
	border-bottom: none;
}
/*applications area*/
.applications{
	padding: 5rem 0 14rem;
}
.applications h2{
	text-align: center;
	font-size: 5rem;
	line-height: 1.2;
	color: #FE7423;
	font-weight: 700;
	padding: 4rem 0 6.5rem;
	font-family: 'Albert Sans', sans-serif;
}
.application_slider .app_box img{
	height: 8.5rem;
	margin-bottom: 4.6rem;
}
.application_slider .app_box p{
	font-size: 2.2rem;
	line-height: 1.18;
	letter-spacing: 0.04rem;
	font-weight: 900;
	font-style: italic;
	color: #637276;
}
.application_slider .app_box {
	height: 26rem;
	text-align: center;
	border: .1rem solid #707070;
	padding: 5rem 2rem 2rem;
	display: block;
}
.application_slider .app_box:hover {
	background-color: rgba(117, 133, 136, 0.15);
}
.owl-nav button{
	width: 6.6rem;
	height: 6.6rem;
	background-color: #637276;
	color: #fff;
	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;
	border-radius: 50%;
	font-size: 4.2rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	position: absolute;
}
.owl-nav button:hover{
	background-color: #FE7423;
}
.owl-nav .owl-prev{
	left: -9.2rem;
}
.owl-nav .owl-next{
	right: -9.2rem;
}

/*feature area*/
.feature_area{
	background-color: rgba(117, 133, 136, 0.15);
	padding: 2.5rem 0 10rem;
}
.feature_img{
	height: 16rem;
	width: 16rem;
	border-radius: 50%;
	background: -webkit-gradient(linear, left top, right top, from(rgba(254,116,35,1)), to(rgba(117,133,136,1)));
	background: -o-linear-gradient(left, rgba(254,116,35,1) 0%, rgba(117,133,136,1) 100%);
	background: linear-gradient(90deg, rgba(254,116,35,1) 0%, rgba(117,133,136,1) 100%);
	padding: 0.7rem;
	margin-right: 4rem;
}
.feature_img img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.feature_box .title_sm{
	font-size: 2.8rem;
	margin-bottom: 1.3rem;
}
.feature_box p{
	font-size: 1.8rem;
	font-weight: 500;
	font-family: 'Albert Sans', sans-serif;
	line-height: 1.33;
}
.feature_box .link_btn{
	margin-top: 2.5rem;
}