/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,500;0,700;1,400&display=swap');

:root{
	--dark: #1D1D1B;
	--blue: #7c0000;
	--color1:#489a4e; 
    --color2: #fbce46;
}

/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.58;
	font-family: 'Karla', sans-serif;
	background-color: #fff;
	color: var(--dark);
	font-weight: 400;
	font-size: 2.2rem;
}

ol,
ul {
	list-style: none;
	text-align: justify;
}

a:hover {
	text-decoration: none;
}
p a{
	color: var(--red);
}
p a:hover{
	color: var(--dark);
}

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: var(--blue);
	-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;
	z-index: 999;
	margin-left: 4rem;
	display: inline-block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 10rem;
}
.hamburger-menu span {
	background: #ffffff;
	width: 4.0rem;
	height: .4rem;
	display: block;
	margin: .6rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
	background: #fff;
}
.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(-325%) rotate(-135deg);
	background: #fff;
}
.hamburger-menu h4 {
	position: absolute;
	top: 50%;
	font-size: 3.4rem;
	color: #ffffff;
	font-weight: 700;
	right: 120%;
	text-transform: uppercase;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	
}
.header_full{
	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;
	/* background-color: var(--blue); */
	z-index: 1;
	padding: 0rem 10rem 0 0rem;
	position: relative;
}
.header_img{
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	width: 200rem;
	height: 100%;
}
.logo {
    background-color: #7c0000;
    padding: 1.4rem 5rem 1.4rem 3.7rem;
    width: 20.4rem;
    position: relative;
}
.logo::before {
	content: '';
	position: absolute;
	right: -.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 2.0rem solid transparent;
	border-right: 2.0rem solid #fff;
	border-bottom: 2.0rem solid transparent;
}
.header_cont{
	padding-left: 5.2rem;
}
.head_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
header h2{
	font-size: 3.6rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}
header h3{
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	/* color: var(--dark); */
}

/*sticky START CSS*/
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);
}
.overlay{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(22, 22, 21, 0.7);
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.menu{
	position: fixed;
	top: 0;
	right: -100%;
	height: 100vh;
	overflow: auto;
	background-color: var(--dark);
	padding: 13rem 9rem 3rem;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	z-index: 2;
}
.current .menu{
	right: 0;
}
.current .overlay{
	pointer-events: all;
	opacity: 1;
}
.menu>ul>li.active{
	background-color: var(--yellow);
	color: #fff;
}
.menu>ul>li{
	padding-top: 2rem;
}
.menu>ul>li:not(:last-child){
	padding-bottom: 0.5rem;
	border-bottom: 0.1rem solid #707070;
	
}
.menu>ul>li>a {
	font-size: 2.2rem;
	color: #fff;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	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(--blue)!important;
}
/*----------------Home area---------------*/
.home_area {
	position: relative;
	z-index: 1;
}
.home_area h4 {
	font-size: 12rem;
	color: var(--blue);
	display: inline-block;
	position: absolute;
	bottom: 37rem;
	right: -2.5rem;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}
.home_shape {
	position: absolute;
	z-index: 1;
	width: calc(100% - 4rem);
	max-width: 189rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: 16.6rem;
	pointer-events: none;
}
/* .video {
	width: 100%;
	height: 96.7rem;
	overflow: hidden;
	position: relative;
}
.video iframe {
	width: 100%;
	border: none;
	height: 100%;
	pointer-events: none;
} */
/*inner_home*/
.inner_home{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 29rem 0 14rem;
	position: relative;
	z-index: -1;
}
.inner_home::before{
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: -o-linear-gradient(left, rgba(22,22,21,0.9) 0%, rgba(22,22,21,0.75) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(22,22,21,0.9)), to(rgba(22,22,21,0.75)));
	background: linear-gradient(90deg, rgba(22,22,21,0.9) 0%, rgba(22,22,21,0.75) 100%);
	opacity: 0.5;
}
.inner_home h2{
	font-size: 6rem;
	line-height: 1.20;
	color: #fff;
	font-weight: 700;
}
.right_inner>img{
	max-width: 57.5rem;
}
/*---------------deamen_area-----------------*/
.deamen_area{
	background-color: rgba(22, 22, 21, 0.04);
	padding: 7rem 0 10rem;
}
.daemen_cont h2{
	font-size: 7rem;
	line-height: 1;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 0.8rem;
}
.daemen_cont h2 span{
	display: block;
	color: var(--blue);
}
.daemen_cont p{
	margin-top: 2rem;
	max-width: 70rem;
	text-align: justify;
}
.daemen_btn .less_btn{
	background-color: var(--dark);
	color: #fff;
}
.daemen_btn .less_btn:hover{
	background-color: var(--blue);
	color: #fff;
}
.daemen_img{
	position: relative;
}
.about-img-1 {
    width: 60.3rem;
    height: 55.3rem;
    object-fit: cover;
    margin-left: auto;
    display: block;
}
.about-img-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46rem;
    object-fit: contain;
}
/*-----------------more_case----------------*/

