* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: "Gotham", sans-serif;
}

img {
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: "Gotham";
	src: url("/fonts/gotham-light-webfont.woff2") format("woff2"), url("/fonts/gotham-light-webfont.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Gotham";
	src: url("fonts/gotham-book-webfont.woff2") format("woff2"), url("fonts/gotham-book-webfont.woff") format("woff");
	font-weight: 400;
	/* Book is usually regular */
	font-style: normal;
}

@font-face {
	font-family: "Gotham";
	src: url("fonts/gotham-bold-webfont.woff2") format("woff2"), url("fonts/gotham-bold-webfont.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

.container {
	max-width: 1210px;
	margin: 0 auto;
	width: 100%;
}

.header {
	width: 100%;
	position: relative;
	z-index: 100;
}

.header_wrapper {
	position: fixed;
	top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1180px;
	height: 70px;
	z-index: 99;
	padding: 1rem;
	background: #00000047;
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	border: 1px solid #00000005;
	border-radius: 1rem;
	box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
	transition: top .3s ease, background .3s ease, border-radius .3s ease, box-shadow .3s ease, height .3s ease;
}

.header_wrapper.fixed-header {
	top: 0;
	background: rgb(0 0 0 / 50%);
	border-radius: 0;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	backdrop-filter: saturate(180%) blur(15px);
	-webkit-backdrop-filter: saturate(180%) blur(15px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.header_logo img {
	max-height: 60px;
	display: block;
}

@media (max-width: 576px) {
	.header_logo img {
		max-width: 12rem;
	}
}

.header_nav {
	display: flex;
}

@media (max-width: 768px) {
	.header_nav {
		position: absolute;
		top: 70px;
		right: 0;
		background: rgb(255, 255, 255);
		flex-direction: column;
		width: 100%;
		padding: 2rem;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		display: flex;
		border-radius: 8px;
	}
}

.header_nav.open {
	transform: translateX(0);
}

.header_nav-list {
	display: flex;
	list-style: none;
	/* gap: 2rem; */
	align-items: center;
	margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
	.header_nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
}

.header_nav-item {
	font-size: 1.4rem;
	font-weight: 500;
	cursor: pointer;
}

.header_nav-link {
	text-decoration: none;
	color: #fff;
	transition: color 0.3s ease;
	letter-spacing: 0.05rem;
	font-weight: 300;
	padding: 1rem 2rem;
	border-radius: 0.4rem;
}

.header_nav-link:hover {
	color: #C29154;
	text-decoration: none;
}

@media (max-width: 768px) {
	.header_nav-link {
		color: #000;
	}
}

.header_nav-link.active {
	background: #c29154;
	color: #ffffff;
	padding: 1rem 2rem;
	border-radius: 0.4rem;
}

.header_hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	gap: 6px;
	width: 30px;
	height: 25px;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.header_hamburger {
		display: flex;
	}
}

.header_hamburger .line {
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 0px;
	transition: all 0.3s ease;
}

.header_hamburger.active .line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 11px);
}

.header_hamburger.active .line:nth-child(2) {
	opacity: 0;
}

.header_hamburger.active .line:nth-child(3) {
	transform: rotate(-45deg) translate(2px, -8px);
}

.hero {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}

.hero::before {
	content: '';
	/*background: transparent linear-gradient(0deg, #00000000 0%, #000000 100%);*/
	background:rgba(0,0,0,0.2);
	mix-blend-mode: hard-light;
	opacity: 0.95;
	position: absolute;
	height: 100%;
	width: 100%;
}

@media (max-width: 768px) {
	.hero {
		min-height: 60vh;
	}
}

.hero_content {
	width: 100%;
	position: relative;
}

@media (max-width: 768px) {
	.hero_content {
		padding: 0 1rem;
	}
}

.hero_title {
	font-size: 8rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.2;
	max-width: 850px;
}

@media (max-width: 768px) {
	.hero_title {
		font-size: 4rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 576px) {
	.hero_title {
		font-size: 2.5rem;
	}
}

.hero_subtitle {
	font-size: 2rem;
	margin-bottom: 4rem;
	font-weight: 300;
	text-align: left;
	max-width: 630px;
}

@media (max-width: 768px) {
	.hero_subtitle {
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}
}

.hero_subtitle .bold {
	font-weight: 600;
}

.hero_button {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1.2rem 2.2rem;
	font-size: 1.5rem;
	font-weight: 300;
	text-transform: uppercase;
	color: #fff;
	border-radius: 20px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
	background-color: #C29154;
}

@media (max-width: 768px) {
	.hero_button {
		font-size: 1.2rem;
		padding: 1rem 1.8rem;
	}
}

.hero_button img {
	width: 20px;
	height: auto;
	transition: transform 0.3s ease;
}

.about-us {
	padding: 8rem 0;
	background: #FFFAF5;
	background-image: linear-gradient(to bottom, #fffaf5 70%, white 30%);
}

.about-us .about-top {
	display: flex;
	gap: 25rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.about-us .about-top .left {
	flex: 1;
}

.about-us .about-top .left h3 {
	color: #d4a251;
	margin-bottom: 1rem;
	font-size: 1.6rem;
	font-weight: 400;
}

.about-us .about-top .left h2 {
	font-size: 2.8rem;
	line-height: 1.3;
	font-weight: 400;
	max-width: 500px;
}

.about-us .about-top .right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.about-us .about-top .right .info-block {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.about-us .about-top .right .info-block img {
	width: 40px;
	height: 40px;
}

.about-us .about-top .right .info-block h3 {
	font-weight: 800;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.about-us .about-top .right .info-block p {
	color: #000;
	font-size: 1.5rem;
	font-weight: 300;
}

.about-us .about-bottom {
	background-color: #001011;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	padding: 4rem 3rem;
	border-radius: 2rem;
	color: #fff;
}

.about-us .about-bottom .left {
	flex: 1;
}

.about-us .about-bottom .left .content {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 10rem;
}

.about-us .about-bottom .left h2 {
	font-size: 3.6rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.about-us .about-bottom .left .service_text {
	font-size: 1.4rem;
	max-width: 300px;
	line-height: 1.5;
}

.about-us .about-bottom .left p {
	font-size: 1.4rem;
	margin-bottom: 3rem;
	color: #AAAAAA;
}

.about-us .about-bottom .left h3 {
	font-size: 1.8rem;
	max-width: 350px;
	margin-bottom: 1rem;
	min-height: 4rem;
}

.about-us .about-bottom .left .general_text {
	font-size: 1.3rem;
	max-width: 300px;
	line-height: 1.3;
}

.about-us .about-bottom .left .line {
	width: 80px;
	height: 3px;
	background: #d4a251;
	margin: 3rem 0;
}

.about-us .about-bottom .left .note {
	color: #fff;
	font-style: italic;
	font-size: 2.4rem;
	max-width: 400px;
	font-weight: 300;
	margin-bottom: 0;
}

.about-us .about-bottom .right {
	flex: 1;
	display: flex;
	justify-content: center;
}

.about-us .about-bottom .right .circle-wrapper {
	position: relative;
	width: 350px;
	height: 350px;
}

.about-us .about-bottom .right .circle-wrapper .controls {
	position: absolute;
	top: -50px;
	right: -85px;
	display: flex;
	gap: 1rem;
}

.about-us .about-bottom .right .circle-wrapper .controls button {
	background: none;
	font-size: 1.2rem;
	cursor: pointer;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	border: none;
}

.about-us .about-bottom .right .circle-wrapper .circle-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-us .about-bottom .right .circle-wrapper .circle-container .circle-image {
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.about-us .about-bottom .right .circle-wrapper .circle-container .center-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.about-us .about-bottom .right .circle-wrapper .circle-container .center-logo img {
	width: 60px;
	height: 60px;
}

.about-us .about-bottom .right .circle-wrapper .services-text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 500;
	color: #AAAAAA;
}

.about-us .about-bottom .right .circle-wrapper .services-text span {
	position: absolute;
	font-size: 1.4rem;
}

.about-us .about-bottom .right .circle-wrapper .services-text span:nth-child(1) {
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.about-us .about-bottom .right .circle-wrapper .services-text span:nth-child(2) {
	right: -99px;
	top: 50%;
	transform: translateY(-50%);
}

.about-us .about-bottom .right .circle-wrapper .services-text span:nth-child(3) {
	bottom: -33px;
	left: 50%;
	transform: translateX(-50%);
}

.about-us .about-bottom .right .circle-wrapper .services-text span:nth-child(4) {
	left: -135px;
	top: 50%;
	transform: translateY(-50%);
}

.service_title,
.general_text {
	transition: opacity 0.3s ease;
}

.services-text span {
	cursor: pointer;
	transition: color 0.3s ease;
}

.services-text span.active {
	color: #fff;
	font-weight: bold;
}

.circle-container .circle_rotate {
	transition: transform 0.6s ease;
}

/* Our Project Section Style */

.our-projects {
	padding: 0 0 8rem;
}

.our-projects .heading-content {
	padding: 0 0 25px;
}

.our-projects .heading-content h6,
.contact-us .heading-content h6 {
	font-size: 16px;
	line-height: 20px;
	color: #c29154;
	padding: 0 0 4px;
	font-weight: 400;
}

.our-projects .heading-content h2,
.contact-us .heading-content h2 {
	color: #000000;
	font-weight: 600;
	font-size: 36px;
	line-height: 45px;

}

.project-container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.project-box {
	width: calc(50% - 12px);
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-o-perspective: 1000;
	perspective: 1000;
}

.flipper-box {
	-webkit-transition: 0.6s;
	-webkit-transform-style: preserve-3d;

	-moz-transition: 0.6s;
	-moz-transform-style: preserve-3d;

	-o-transition: 0.6s;
	-o-transform-style: preserve-3d;

	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
	min-height: 414px;
}

.project-box:hover .flipper-box,
.project-box.hover .flipper-box {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.project-box .flip-front {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	border: 1px solid #D1D1D1;
	box-shadow: 0px 3px 6px #00000029;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	width: 100%;
	height: 100%;
}

.project-box .flip-front::before {
	content: '';
	/*background: transparent radial-gradient(closest-side at 50% 50%, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;*/
	border-radius: 20px;
	opacity: 0.6;
	position: absolute;
	width: 100%;
	height: 100%;
}

.flip-front h2 {
	color: #ffffff;
	font-size: 50px;
	font-weight: bold;
	line-height: 64px;
	/* max-width: 314px; */
	text-align: center;
	text-transform: uppercase;
	position: relative;
}


.flip-front,
.flip-back {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.flip-back {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
	border: 1px solid #D1D1D1;
	border-radius: 20px;
	box-shadow: 0px 3px 6px #00000029;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	padding: 15px;
}

.flip-back span {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 24px;
}

.flip-back h3 {
	color: #000000;
	font-size: 30px;
	font-weight: 800;
	line-height: 36px;
	padding: 0 0 10px;
	text-align: center;
}

.flip-back p {
	color: #000000;
	font-size: 18px;
	font-weight: 300;
	line-height: 24px;
	text-align: center;
	max-width: 390px;
	margin: 0 auto;
}

/* Why Choose Us Section Style */

.why-choose-us {
	border-top: 1px solid #CCCCCC;
	padding: 8rem 0;
}

.why-choose-us .heading-content {
	padding: 0 0 50px;
}

.why-choose-us .heading-content h2 {
	font-size: 36px;
	font-weight: 800;
	line-height: 44px;
	padding: 0 0 4px;
}

.why-choose-us .heading-content p {
	color: #999999;
	font-size: 20px;
	font-weight: 300;
	line-height: 24px;
}

.choose-container {
	display: flex;
	flex-wrap: wrap;
}

.choose-container .box {
	width: 25%;
	padding: 0 50px 0 27px;
	position: relative;
	border-left: 2px solid #CCCCCC;
}

.choose-container .box::before {
	content: '';
	background-color: #cccccc;
	width: 4px;
	height: 40%;
	position: absolute;
	left: 0;
}

.choose-container .box::after {
	content: '';
	border-right: 4px solid transparent;
	border-top: 6px solid #cccccc;
	position: absolute;
	left: 0;
	top: 40%;
}

.choose-container .box span {
	display: inline-block;
	padding: 0 0 60px;
}

.choose-container .box h4 {
	font-size: 20px;
	font-weight: 800;
	line-height: 25px;
	padding: 0 0 10px;
}

.choose-container .box p {
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
}

/* Our Best Work Section Style Here */

.our-work #product__slider {
	position: relative;
}

.our-work .product__slider-main.slick-initialized .slick-slide {
	display: block;
	min-height: 750px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	padding: 60px 0;
	display: flex;
	justify-content: space-around;
	align-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.our-work .product__slider-main.slick-initialized .slick-slide::before {
	content: '';
	background: transparent linear-gradient(0deg, #00000000 0%, #000000 100%);
	opacity: 0.8;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.our-work .product__slider-main.slick-initialized .slick-slide .container {
	position: relative;
	z-index: 3;
}

.our-work .heading-content h2 {
	color: #ffffff;
	font-size: 36px;
	font-weight: 800;
	line-height: 45px;
	max-width: 325px;
	text-transform: uppercase;
	margin: 0;
}

.our-work .content-head h3 {
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 800;
	line-height: 36px;
	padding: 0 0 9px;
}

.our-work .content-head p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
	line-height: 20px;
}

.our-work .product__slider-thmb .slick-slide {
	opacity: 1;
	transition: all 0.3s ease;
}

.our-work .product__slider-thmb .slick-slide.slick-active,
.our-work .product__slider-thmb .slick-slide:hover {
	opacity: 1;
}

.our-work .product__slider-main,
.our-work .product__slider-thmb {
	display: none;
}

.our-work .product__slider-thmb.slick-initialized.slick-slider {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	z-index: 99;
	width: 100%;
	height: 90px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.our-work .product__slider-thmb.slick-initialized .slick-list {
	max-width: 380px;
	margin-left: auto;
	height: 90px;
}

.our-work .product__slider-thmb.slick-initialized .slick-list .slick-track {
	margin-left: auto;
}

.our-work .product__slider-thmb .slick-slide {
	padding: 5px;
}

.our-work .product__slider-thmb .slick-slide img {
	border: 1px solid transparent;
	height: 80px;
	border-radius: 4px;
}

.our-work .product__slider-thmb .slick-slide.slick-active img {
	box-shadow: 0px 0px 10px #FFFFFF;
	border: 1px solid #C29154;
}

.our-work .slick-arrow {
	position: absolute;
	top: 80px;
	right: 0;
}

.our-work .slick-arrow.slick-prev,
.our-work .slick-arrow.slick-next {
	background-repeat: no-repeat;
	background-position: center;
	background-color: rgb(255 255 255 / 15%);
	background-size: 50px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	font-size: 0px;
	height: 50px;
	width: 50px;
	z-index: 1;
}

.our-work .slick-arrow.slick-next {
	background-image: url(../imgs/home/arrow_right.svg);
	right: 250px;
}

.our-work .slick-arrow.slick-prev {
	background-image: url(../imgs/home/arrow_left.svg);
	right: 320px;
}

/* Contact Us Section Style Here */

.contact-us {
	padding: 8rem 0;
}

.contact-us .heading-content {
	text-align: center;
	max-width: 650px;
	margin: 0 auto;
	padding: 0 0 40px;
}

.contact-container {
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
}

.contact-container .box {
	padding: 0 70px 6px;
	width: 33.33%;
	border-right: 2px double #cccccc;
	text-align: center;
}

.contact-container .box:last-child {
	border-right: 0;
}

.contact-container .box h3 {
	color: #000000;
	font-size: 24px;
	line-height: 30px;
	padding: 0 0 10px;
}

.contact-container .box p {
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
}

/* Footer Section Style Here */

.footer {
	background-color: #204B51;
	padding: 8rem 0 12.4rem;
	position: relative;
	overflow: hidden;
}

.footer h2 {
	position: absolute;
	bottom: -8px;
}

.contact-wrap {
	display: flex;
	justify-content: space-between;
}

.contact-wrap .right-content {
	text-align: right;
}

.contact-wrap .right-content h3 {
	color: #ffffff;
	font-size: 30px;
	font-weight: 800;
	line-height: 36px;
	padding: 0 0 20px;
}

.contact-wrap .right-content p {
	color: #ffffff;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
}

/*# sourceMappingURL=style.css.map */