/*======================
   00.  fonts
========================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');


:root{
	--primary-color:#FBB040;
	--secondary-color:#FFCB7D;
	--black:#000;
	--white:#fff;
	--body-bg:#F9F9F9;
	--font:"Montserrat", sans-serif;
}
/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	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 {
	color: var(--black);
	background-color: var(--body-bg);
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	font-family: var(--font);
}
a{
	text-decoration: none;
	color: var(--black);
}
a:hover, button:hover{
	text-decoration: none;
	color: var(--black);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
	text-transform: uppercase;
}
ul,li{
	list-style: none;
}
img{
	max-width: 100%;
}
button:focus,
a:focus,
select: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: flex;
	align-items: center;
	justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: var(--primary-color);
	-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% {
    	transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	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;
  	}
}
/* Important css */
.container{
	padding-left: 15px;
	padding-right: 15px;
}
.row{
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.btn-design{
	display: inline-block;
	padding: 1rem 2rem;
	color: var(--black);
	text-transform: capitalize;
	font-size: 1.6rem;
	font-weight: normal;
}
.btn-design-1{
	background-color: var(--primary-color);
}
.btn-design-1:hover{
	background-color: var(--secondary-color);
}
.btn-design-2{
	background-color: transparent;
	border: .3rem solid var(--primary-color);
}
.btn-design-2:hover{
	background-color: var(--primary-color);
}
.btn-design-3{
	background-color: var(--white);
}
.btn-design-3:hover{
	background-color: var(--secondary-color);
}

/*======================
    Header Css
========================*/
header{
	background-color: var(--white);
	padding: 2rem 0;
}
header.fixed{
	position: fixed;
	width: 100%;
	z-index: 55;
}
.header-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-content .logo img{
	width: 15rem;
}
.header-content nav ul{
	display: flex;
	gap: 7rem;
	align-items: center;
}
.header-content nav a{
	opacity: .6;
}
.header-content nav a:hover, .header-content nav a.active{
	opacity: 1;
}
.hamburger-menu{
	flex-direction: column;
	gap: 1.5rem;
	width: 5rem;
	height: 2rem;
	text-align: right;
	align-items: end;
	position: relative;
	cursor: pointer;
	display: none;
}
.hamburger-menu span{
	height: .3rem;
	background-color: var(--black);
	display: block;
	transition: .3s ease-in-out;
	position: absolute;
	top: 0;
	right: 0;
}
.hamburger-menu span.line-1{
	width: 4.6rem;
}
.hamburger-menu span.line-2{
	width: 2.3rem;
	top: 1.5rem;
}
.hamburger-menu.active span{
	width: 3.5rem;
	position: absolute;
	z-index: 55;
}
.hamburger-menu.active span.line-1{
	transform: rotate(45deg);
}
.hamburger-menu.active span.line-2{
	transform: rotate(-45deg);
	top: 0;
}
/*======================
    banner Css
========================*/
.banner{
	padding-top: 20rem;
}
.banner-top{
	display: flex;
	align-items: end;
	margin-bottom: 9rem;
}
.banner-top>div{
	width: 100%;
}
.banner-top h1{
	font-size: 9.6rem;
}
.banner-top .btn-design {
    margin-bottom: 4rem;
    margin-left: 5rem;
}
.banner-bottom{
	position: relative;
}
.banner-shape{
	position: absolute;
	right: 0;
	bottom: -13.6rem;
	border-top: 4rem solid var(--primary-color);
	border-right: 4rem solid var(--primary-color);
	height: 17.5rem;
	width: 17.5rem;
}
.banner-img img{
	width: 100%;
}

/*======================
    building future Css
========================*/
.building-future{
	padding-top: 15rem;
}
.building-future-content{
	display: flex;
	align-items: end;
}
.building-future-content>div{
	width: 100%;
}
.building-future-content h3{
	font-size: 4.8rem;
	max-width: 64rem;
}
.building-future-content h3 .small-shape{
	display: inline-block;
	background-color: var(--primary-color);
	height: 1.6rem;
	width: 1.6rem;
}
.building-future-content p{
	max-width: 78rem;
	margin-left: auto;
}


/*======================
    crafting spaces Css
========================*/
.crafting-spaces{
	padding-top: 9rem;
	padding-bottom: 18.5rem;
}
.crafting-row{
	display: flex;
	align-items: end;
}
.crafting-row>div{
	width: 100%;
}
.crafting-img img{
	width: 78rem;
}
.crafting-content{
	max-width: 78rem;
	margin-left: auto;
}
.crafting-content h2{
	display: flex;
	gap: 5rem;
	align-items: end;
	font-size: 6.4rem;
	max-width: 73rem;
	margin-bottom: 3rem;
}
.crafting-content h2 .shape {
    display: block;
    height: 12rem;
    width: 100%;
    max-width: 4rem;
    background-color: var(--primary-color);
	margin-bottom: 2rem;
}
.crafting-content p{
	margin-bottom: 5.5rem;
}
/*======================
    expertise Css
========================*/
.expertise{
	background-color: var(--primary-color);
	padding: 18rem 0;
}
.expertise h2{
	font-size: 9.6rem;
	margin-bottom: 5rem;
}
.expertise-top>div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.expertise-top p{
	max-width: 76rem;
	opacity: .6;
}
.expertise-slider{
	margin-top: 7rem;
}
.expertise-slider .slider-inner{
	max-width: 54.8rem;
	border-top: .3rem solid var(--black);
}
.expertise-slider h3{
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	font-size: 3.1rem;
	text-wrap: nowrap;
}
.expertise-slider p{
	margin-bottom: 3rem;
}
.slider-img{
	position: relative;
}
.slider-img::after{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fbb040cc;
	opacity: 0;
	transition: .3s ease-in-out;
}
.expertise-slider .slider-inner:hover .slider-img::after{
	opacity: 1;
}
.expertise-slider img{
	width: 100%;
}
.expertise-slider.swiper{
	overflow: visible !important;
}
.expertise-slider .swiper-scrollbar {
    opacity: 1 !important;
    position: relative !important;
    bottom: -8rem !important;
    left: 0 !important;
}
.expertise-slider .swiper-scrollbar-drag {
    background: white;
    height: .8rem;
    top: -.2rem;
}
/*======================
    leadership Css
========================*/
.leadership{
	padding-top: 22rem;
	position: relative;
}

.leadership-content-wrap{
	display: flex;
	gap: 9.5rem;
}
.leadership-content-wrap>div:first-child{
	width: 47%;
}
.leadership-content-wrap>div:last-child{
	width: 53%;
}
.leadership-slider.swiper{
	position: static;
}
.leadership-content{
	max-width: 68rem;
	margin-left: auto;
}
.leadership-content h2{
	font-size: 6.4rem;
	margin-bottom: 5rem;
}
.leadership-content h2 span{
	display: inline-block;
	width: 17.5rem;
	height: 1.5rem;
	background-color: var(--primary-color);
}
.leadership-content p{
	opacity: .6;
}
.lead-slide-inner img{
	width: 100%;
}
.lead-text{
	margin-top: 3rem;
}
.lead-slide-inner h4{
	font-size: 1.6rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.lead-slide-inner h3{
	font-size: 2.4rem;
}
.lead-img{
	position: relative;
}
.lead-img::after{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fbb040cc;
	opacity: 0;
	transition: .3s ease-in-out;
}
.leadership-slider .lead-slide-inner:hover .lead-img::after{
	opacity: 1;
}
.sw-nav-wrap {
    position: absolute;
    left: 11rem;
    bottom: 8rem;
    width: 26rem;
    height: 10rem;
}
.swiper-button-prev{
	background-image: url(../img/left-arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 9.5rem;
	width: 10rem;
    height: 8rem;
}
.swiper-button-next {
    background-image: url(../img/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9.5rem;
    width: 10rem;
    height: 8rem;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
/*======================
    contact Css
========================*/
.contact{
	padding: 22rem 0;
}
.contact-row{
	display: flex;
	gap: 8rem;
}
.contact-row>div{
	width: 100%;
}
.contact-content{
	display: flex;
	flex-direction: column;
	justify-content: end;
	height: 100%;
	max-width: 78rem;
}
.contact-content h2{
	font-size: 9.6rem;
}
.contact-content p {
    opacity: .6;
    max-width: 70rem;
	margin-top: 6.5rem;
	margin-bottom: 8rem;
}
.contact-shape span{
	display: block;
	height: 17.5rem;
	width: 17.5rem;
	border-left: 4rem solid var(--primary-color);
	border-bottom: 4rem solid var(--primary-color);
}
.contact-form{
	background-color: var(--primary-color);
	padding:12.5rem 10rem;
}
.contact-form form{
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.contact-form label{
	display: block;
	opacity: .6;
}
.contact-form input, .contact-form textarea{
	width: 100%;
	border: none;
	border-bottom: .1rem solid var(--black);
	background-color: transparent;
	color: var(--black);
	font-size: 1.6rem;
}
/*======================
    footer Css
========================*/
footer{
	background-color: var(--white);
}
.pre-footer{
	padding-top: 15rem;
	padding-bottom: 20rem;
	border-bottom: .1rem solid #0000001a;
}
.footer-logo .logo img{
	width: 32rem;
	margin-bottom: 8.5rem;
}
.footer-logo p{
	opacity: .6;
	margin-bottom: 2rem;
	max-width: 85rem;
}
.footer-link-wrap{
	display: flex;
}
.footer-link-wrap>div{
	width: 100%;
}
.footer-link h3{
	font-size: 2rem;
	margin-bottom: 2.5rem;
}
.footer-link a{
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1.5rem;
}
.footer-link a span{
	opacity: .6;
	transition: .3s ease-in-out;
}
.footer-link a:hover span{
	opacity: 1;
}
.footer-link a img{
	max-width: 1.8rem;
	width: 100%;
}
.footer-link.with-mb{
	margin-bottom: 7.5rem;
}
.footer-bottom{
	display: flex;
	justify-content: space-between;
	padding: 3.6rem 0;
}


/* ===================================
		inner pages
======================================*/
.inner-banner{
	height: 100rem;
	display: flex;
	align-items: end;
}
.inner-banner>div{
	width: 100%;
}
.inner-banner h1{
	font-size: 9.6rem;
	margin-bottom: 9.2rem;
}
.inner-banner h3{
	font-size: 4.8rem;
	color: var(--primary-color);
	margin-bottom: .7rem;
}
.inner-banner .banner-img img {
    width: 100%;
    height: 51rem;
    object-fit: cover;
    object-position: center center;
}
.below-banner{
	padding-top: 17rem;
}
.below-banner-content{
	display: flex;
	align-items: end;
	padding-bottom: 15rem;
}
.below-banner-content>div{
	width: 100%;
}
.below-banner-content h2{
	font-size: 9.6rem;
}
.below-banner-content h3{
	font-size: 6.4rem;
	max-width: 72rem;
}
.below-banner-content h3 .small-shape, .below-banner-content h2 .small-shape{
	display: inline-block;
	height: 1.5rem;
	width: 1.5rem;
	background-color: var(--primary-color);
}
.below-banner-content p{
	opacity: .6;
	max-width: 78rem;
	margin-left: auto;
	margin-bottom: 1rem;
}
/*======================
    service page Css
========================*/
.service-details-content{
	padding-bottom: 7.5rem;
	padding-top: 7rem;
	border-top: .3rem solid var(--black);
}
.service-details-text{
	max-width: 80rem;
}
.service-details-content h4{
	font-size: 1.6rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.service-details-content h3{
	font-size: 4.8rem;
	margin-bottom: 4.8rem;
}
.service-details-content p{
	opacity: .6;
}
.service-img{
	max-width: 78rem;
	margin-left: auto;
	position: relative;
}
.service-img img{
	width: 100%;
}
.service-overlay{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fbb040cc;
	opacity: 0;
	visibility: hidden;
}
.service-img:hover .service-overlay{
	opacity: 1;
	visibility: visible;
}
.service-img .service-overlay img{
	width: 9.5rem;
	align-self: end;
	margin-right: 3rem;
	margin-top: 3rem;
}
.service-img .service-overlay span {
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 5rem;
    margin-left: 5.5rem;
}
/*======================
    contact page Css
========================*/
.social{
	height: 51.5rem;
	display: flex;
	align-items: center;
	background-color: var(--primary-color);
}
.social-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.social-content h2{
	font-size: 6.4rem;
	margin-bottom: 4.8rem;
}
.social-content p{
	opacity: .6;
}
.social-icon{
	display: flex;
	align-items: center;
	gap: 7.5rem;
}
.social-icon a{
	display: block;
}
.social-icon a img{
	height: 5.4rem;
}
.social-icon a .youtube-icon{
	height: 4.5rem;
}
.contact-row{
	display: flex;
	align-items: end;
}
.contact-row>div{
	width: 100%;
}
.contact-img img{
	width: 78rem;
}
.contact-details-content{
	max-width: 78rem;
	margin-left: auto;
}
.contact-details-content ul{
	display: flex;
	flex-direction: column;
	gap: 8rem;
}
.contact-details-content li{
	display: flex;
	justify-content: space-between;
	padding-top: 2.3rem;
	border-top: .3rem solid var(--black);
}
.contact-details-content li a{
	display: block;
	text-align: right;
}
/*======================
    about page Css
========================*/
.our-mission{
	padding-bottom: 12rem;
}
.mission-row{
	display: flex;
	align-items: end;
}
.mission-row>div{
	width: 100%;
}
.mission-img img{
	width: 78rem;
}
.mission-text{
	max-width: 78rem;
	margin-left: auto;
}
.mission-text h2{
	font-size: 6.4rem;
	margin-bottom: 5rem;
}
.mission-text h2 .long-shape{
	display: inline-block;
	width: 17rem;
	height: 1.5rem;
	background-color: var(--primary-color);
	margin-left: 4rem;
}


.our-vision{
	padding-top: 12rem;
	padding-bottom: 20rem;
}
.vision-row{
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.vision-text{
	max-width: 70.4rem;
}
.vision-text h2{
	font-size: 6.4rem;
	margin-bottom: 7.5rem;
}
.vision-text h2 .square-shape{
	background-color: var(--primary-color);
	display: inline-block;
	width: 4rem;
	height: 4.4rem;
	margin-right: 5rem;
}
.vision-text p{
	margin-bottom: 2rem;
	opacity: .6;
}
.vision-img img {
    width: 86rem;
    margin-left: auto;
}


.our-value{
	padding: 17.5rem 0;
	background-color: var(--primary-color);
}
.our-value-content{
	display: flex;
}
.our-value-content>div{
	width: 100%;
}
.our-value-content h2{
	font-size: 9.6rem;
}
.our-value-text h3{
	font-size: 6.4rem;
}
.our-value-text h4{
	font-size: 3.2rem;
	margin-bottom: 1.5rem;
}
.our-value-text p{
	opacity: .6;
}
.our-value-text li{
	padding-top: 2.4rem;
	padding-bottom: 4rem;
	display: flex;
	gap: 4.5rem;
	border-top: .3rem solid var(--black);
}
.commitment-img{
	text-align: right;
}
.commitment-img img{
	height: 47rem;
}