.slider1 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.slider1 .owl-stage-outer{
	overflow: visible;
}
.slider1 .owl-stage-outer .owl-item:not(.active){
	visibility: hidden;
}
.slider1 .owl-nav button {
	top: 38%;
	-webkit-transform: translateY(-32%);
	    -ms-transform: translateY(-32%);
	        transform: translateY(-32%);
	position: absolute;
	background: transparent;
	font-size: 6rem;
	color: var(--dark);
}
.slider1 .owl-nav button.owl-prev {
   left: -6.6rem;
}
.slider1 .owl-nav button.owl-next {
   right: -6.6rem;
}
.slider1 .owl-dots button{
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--dark);
	border-radius: 50%;
	margin: 0 1rem;
	padding: 0.1rem;
}
.slider1 .owl-dot.active{
	background-color: var(--blue);
}
.slider1 .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: 7rem;
}
.more_case{
	padding: 8rem 0 8.6rem;
}
.laats_card {
	height: 100%;
	background-color: #FFFFFF;
	position: relative;
	-webkit-box-shadow: 0.1rem .5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem .5rem 4rem rgba(0, 0, 0, 0.16);
}
.laats_card:hover .laats_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.laats_img {
	overflow: hidden;
	display: block;
}
.laats_cont {
   padding: 4rem;
   text-align: center;
}
.laats_cont i{
	font-size: 3rem;
}
.laats_cont p {
	font-size: 2.7rem;
	color: #000;
	line-height: 1.30;
	font-weight: 700;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin: 1.5rem 0;
}
/* -----------------factors_area----------------- */
.factors_area{
	padding: 0rem 0;
}
.title_head h2{
	font-size: 6rem;
    font-weight: 700;
    line-height: 1.20;
    margin-bottom: 3rem;
    color: var(--blue);
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}
.title_head h1{
	font-size: 5rem;
    font-weight: 700;
    line-height: 1.20;
    margin-bottom: 1.2rem;
    color: var(--blue);
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}
.title_head h2::before {
    content: "";
    position: absolute;
    background-color: var(--blue);
    height: 0.3rem;
    top: 50%;
    right: -14rem;
    width: 12rem;
}
.factors_area p {
    color: var(--dark);
    font-size: 3.4rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    font-weight: 600;
}
.count_list li{
	display: inline-flex;
	column-gap: 2.5rem;
	font-size: 2.5rem;
	line-height: 1.4;
	margin-bottom: 1.5rem;
	color: #464646;
}
.list_number{
	color: #8D8D8D;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.4;
}
.clot_quality {
    width: 100%;
    height: 72rem;
    object-fit: contain;
}
.title_style{
	display: flex;
	column-gap: 2rem;
	align-items: flex-start;
}
.title_style img{
	width: 6rem;
	object-fit: contain;
}
.title_style h2{
	font-size: 5rem;
    font-weight: 700;
    line-height: 1.20;
    margin-bottom: 3rem;
}
/*-------------------media_area-------------------*/
.media_area {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 10rem 0 7.8rem;
    position: relative;
    z-index: 1;
}
.media_area::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(36, 27, 27, 0.3);
    z-index: -1;
}
.media_area::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.603);
    z-index: -1;
}
.media_area h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.20;
    color: #fff;
    text-transform: uppercase;
    max-width: 73rem;
	margin-bottom: 7rem;
}
.manufac_img{
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
	max-width: 57rem;
}
.manufac_img img {
    width: 17.4rem;
    margin-bottom: 2rem;
}
.media_area h3{
	text-align: right;
	font-size: 5rem;
	color: var(--dark);
	font-weight: 700;
	text-transform: uppercase;
}
.media_area h4{
	font-size: 3rem;
	color: var(--dark);
	font-weight: 700;
	text-transform: uppercase;
	margin: 1rem 0 2rem;
}
.media_area p{
	color: var(--dark);
	margin-bottom: 5rem;
}
.media-image {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    display: block;
}
/* -----------companies_logo_area------------- */
.companies_logo_area{
	padding: 9rem 0;
}
.companies_logo_area a img{
	width: 100%;
	height: 8rem;
	object-fit: contain;
}
.companies_logo_area h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.20;
    margin-bottom: 3rem;
    color: var(--blue);
	text-align: center;
	margin-bottom: 7rem;
	text-transform: uppercase;
}
/* --------------products_area------------- */
.products_area{
	padding: 5rem 0;
}
.products_area h2 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.20;
    margin-bottom: 3rem;
    color: var(--blue);
	text-align: center;
}
.men_fashion{
	display: block;
}
.men_fashion h3{
	font-size: 3rem;
	text-transform: uppercase;
	color: var(--dark);
	font-weight: 700;
	text-align: center;
}
.men_fashion img {
    height: 55rem;
    object-fit: contain;
}
.fashion_items{
	background-color: #DFF0EA;
	border-radius: 1rem;
	text-align: center;
	height: 100%;
	display: block;
	padding: 1rem 1rem 1.5rem;
}
.fashion_items img{
	height: 22rem;
	object-fit: contain;
}
.fashion_items h3{
	color: var(--dark);
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 1rem;
}
.slider4 .owl-nav{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 2rem;
	margin-top: 5rem;
}
.slider4 .owl-nav button {
    background-color: transparent;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--dark);
    border-radius: 50%;
    padding-bottom: 0.5rem;
    outline: 0.1rem solid var(--dark);
}
.slider4 .owl-nav button:hover{
	background-color: var(--blue);
	outline-color: var(--blue);
}
/*---------------heeft area---------------*/
.heeft_area{
	background-size: cover;
	background-position: center;
	text-align: center;
	color: #fff;
	padding: 15rem 0;
	position: relative;
	z-index: 1;
}
.heeft_area::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(left, rgba(22,22,21,0.7) 0%, rgba(22,22,21,0) 50%, rgba(22,22,21,0.7) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(22,22,21,0.7)), color-stop(50%, rgba(22,22,21,0)), to(rgba(22,22,21,0.7)));
	background: linear-gradient(90deg, rgba(22,22,21,0.7) 0%, rgba(22,22,21,0) 50%, rgba(22,22,21,0.7) 100%);
	z-index: -2;
}
.heeft_area::after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: var(--blue);
	opacity: .7;
	mix-blend-mode: multiply;
}
.heeft_area h2 {
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.18;
	color: #fff;
	text-shadow: 0.1rem 0.5rem 2.5rem rgba(0, 0, 0, 0.45);
}
.heeft_area h3 {
	font-size: 2.4rem;
	font-weight: 500;
	color: #fff;
	margin: 1.5rem 0 3.3rem;
}
.less_btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 700;
	background-color: #fff;
	color: var(--dark);
	padding: 1rem 2.3rem;
	font-size: 2.4rem;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	border: 0.2rem solid transparent;
}
.less_btn:hover{
	background-color: var(--blue);
	color: var(--dark);
}
.less_btn img{
	width: 1.6rem;
}
.less_btn.outline{
	background-color: transparent;
	border: 0.2rem solid var(--dark);
	color: var(--dark);
}
.less_btn.outline:hover{
	background-color: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

/*** 
=============================================
    Working Style2 Area style
=============================================
***/
.working-style2-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0px 0 110px;
    margin-top: 110px;
    z-index: 1;
}
.working-style2-area::before {
    background: rgba(0, 0, 0, 0.80) none repeat scroll 0 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
} 
.working-style2-content {
    margin-top: -110px;
}
.single-working-box-style2{
    position: relative;
    display: block;
    width: 25%;
    float: left;
}
.single-working-box-style2 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-working-box-style2 .img-holder img{
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms ease;    
}
.single-working-box-style2:hover .img-holder img {
    transform: scale(1.2);    
}
.single-working-box-style2 .static-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: all 500ms ease 100ms;
}
.single-working-box-style2:hover .static-content{
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 900ms ease 100ms;    
}
.single-working-box-style2 .static-content .box{
    display: table;
    width: 100%;
    height: 100%;    
}
.single-working-box-style2 .static-content .box .inner{
    display: table-cell;
    vertical-align: middle;
    text-align: center;    
}
.single-working-box-style2 .icon-holder{
    position: relative;
    display: block;
    width: 110px;
    height: 110px;
    margin: 0 auto 60px;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
}
.single-working-box-style2 .icon-holder span:before {
    display: block;
    color: #ffffff;
    font-size: 55px;
    line-height: 106px;
}
.single-working-box-style2 .text-holder{
    position: relative;
    display: block;
}
.single-working-box-style2 .text-holder .title{
    position: relative;
    display: block;
}
.single-working-box-style2 .text-holder .title h3{
    color: #ffffff;
    font-size: 20px;
    line-height: 40px;
    font-weight: 600;
    z-index: 1;
}
.single-working-box-style2 .text-holder .title .count {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #2d2e32;
    font-size: 100px;
    line-height: 70px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    z-index: -1;
}
.single-working-box-style2 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
    transition: all 300ms ease 100ms;
}
.single-working-box-style2:hover .overlay-content{
    opacity: 1;
    transform: translateY(-10px);
    transition: all 900ms ease 300ms; 
}
.single-working-box-style2 .overlay-content .box{
    display: table;
    width: 100%;
    height: 100%;    
}
.single-working-box-style2 .overlay-content .box .inner{
    display: table-cell;
    vertical-align: middle;
    text-align: center;    
}
.single-working-box-style2 .overlay-content .icon-holder {
    margin: 0 auto 50px;
    border: 2px solid #7c0000;
    background: #7c0000;
}
.single-working-box-style2 .text-holder .text{
    position: relative;
    display: block;
    padding: 0 20px;
    margin-top: 34px;
}
.single-working-box-style2 .text-holder .text p{
    color: #7c7e84;
    margin: 0;
}
.single-working-box-style2 .read-more a span:before {
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: #7c0000;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 200ms ease 100ms; 
}
.single-working-box-style2:hover .read-more a span:before{
    opacity: 1.0;
    transform: scale(1.0);
    transition: all 900ms ease 900ms;     
}
.working-style-bottom{
    position: relative;
    display: block;
    padding-top: 84px;
}
.working-style-bottom p{
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 0 42px;
    font-family: 'Poppins', sans-serif;
}
.working-style-bottom a{
    padding: 0 40px;
}





/* ---------------offer_area----------------- */
/* 
.offer_area{
	padding: 5rem 0 15rem;
}
.offer_area h2{
	font-size: 4rem;
    font-weight: 700;
    line-height: 1.20;
    color: var(--blue);
    margin-bottom: 3rem;
}
.offer_box{
	position: relative;
	overflow: hidden;
	margin-top: 3rem;
}
.offer_box:not(.v2)::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 1;
}
.offer_box:not(.v2):hover::before{
	opacity: 1;
}
.offer_box>img{
	width: 100%;
	position: relative;
	z-index: -1;
}
.offer_box:not(.v2):hover>img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.offer_box .news_event_cont {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
}
.offer_box .button img{
	width: 2.6rem;
	margin-top: 0.2rem;
}
.news_event_cont p{
	color: #fff;
	font-size: 2.5rem;
}
.hoffer12{
	height: 45.6rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.hoffer22{
	height: 29.2rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.hoffer33{
	height: 45.7rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.hoffer33{
	height: 45.7rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.hoffer44{
	height: 44rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.hoffer55{
	height: 31.1rem;
	-o-object-fit: cover;
	   object-fit: cover;
} */
/*----------------------footer------------------*/
footer{
	background-color: #000000;
	color: #fff;
	padding: 5.7rem 0 4.3rem;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}
footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgb(0 0 0 / 86%);
}
.f_logo {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	top: -9.5%;
	z-index: 2;
}
.f_logo img{
	width: 20.0rem;
	padding-top: 100px;
}
footer a{
	color: #fff;
}
footer ul li a{
	font-size: 2.4rem;
}
footer ul li a:hover{
	color: var(--blue);
}
.first_foot p{
	font-size: 2.4rem;
	margin-bottom: 2.1rem;
}
.last_foot p{
	font-size: 2rem;
	margin-bottom: 1rem;
}
.last_foot a{
	font-size: 2rem;
}
footer ul li strong {
    font-size: 2.2rem;
    margin-right: 1.7rem;
    width: 7rem;
    display: inline-block;
}
footer ul li:not(:last-child){
	margin-bottom: 1rem;
}
.last_foot p span{
	color: var(--blue);
	margin-right: 1rem;
}
footer h2{
	font-size: 3.6rem;
	line-height: 1.16;
	margin-bottom: 3.4rem;
	color: #fff;
	font-weight: 700;
}
.icon_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a:not(:last-child){
	margin-right: 2rem;
}
.icon_box a{
	width: 5rem;
	height: 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: #fff;
	background-color: var(--blue);
	font-size: 2.3rem;
}
.icon_box a:hover {
	background-color: #fff;
	color: var(--blue);
}
.icon_box a:not(:last-child){
	margin-right: 2rem;
}
.footer_bottom {
	border-top: 0.1rem solid rgba(255, 255, 255, 0.25);
	margin-top: 6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer_bottom p{
	font-size: 2rem;
	text-align: center;
	margin-top: 4rem;
}
.footer_bottom a:hover{
	color: var(--blue);
}
/* manag_profile------ */
.manag_profile{
	text-align: center;
}
.manag_profile .manag_profile_img{
	width: 25rem;
	margin: 0 auto;
}
.manag_profile  h3 {
    font-size: 3rem;
    line-height: 1.20;
    color: var(--dark);
    margin-bottom: 3rem;
    font-weight: 700;
}
.manag_profile h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.20;
    margin-bottom: 3rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
}
.manag_profile p{
	text-align: justify;
}
.manag_profile .less_btn{
	background-color: var(--blue);
    color: #fff;
}
.management_box {
  position: relative;
  z-index: 1;
}

.management_img {
  display: block;
  width: 100%;
  height: 30rem;
}

.management_box .overlay {
  content: "";
  position: absolute; 
  bottom: 0; 
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #f1f1f1; 
  width: 100%;
  height: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 2.0rem;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.management_box:hover .overlay {
  opacity: 1;
}
.management_box strong{
	font-size: 2.2rem;
	padding-left: 0.9rem;
	font-weight: 700;
}
.management_box p{
	font-size: 1.8rem;
	padding-left: 0.9rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.6rem;
	width: 5rem;
	height: 5rem;
	line-height: 5.4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 1rem;
	background: var(--blue);
	z-index: 999;
}

.back-to-top i {
	color: #fff;
}

/* contact_area */
.contact_area{
	padding: 5rem 0 15rem;
}
.contact_area p{
	text-transform: uppercase;
}
.contact_area input,
.contact_area textarea{
	width: 100%;
	line-height: 1.4;
    font-size: 1.9rem;
    min-height: 4.0rem;
    padding: 1.2rem 1.4rem;
    border-radius: .3rem;
    background-color: rgba(0, 142, 217, 0.20);
    margin-bottom: 0.8rem;
    border: none;
    outline: none;
}
.contact_area textarea{
	resize: none;
	height: 12rem;
}
.contact_area label{
	font-size: 2.4rem;
	font-weight: 500;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	color: var(--dark);
}
.contact_area .less_btn{
	background-color: var(--blue);
}
/* product_list_area */
.product_list_area{
	padding: 5rem 0 17rem;
}
/* explore_cont_area */
.explore_cont_area{
	margin: 7rem 0;
	position: relative;
	z-index: 1;
}
.explore_cont_area::before {
    content: '';
    position: absolute;
    right: 0;
    bottom:82%;
    width: 50%;
    height: 70rem;
    background-color: var(--blue);
    z-index: -1;
    opacity: 0.1;
}
.explore_cont_area h2{
	font-size: 3.8rem;
	font-weight: 700;
	color: #464646;
	margin-bottom: 3rem;
	text-align: center;
}
.table-container {
    position: relative;
}

table {
 position: relative;
    top: 20%;
    left: 20%;
    /* transform: translate(-50%, -50%); */
}

.explore_cont_area p{
	color: #464646;
}
.explore_cont_area ul{
	padding-bottom: 3rem;
}
.explore_cont_area ul li{
	list-style: disc;
	font-weight: 700;
	color: var(--dark);
}
/* explore_we_area */

.about-us-content-2-text {
    padding-right: 10%;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 7.0rem;
}
.about-us-content-2-text::before {
    position: absolute;
    left: 0;
    top: 0;
   	background-color: var(--blue);
    opacity: 0.3;
    height: 100%;
    content: "";
    width: .9rem;
}
.about-us-content-2-text p {
    font-size: 4rem;
    color: #464646;
}
/* our_mission_area */
.our_mission_area{
	margin: 0 0 17rem;
}
.our_miss_box {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem;
    position: relative;
    z-index: 1;
    color: #fff;
    height: 41rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
.our_miss_box::before {
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .5;
    z-index: -1;
}
.our_miss_box h2 {
    font-size: 3.7rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
	color: #fff;
}
.our_miss_box p{
	text-align: justify;
	color: #fff;
}
.custom_row{
	margin-left: -1rem;
	margin-right: -1rem;
}
.custom_row>div{
	padding-left: 1rem;
	padding-right: 1rem;
}
/* product_details_area */
.product_details_area{
	padding-bottom: 15rem;
}
.product_details_area .less_btn {
    background-color: var(--blue);
    color: #fff;
}
.product_details_area h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2rem;
}
.product_details_area h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.product_details_area h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.product_details_area p {
    color: #464646;
    margin-bottom: 2rem;
}
.product_details_area img{
	height: 55rem;
	object-fit: contain;
}
.product_details_area h5{
	font-size: 4rem;
	font-weight: 700;
	padding-bottom: 1rem;
	border-bottom: 0.1rem solid var(--blue);
	margin-bottom: 2rem;
	margin-top: 6rem;
}
/* news_blog_area */
.news_blog_area{
	padding: 0 0 15rem;
}
.news_blog_area h2{
	font-size: 3rem;
	font-weight: 700;
	margin: 1.5rem 0;
}
.news_blog_area p{
	margin-bottom: 2rem;
	text-align: justify;
}
.news_blog_area a i{
	margin-right: 1rem;
}
.cha_area .manag_profile{
	text-align: left;
}
.cha_area .manag_profile h2{
	text-align: center;
}
.cha_area img{
	width: 100%;
}
.manag_profile_custom{
	max-width: 56rem;
}