/* #region setup */

:root {
	--theme-primary-fade: hsl(278deg 57% 39% / 30%);
	--container-width: 1320px;
	--container-sm-width: 1024px;
	--container-lg-width: 1440px;
	--column-gutter: 15px;
	--primary-filter: brightness(0) saturate(100%) invert(77%) sepia(30%) saturate(530%) hue-rotate(121deg) brightness(86%) contrast(81%);
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--header-height: 7rem;
	/*75px;*/
	--top-header-height: 6rem;
	--logo-width: 13rem;
	/*110px;*/
	--header-spacing: 2rem;
	--section-gap: 4rem;
	--swiper-theme-color: var(--theme-primary);
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

html {
	box-sizing: border-box;
	font-size: 16px;
	scroll-padding-top: var(--header-height);
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	overflow-x: hidden;
}

body {
	color: var(--text-color);
	font-family: var(--font-family);
	line-height: 1.8;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family);
	line-height: 1.3;
	font-weight: 400;
	margin: 0;
}

input,
button,
select,
textarea {
	font: inherit;
	color: inherit;
	border: 0;
	background: none;
	outline: none;
	font-size: 14px;
}

input,
select,
textarea {
	display: block;
	width: 100%;
}

button {
	cursor: pointer;
}

img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

p,
figure {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.25s;
	transition-property: color, background-color, border-color;
}

label.error {
	color: red;
	font-size: 0.9em;
}

::selection {
	background-color: var(--theme-primary-fade);
}

@media (max-width: 760px) {
	:root {
		--header-height: 100px;
		--logo-width: 200px;
	}

	html {
		font-size: 14px;
	}
}

/* #endregion setup */

/* #region layout */

.menu-active {
	overflow: hidden;
}

.container {
	width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--column-gutter);
	max-width: 100%;
}

.container-sm {
	width: var(--container-sm-width);
}

.container-lg {
	width: var(--container-lg-width);
}

.light-bg-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: var(--theme-primary-fade);
}

.dark-bg {
	position: relative;
	background-color: var(--theme-secondary);
	color: #000;
}

.bg-img {
	position: relative;
}

.bg-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: 100% auto;
}

.bg-img>* {
	position: relative;
	z-index: 1;
}

.bg-img1 {
	position: relative;
}

.background-shade {
	background-color: var(--background-shade);
}

.bg-img1::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: 100% auto;
}

.section-gap {
	padding-block: var(--section-gap);
}

.section-subtitle {
	position: relative;
	display: inline-block;
	font-size: 0.9rem;
	line-height: 1.2rem;
	background: linear-gradient(90deg, rgb(255, 238, 226) 30.88%, rgba(255, 248, 243, 0) 110.71%);
	font-weight: 600;
	z-index: 1;
	padding: 0.5rem 1rem;
	border-radius: 5rem 0 0 5rem;
	text-transform: uppercase;
}

.section-subtitle+.section-title {
	margin-top: 0.5rem;
}

.section-desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--intro-description-color);
	position: relative;
	padding-bottom: 1rem;
	max-width: 95%;
}


.center-header .section-desc {
	margin: auto;
}

.home-faq .section-desc {
	max-width: 50%;
	margin: auto;
}

.max-60 {
	max-width: 60%;
	margin: auto;
}

.banner-swiper-nav {
	width: auto;
	background-color: #fff;
	color: #000;
	padding: 40px 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	--swiper-navigation-size: 24px;
	margin-top: 0;
	transform: translateY(-50%);
}

.banner-swiper-nav.swiper-button-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

@keyframes fakeDrop {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(10px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes hexRotate {
	0% {
		transform: rotate(30deg);
	}

	8.33% {
		transform: rotate(90deg);
	}

	16.66% {
		transform: rotate(90deg);
	}

	25% {
		transform: rotate(150deg);
	}

	33.33% {
		transform: rotate(150deg);
	}

	41.66% {
		transform: rotate(210deg);
	}

	50% {
		transform: rotate(210deg);
	}

	58.33% {
		transform: rotate(270deg);
	}

	66.66% {
		transform: rotate(270deg);
	}

	75% {
		transform: rotate(330deg);
	}

	83.33% {
		transform: rotate(330deg);
	}

	91.66% {
		transform: rotate(390deg);
	}

	100% {
		transform: rotate(390deg);
	}
}


@keyframes counterRotate {
	0% {
		transform: rotate(-30deg);
	}

	8.33% {
		transform: rotate(-90deg);
	}

	16.66% {
		transform: rotate(-90deg);
	}

	25% {
		transform: rotate(-150deg);
	}

	33.33% {
		transform: rotate(-150deg);
	}

	41.66% {
		transform: rotate(-210deg);
	}

	50% {
		transform: rotate(-210deg);
	}

	58.33% {
		transform: rotate(-270deg);
	}

	66.66% {
		transform: rotate(-270deg);
	}

	75% {
		transform: rotate(-330deg);
	}

	83.33% {
		transform: rotate(-330deg);
	}

	91.66% {
		transform: rotate(-390deg);
	}

	100% {
		transform: rotate(-390deg);
	}
}



.swiper-button-prev,
.swiper-button-next {
	border: none;
	color: #fff;
	width: 60px;
	aspect-ratio: 1 / 1.15;
	width: auto;
	clip-path: polygon(50% 0%,
			93.3% 25%,
			93.3% 75%,
			50% 100%,
			6.7% 75%,
			6.7% 25%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	/* Subtle shadow for depth */
	animation: hexRotate 6s linear infinite;
}

.swiper-button-prev {
	animation: hexRotate 6s linear infinite reverse;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	transition: transform 0.3s ease-in-out;
	animation: counterRotate 6s linear infinite;
}

.swiper-button-prev::after {
	animation: counterRotate 6s linear infinite reverse;
}

.swiper-button-next:hover {
	background: var(--theme-secondary);
}


.banner-swiper-nav.swiper-button-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.swiper-nav-btn {
	--swiper-navigation-sides-offset: 1rem;
	--swiper-navigation-size: 1.6rem;
	width: calc(var(--swiper-navigation-size) + 1rem);
	height: calc(var(--swiper-navigation-size) + 1rem);
	border-radius: 50rem;
	border: 1px solid var(--swiper-theme-color);
	background-color: rgb(255 255 255 / 70%);
}

.header-banner {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-image: url('../images/bg/banner-bg-1.webp');
	background-size: 200px;
	background-repeat: repeat;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.header-banner::before,
.header-banner::after {
	content: "";
	position: absolute;
	background-size: auto;
	background-repeat: no-repeat;
	height: 100%;
	width: 50%;
	top: 0;
	z-index: 0;
}

.header-banner .section-header {
	margin-bottom: 3rem;
	margin-top: 3rem;
	position: relative;
	z-index: 1;
}

.header-banner .section-header .section-title {
	color: var(--breadcrumbs-title-color);
	margin-bottom: 1rem;
}


.section-header-crumbs {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
	color: var(--breadcrumbs-color);
	overflow: hidden;
	position: relative;
}

.section-header-crumbs span {
	display: inline-block;
	max-width: 400px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-header-crumbs span:not(:last-child) {
	margin-right: 0.5em;
}

.section-header-crumbs span:not(:last-child)::after {
	font: var(--icon-font);
	content: "\f105";
	font-size: 1em;
	margin-left: 0.5em;
}

.site-page>.header-banner+.page-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.accordion-button::after {
	content: '\f13a';
	font: var(--icon-font);
	background-image: unset !important;
}

.cta-btn {
	display: inline-flex;
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
	line-height: 1;
	background-color: var(--btn-bg-color);
	color: var(--btn-text-color);
	position: relative;
	overflow: hidden;
	border-radius: 5rem;
	border: 1px solid var(--btn-hover-bg-color);
	font-weight: 500;
	text-transform: capitalize;
	transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease-in-out;
	z-index: 1;
}

.cta-btn::after {
	content: '';
	background-color: var(--btn-hover-bg-color);
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	border: 1px solid var(--btn-hover-bg-color);
	right: 0;
	margin: auto;
	transform: scale(0, 1);
	font-size: 0.875rem;
	font-weight: 700;
	z-index: -1;
	transform-origin: right center;
	-webkit-transform-origin: right center;
	-webkit-transform: scale(0, 1);
	-khtml-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	-khtml-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	-moz-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	-ms-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	-o-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
	z-index: -1;
}

.cta-btn:hover {
	color: var(--btn-hover-text-color);
	border-color: var(--btn-hover-bg-color);
}

.cta-btn:hover::after {
	transform-origin: left center;
	-webkit-transform-origin: left center;
	-webkit-transform: scale(1, 1) rotateZ(0deg);
	-khtml-transform: scale(1, 1) rotateZ(0deg);
	-moz-transform: scale(1, 1) rotateZ(0deg);
	-ms-transform: scale(1, 1) rotateZ(0deg);
	-o-transform: scale(1, 1) rotateZ(0deg);
	transform: scale(1, 1) rotateZ(0deg);
}

.cta-btn-alt {
	background-color: var(--theme-primary);
	border-color: var(--theme-primary);
	;
	color: #fff;
}

.cta-btn-alt:hover {
	color: var(--theme-primary);
}

.cta-btn-alt::after {
	background-color: #fff;
	border-color: #fff;
}

.theme-section .cta-btn {
	color: var(--theme-primary);
	background-color: #fff;
	border: 1px solid #fff;
}

.theme-section .cta-btn:hover {
	color: #fff;
	background-color: var(--theme-primary);
}

.theme-section .cta-btn-alt {
	background-color: var(--theme-primary);
	color: #fff;
	border: 1px solid var(--theme-primary);
}

.theme-section .cta-btn-alt:hover {
	color: var(--theme-primary);
	border-color: #fff;
}

.theme-section .cta-btn-alt::after {
	background-color: #fff;
	border-color: #fff;
}

.cta-btn-2 {
	width: 60px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	background-color: var(--btn-bg-color);
	color: var(--btn-text-color);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	transform: rotateZ(-45deg);
	transition: 0.3s ease-in-out;
}

.cta-btn-2 i {
	font-size: 1.5rem;
	line-height: 1.8rem;
}

.cta-btn-2:hover {
	background-color: var(--btn-text-color);
	color: var(--btn-bg-color);
	transform: rotateZ(0deg);
}

.application-link {
	--content-width: 7rem;
	--icon-size: 2.2rem;
	--padding: 4px;
	--btn-width: calc(var(--content-width) + var(--icon-size) + (var(--padding) * 2));
	background-color: var(--theme-primary);
	border-radius: 100px;
	display: inline-flex;
	padding: var(--padding);
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	width: var(--btn-width);
	transition: ease-in-out 0.25s box-shadow;
}

.application-link::after {
	content: "\f061";
	font: var(--icon-font);
	padding: 8px;
	width: var(--icon-size);
	height: var(--icon-size);
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	background-color: #fff;
	color: #000;
	line-height: 1;
	border-radius: 50%;
	pointer-events: none;
}

.application-link-content,
.application-link::after {
	transition: ease-in-out 0.3s transform;
}

.application-link .hover-text {
	transition: ease-in-out 0.3s color;
}

.application-link-content {
	overflow: hidden;
	width: var(--content-width);
	pointer-events: none;
}

.application-link:hover::after {
	transform: translateX(calc(var(--content-width) * -1));
}

.application-link:hover .application-link-content {
	transform: translateX(var(--icon-size));
}

.application-link .hover-text {
	white-space: nowrap;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.3rem 0.8rem;
	font-size: 0.85rem;
	color: #fff;
}

.application-link:hover {
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.pagination-wrapper {
	margin-top: 2rem;
}

.page-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.page-pagination .page-numbers {
	display: block;
	padding: 0.2rem 1rem;
	font-size: 1rem;
	border: 2px solid var(--theme-primary);
	background-color: var(--theme-primary);
	color: #fff;
	border-radius: 0.5rem;
	font-weight: 500;
}

.page-pagination .page-numbers:hover {
	background-color: #fff;
	color: var(--theme-primary);
}

.glightbox-open {
	scrollbar-gutter: auto;
}

.glightbox-container.glightbox-default {
	padding-left: 1rem;
	padding-right: 1rem;
}

.glightbox-container.glightbox-default .goverlay {
	background-color: rgba(0, 0, 0, 0.7);
}

.glightbox-container.glightbox-default .ginner-container {
	border-radius: 0.5rem;
}

.glightbox-container.glightbox-default .gslide-media {
	background-color: #fff;
}

.glightbox-container.glightbox-default .gslide-title {
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.glightbox-container.glightbox-default .gslide-desc {
	font-size: 1rem;
}

.popup-container,
.popup-slide-in .popup-container {
	padding: 2rem;
}

.popup-container .popup-close {
	top: 2.5rem;
	right: 2.5rem;
}

.popup-title {
	font-size: 1.5rem;
	font-weight: 400;
}

.hlt {
	color: var(--theme-primary);
}

.hlt-alt {
	color: #000;
	font-weight: 200;
	font-style: normal;
}

.section-header {
	margin-bottom: 1.5rem;

	position: relative;
}

.section-header.left-header {
	text-align: left;
}

.theme-section {
	background-color: #033228;
}

.theme-section .section-header .section-subtitle {
	background: linear-gradient(90deg, rgb(3, 74, 60) 3.18%, rgb(1, 50, 40) 97.67%);
	color: #fff;
}

.theme-section .section-header .section-title {
	color: #fff;
}

.vismis-box {
	background: linear-gradient(90deg, rgb(255, 238, 226) 30.88%, rgba(255, 248, 243, 0) 97.19%);
	padding: 2rem 0rem 1rem 4rem;
	border-radius: 8rem 0 0 8rem;
	margin-bottom: 2rem;
}

.vismis-box .title {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.vismis-box .description {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.list-points {
	margin: 0;
	padding: 0;
	margin-bottom: 1rem;
	flex-basis: 50%;
}

.list-points li {
	padding-left: 2rem;
	margin-bottom: 0.5rem;
	position: relative;
}

.service-icon {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 250px;
	border-radius: 50%;
	padding: 4rem;
	background-color: #003227;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.list-points li::before {
	content: "\f00c";
	font: var(--icon-font);
	position: absolute;
	left: 0;
	top: 50%;
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	overflow: hidden;
	padding: 0.33rem;
	font-size: 0.75rem;
	line-height: 1rem;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-50%);
}

.about-image.c {
	flex-basis: calc(50% - 1rem);
	aspect-ratio: 1.5 / 1;
}

.vismis-figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin: 0;
	padding: 0.75rem;
	border-radius: 50%;
	border: 2px solid var(--theme-primary);
}

.vismis-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.section-title {
	margin: 0;
	color: #000;
	font-size: 3.2rem;
	line-height: 3.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.section-title span {
	color: var(--theme-primary);
}

.dark-bg .section-subtitle,
.dark-bg .section-title {
	color: #fff;
}

.section-title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 5rem;
	height: 0.25rem;
	background-color: var(--theme-primary);
}

.center-header {
	text-align: center;
}

.header-banner .section-title::after,
.center-header .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

[data-bg-shadow] {
	position: relative;
}

[data-bg-shadow]::before {
	content: attr(data-bg-shadow);
	position: absolute;
	top: -3rem;
	left: -3rem;
	font-size: 18rem;
	opacity: 0.05;
	font-weight: 800;
	line-height: 0.5;
	white-space: nowrap;
	text-transform: uppercase;
}

.bg-cover {
	background-size: cover;
	background-position: center bottom;
}

.bg-cover>* {
	position: relative;
	z-index: 1;
}

.scale-img {
	position: relative;
}

.scale-img::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.scale-img>img,
.scale-img>iframe,
.scale-img>svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide {
	box-sizing: border-box;
}

.padded-swiper {
	padding: var(--column-gutter);
	margin-left: calc(var(--column-gutter) * -1);
	margin-right: calc(var(--column-gutter) * -1);
}

#service-pagination .swiper-pagination-bullet {
	background-color: #333;
}

#service-pagination .swiper-pagination-bullet-active {
	background-color: #fff;
}

.service-figure {
	width: 100%;
	aspect-ratio: 1.3 / 1;
	overflow: hidden;
}

.service-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card {
	border: 0;
	border-radius: 0;
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.08);
	/* border-bottom: 4px solid #ccc; */
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
}

.service-card article {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.service-card:hover {
	border-color: var(--theme-primary);
}

.service-card .service-topper {
	padding: 1rem;
	gap: 0.7rem;
}


.product-tabs {
	border-bottom: 0px;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 10px;
	padding: 10px 0;
}

.product-tabs .nav-link {
	border-radius: 10px;
	border: 1px solid #dadada;
	background-color: #fff;
	color: #333;
	margin-right: 0px;
	display: flex;
	align-items: center;
	gap: 5px;
	width: max-content;
}

.product-tabs .nav-link img {
	width: 15px;
	height: 15px;
	filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(10%) hue-rotate(209deg) brightness(93%) contrast(103%);
}

.project-details-card {
	background-color: #F2F8F9;
	border-radius: 0;
	border-color: #dadada;
}

.project-details-card .project-details li {
	padding: 1rem;
	border-bottom: 1px solid #ccc;
	gap: 0.5rem;
}

.project-details-card .project-details li:last-child {
	border-bottom: none;
}

.project-details-card .project-details li .title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3rem;
}

.project-details-card .project-details li .detail {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.3rem;
}

.product-tabs .nav-link.active {
	background-color: var(--theme-primary);
	color: #fff;
}

.product-tabs .nav-link.active img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(92%) saturate(1%) hue-rotate(235deg) brightness(103%) contrast(102%);
}


.service-card .service-icon {
	flex-basis: 20%;
	aspect-ratio: 1 / 1;
	overflow: hidden
}

.service-card .service-topper .service-header {
	flex-basis: 80%;
}

.service-card .service-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-card .service-header h3 {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 700;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	margin-bottom: 0.5rem;
}

.service-card .service-header .service-desc {
	font-size: 0.875rem;
	color: #333;
	line-height: 1.1rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	min-height: 2lh;
	text-overflow: ellipsis;
	overflow: hidden;
}

.service-card article p {
	font-size: 0.875rem;
	color: #333;
	line-height: 1.1rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.service-card .service-overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	padding: 0rem;
	height: 0;
	overflow: hidden;
	transition: 0.3s;
	transform: translateY(100%);
	transform-origin: bottom center;
	padding: 2rem;
}

.service-card:hover .service-overlay {
	height: 50%;
	transform: translateY(0);
}

.service-card:not(:hover) .service-overlay {
	transition: 0.3s ease-in-out 0.3s;
}

.service-card .service-overlay .product-name {
	color: #fff;
	transform: translateX(-150%);
	max-width: 50%;
	transition: 0.3s ease-in-out 0.3s;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
}

.service-card .service-overlay .product-name:hover {
	color: var(--theme-primary);
	transition-delay: 0;
}

.service-card .service-overlay .cta-btn-2 {
	transform: translateX(150%);
	transition: 0.3s ease-in-out 0.3s;
}

.service-card:hover .cta-btn-2,
.service-card:hover .product-name {
	transform: translateX(0);
}

/* Exit instantly on hover out */
.service-card:not(:hover) .product-name {
	transform: translateX(-150%);
	transition-delay: 0s;
}

.service-card:not(:hover) .cta-btn-2 {
	transform: translateX(150%);
	transition-delay: 0s;
}

.service-card article .cta-btn {
	padding: 0.75rem 1.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	display: inline-flex;
	color: var(--theme-primary);
	background-color: #fff;
	border-color: var(--theme-primary);
}

.service-card article .cta-btn:hover {
	color: #fff;
	border-color: var(--theme-secondary);
}

.project-learn-more {
	color: var(--theme-primary);
	background-color: #fff;
	border-color: var(--theme-primary);
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 50%);
	background-color: transparent;
}

.project-learn-more:hover {
	color: #fff;
	border-color: var(--btn-hover-bg-color);
}

@media (max-width: 760px) {
	.section-gap {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.site-page>.header-banner+.page-section {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.section-subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2.5rem;
		line-height: 2.8rem;
	}

	.section-desc {
		font-size: 1.2rem;
	}

	.banner-swiper-nav {
		--swiper-navigation-size: 20px;
		padding: 30px 10px;
	}

	.header-banner .section-header {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.glightbox-container.glightbox-default .goverlay {
		background-color: rgb(255, 255, 255);
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-description {
		background: #fff;
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-title {
		color: #000;
	}

	.header-cta-btn {
		font-size: 0.9rem;
	}

	.application-link {
		--icon-size: 2rem;
	}

	.application-link::after {
		padding: 4px;
	}
}

@media (min-width: 761px) {
	.glightbox-container.glightbox-default .goverlay {
		background-color: rgba(0, 0, 0, 0.9);
	}

	.glightbox-container.glightbox-default .gslide-description {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
		overflow: hidden;
	}

	.glightbox-container.glightbox-default .gslide-media {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
		overflow: hidden;
	}
}


.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

@media print {

	.top-header,
	.page-header,
	.page-menu,
	.header-banner,
	.page-footer {
		display: none;
	}

	.site-page>.header-banner+.page-section {
		padding: 0;
	}
}

.banner-section {
	padding: 5rem 0;
	overflow: hidden;
	/* background-color: var(--main-header-background);	 */

}

.banner-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../images/bg/banner-bg-1.webp');
	background-size: 250px;
	background-repeat: repeat;
	pointer-events: none;
	z-index: -1;
}

.banner-content .subtitle {
	width: fit-content;
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--theme-primary);
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
	background: linear-gradient(90deg, #FFF8F3 -1.7%, #FFEEE2 48.89%, #FFF8F3 102.61%);
	padding: 0.25rem 0.5rem;
}

.banner-content .title {
	font-size: 4rem;
	line-height: 4.5rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 1rem;
}

.banner-content .cta-btn {
	background-color: var(--theme-primary);
	color: #fff;
}

.banner-content .cta-btn:hover {
	color: var(--theme-primary);
}

.banner-content .cta-btn:hover::after {
	background-color: #fff;
	border-color: #fff;
}

.banner-content .description {
	font-size: 1.2rem;
	line-height: 1.8rem;
	color: #333;
	margin-bottom: 2rem;
}

.banner-figure {
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.banner-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* #endregion layout */

/* #region banner-bottom */
.banner-bottom-section {
	background-color: #151417;
	color: #B6B6B6;
	padding: 2rem 0;
}

.banner-bottom-section a {
	color: #fff;
	text-decoration: underline;
	transition: 0.3s;
}

.banner-bottom-section a:hover {
	text-decoration: none;
}

/* #ndregion */

/* #region About Us */
.about-content .description {
	color: #333;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

.about-content .philosphy {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.about-content .cta-btn {
	background-color: var(--theme-primary);
	color: #fff;
}

.about-content .cta-btn:hover {
	color: var(--theme-primary);
}

.about-content .cta-btn::after {
	background-color: #fff;
	border-color: #fff;
}

.about-content .about-section {
	position: relative;
}

.about-shape {
	position: absolute;
	top: 100px;
	right: 0;
}

.about-image {
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 1rem;
}

.about-image.a {
	aspect-ratio: 1 / 1.1;
}

.about-image.b {
	aspect-ratio: 1.355 / 1;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-image-box {
	margin-right: 200px;
	margin-bottom: 200px;
	position: relative;
}

.about-image-box figure {
	overflow: hidden;
	position: relative;
}

.about-image-box .figure-a {
	width: 100%;
	aspect-ratio: 1 / 1;
}

.about-image-box .figure-b {
	width: 100%;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: -200px;
	bottom: -200px;
	border: 15px solid #fff;
	box-shadow: 0px 4px 63px 0px rgba(15, 28, 51, 0.10);
	z-index: 2;
}

.about-image-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-image-box figure::after {
	position: absolute;
	top: 0;
	left: -100%;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	transform: skewX(-25deg);
	z-index: 1;
}

.about-image-box .figure-b::after {
	z-index: 2;
}

.about-image-box .architect {
	font-size: 36px;
	font-weight: 600;
	line-height: 36px;
	letter-spacing: -0.72px;
	color: transparent;
	-webkit-text-stroke: 1px #BABBBD;
	position: absolute;
	top: 75px;
	right: -193px;
	transform: rotate(-90deg);
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.about-image-box figure:hover::after {
	-webkit-animation: shine 1.5s;
	animation: shine 1.5s;
}

.about-image-box .experience-box {
	width: 180px;
	height: 180px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -200px;
	background-color: #fff;
	box-shadow: 0px 4px 63px 0px rgba(15, 28, 51, 0.10);
}

.experience-box .number {
	color: var(--theme-primary);
	font-size: 3.5rem;
	line-height: 3.8rem;
	font-weight: 600;
}

.experience-box .text {
	font-size: 1rem;
	font-weight: 500;
	margin-top: 2px;
}

.about-image-box .misvis-box {
	background-color: rgba(26, 25, 29, 0.04);
	color: #666;
	padding: 1.5rem 2rem 2rem;
}

.misvis-nav .swiper-pagination {
	text-align: left;
	padding-left: 2rem;
}

.misvis-nav .swiper-pagination-bullet {
	border-radius: 0;
	width: 15px;
	height: 5px;
	transition: 0.3s;
}

.misvis-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 25px;
}

.misvis-box h3 {
	color: #000;
	padding-left: 1rem;
	font-weight: 500;
	font-size: 1.1rem;
	position: relative;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.misvis-box h3::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--theme-primary);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.misvis-box p {
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 0.5rem;
}

.home-vision-mission {
	height: auto;
	/* Ensure it doesnâ€™t force extra height */
}

.home-vision-mission .swiper-wrapper {
	display: flex;
	align-items: stretch;
	/* Ensures all slides take the max height */
}

.home-vision-mission .swiper-slide {
	display: flex;
	justify-content: center;
	height: auto;
}

.misvis-box {
	width: 100%;
}

.video-figure {
	width: 100%;
	aspect-ratio: 2.4 / 1;
	overflow: hidden;
	position: relative;
}

.video-figure img,
.video-figure video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-figure .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
}

.video-figure .overlay .video-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	color: #fff;
	box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.3);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.video-figure .overlay .video-button::before,
.video-figure .overlay .video-button::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	animation: waveEffect 2.5s infinite ease-out;
	z-index: -1;
}

/* Second wave starts slightly delayed */
.video-figure .overlay .video-button::after {
	animation-delay: 0.15s;
}

@keyframes waveEffect {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	50% {
		transform: scale(2.5);
		opacity: 0;
	}

	100% {
		transform: scale(2.5);
		opacity: 0;
		/* Maintain opacity to delay restart */
	}
}

/* #ndregion */
/* #region header */
.top-header {
	background-color: #fff;
	border-bottom: 1px solid #dadada;
}

.top-header-row {
	position: relative;
	display: flex;
	height: var(--top-header-height);
	padding-left: calc(var(--logo-width) + 0rem);
	padding-right: var(--header-spacing);
	padding-block: 0.75rem;
	align-items: center;
	justify-content: flex-end;
	gap: 0 2rem;
	font-size: 1rem;
	color: var(--dark-section-text-color);
}

.top-header-row .header-logo {
	left: 0;
	top: 50%;
	height: var(--top-header-height);
	padding: 2rem 0;
}

.header-social-links {
	margin-left: auto;
}

.social-links {
	display: flex;
	gap: 0.5rem;
}

.main-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--main-header-background);
	z-index: 50;
}

@keyframes slide {
	from {
		background-position-x: 0;
	}

	to {
		background-position-x: 1920px;
	}
}

@-webkit-keyframes slide {
	from {
		background-position-x: 0;
	}

	to {
		background-position-x: 1920px;
	}
}

.scroll-down .main-header {
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

.main-header-row {
	display: flex;
	align-items: center;
	height: var(--header-height);
	transition: 0.3s;
	gap: 1rem;
	position: relative;
}

.header-logo {
	width: var(--logo-width);
	height: calc(var(--header-height));
	padding: 0.5rem 0;
	align-self: flex-end;
	transition: ease 0.3s;
	position: absolute;
	left: 0;
	bottom: 0rem;
	z-index: 1;
}

.header-logo img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: left;
}

.header-nav {
	position: relative;
	height: 100%;
	display: flex;
	gap: 0 2rem;
	justify-content: flex-end;
	align-items: center;
	flex: auto;
	padding-left: var(--logo-width);
}

.header-nav-list {
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 500;
	gap: 0.25rem;
	font-size: 1rem;
	color: var(--theme-primary);
}

.header-nav-list>li {
	transform-origin: right;
	display: flex;
	align-items: center;
	padding: 0.5rem 0;
}

.header-nav-list>li>a {
	display: grid;
	place-content: center;
	color: var(--nav-link-color);
	font-style: normal;
	font-weight: 500;
	font-size: 0.9rem;
	line-height: 1.2rem;
	position: relative;
	text-transform: uppercase;
	padding: 0.44rem 1.33rem;
	border-radius: 5rem;
}

.header-nav-list>.header-nav-dropdown>a {
	padding: 0.44rem 1.5rem 0.44rem 1rem;
}

.header-nav-list>li:hover>a::before {
	transform: scaleX(1);
	transform-origin: right;
}

.header-nav-list>li:not(:hover)>a::before {
	transform: scaleX(0);
	transform-origin: left;
}

.sub-nav-active {
	color: var(--nav-link-hover-color) !important;
}

.header-nav-dropdown-list .sub-nav-active a {
	color: var(--nav-link-hover-color);
}

.nav-active>a,
.header-nav-list>li:hover>a {
	background-color: var(--nav-link-hover-color) !important;
	color: #fff !important;
}

.nav-active>a {
	font-weight: 500;
}

.header-nav-dropdown {
	position: relative;
}

.header-nav-dropdown>a {
	padding-right: 1.5em;
}

.header-nav-dropdown>a::after {
	content: "\f107";
	font: var(--icon-font-awesome);
	line-height: 1;
	font-size: 0.875rem;
	position: absolute;
	right: 0.45rem;
	top: 50%;
	transform: translate(0, -50%);
}

.header-nav-dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	width: 100%;
	min-width: 20rem;
	opacity: 0;
	pointer-events: none;
	transition: 0.25s ease-in-out;
	background-color: #fff;
	box-shadow: 0 2rem 2.5rem rgba(137, 139, 142, 0.15);
	transform: scaleY(0);
	transform-origin: top left;
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
}

.header-nav-dropdown-list li {
	border-bottom: 1px solid #dadada;
}

.header-nav-dropdown-list li:last-child {
	border-bottom: none;
}

.header-nav-dropdown-list li a {
	padding: 0.7rem 1rem;
	font-weight: 400;
	color: #333;
	transition: 0.3s;
}




.header-nav-dropdown-list a {
	display: block;
	color: #000;
	transition: ease 0.5s;
	line-height: 1.2;
	font-style: normal;
}

.header-nav-dropdown-list li:hover>a {
	color: var(--theme-primary);
}

.header-nav-dropdown:hover>.header-nav-dropdown-list {
	opacity: 1;
	pointer-events: auto;
	transform: scaleY(1);
	/* transition: max-height 0.3s ease-in-out, transform 0.25s ease-in-out, opacity 0.3s; */
}

.header-nav-contact {
	display: grid;
	place-content: center;
	height: 100%;
}

.header-contact-item {
	padding: 0;
	line-height: 2;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--nav-link-color);
	font-size: 1.1rem;
	margin-right: 1rem;
}

.header-contact-item i {
	font-size: 1.8rem;
	margin-right: 10px;
}

.header-contact-item:hover {
	color: var(--nav-link-hover-color);
}

.watermark {
	display: none;
	position: absolute;
	top: 25%;
	left: 1%;
	text-transform: uppercase;
	width: 100%;
	color: #f3f7fa80;
	font-size: 30rem;
	font-weight: 700;
	line-height: .8;
	z-index: -1;
	overflow: hidden;
	letter-spacing: -4.3rem;
}

.home-faq {
	position: relative;
}

.home-faq .watermark {
	top: unset;
	bottom: 0;
	z-index: 0;
	left: 0;
}

.header-banner .watermark {
	color: #e7f3f5;
	top: 0;
	z-index: 0;
	font-size: 17rem;
}

.home-about {
	position: relative;
	overflow: hidden;
}

.home-about-desc {
	margin-bottom: 2rem;
	font-size: 1rem;
	line-height: 1.3rem;
	font-style: 400;
	color: #4D5054;
}

.havesubmenu {
	position: relative;
}

.havesubmenu::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	right: 10px;
	top: 50%;
	background: rgba(0, 0, 0, 0.5);
	/* Semi-transparent background */
	transform: translate(0, -50%) rotateZ(45deg);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
	/* Corrected diagonal clip */
}

.havesubmenu:hover::after {
	background: #fff;
}

.havesubmenu ul {
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	background-color: #fff;
	transition: 0.3s;
	transform: scaleX(0);
	transform-origin: left;
	z-index: 2;
}

.havesubmenu:hover ul {
	transform: scaleX(1);
}

@media (min-width: 1200px) {

	.header-resp-action,
	.header-resp-nav {
		display: none;
	}

	.header-nav-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: var(--text-color);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 30rem;
		gap: 10px;
		position: relative;
	}

	.top-header-row .header-nav-item::after {
		content: '';
		position: absolute;
		top: 0;
		right: -1rem;
		/* halg of gap  */
		width: 1px solid #dadada;
		height: 100%;
	}

	.header-nav-item .icon i {
		font-size: 1.875rem;
		color: var(--theme-primary);
	}

	.header-nav-item .context {
		display: flex;
		flex-direction: column;
	}

	.header-nav-item .context .idea {
		color: #666;
		font-size: 0.9375rem;
	}

	.header-nav-item .context .header-nav-item-text {
		color: #1a191d;
		font-size: 1rem;
		line-height: 1.2rem;
		font-weight: 500;
	}

	.scroll-down .header-logo {
		height: calc(var(--header-height));
		/* padding: 1rem 2rem; */
	}
}

@media (max-width: 1199px) {
	.header-nav-list>li>a {
		display: inline;
	}

	.header-nav-dropdown-list {
		position: relative;
		top: 0;
		left: 1rem;
		max-width: calc(95% - 2rem);
		background: transparent;
		box-shadow: none;
		max-height: 0;
	}

	.header-nav-dropdown-list li {
		border: none;
		position: relative;
	}

	.header-nav-dropdown-list li::after {
		content: '-';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.cursor-dot {
		display: none;
	}

	.header-nav-copy img {
		width: 30px;
		height: 30px;
	}

	.header-nav-contact,
	.top-header,
	.main-header-row>.social-links {
		display: none;
	}

	.home-about-desc {
		font-size: 1.1rem !important;
	}

	.section-header-crumbs {
		margin-top: 0 !important;
	}

	.social-links a {
		color: #fff !important;
	}

	.main-header-row {
		height: var(--header-height);
		padding-left: 0;
		gap: 0;
	}

	#testimonial-nav,
	#blog-nav,
	#career-nav,
	#gallery-nav {
		display: none;
	}

	.main-header-row .header-logo {
		padding-block: 1rem;
		width: var(--logo-width);
		height: 100%;
		position: static;
		padding-left: 0.5rem;
	}

	.header-resp-action {
		flex: auto;
	}

	.resp-menu-btn {
		font-size: 2rem;
		display: block;
		text-align: center;
		width: 100%;
	}

	.header-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		background-color: #fff;
		color: #000;
		padding-top: 15px;
		overflow: auto;
		transform: translateX(100%);
		transition: ease 0.3s transform;
		z-index: -1;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		border-top: 1px solid #dadada;
		padding-left: 15px;
	}

	.header-nav-list {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		gap: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.header-nav-list>li {
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
	}

	.header-nav-list>.header-nav-dropdown>a,
	.header-nav-list>li>a {
		padding: 0.5rem 1.5rem;
	}

	.header-resp-nav {
		padding-left: 1rem;
	}

	.header-menu-open-icon,
	.menu-active .header-menu-close-icon {
		display: block;
		text-align: end;
	}

	.header-menu-close-icon,
	.menu-active .header-menu-open-icon {
		display: none;
	}

	.menu-active .main-header {
		background-color: #fff;
		color: #000;
	}

	.menu-active .header-nav {
		transform: translateX(0);
		max-height: calc(100dvh - var(--header-height));
		justify-content: flex-start;
	}

	.header-nav-dropdown:hover .header-nav-dropdown-list {
		box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
		transform: translateY(0);
		opacity: 1;
		max-height: 100%;
	}

	.header-resp-nav {
		display: grid;
		gap: 1rem;
	}

	.header-resp-nav .social-links {
		margin-top: 1rem;
	}

	.header-contact-item {
		margin-left: auto;
	}

	.header-nav-contact {
		height: auto;
		padding: 0;
		justify-content: start;
		border: 0;
	}
}

/* #endregion header */

/* #region banner */

.home-banner-slide {
	--title-bg: var(--theme-primary);
	--button-bg: var(--theme-secondary);
	--button-fg: #fff;
}

.home-banner-slide::before {
	padding-top: 45%;
	background-color: var(--theme-primary);
}

.home-banner-slide img {
	opacity: 1;
}

.home-banner-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.home-banner-wrapper>.container {
	height: 100%;
	display: flex;
	align-items: center;
}

.home-banner-content {
	max-width: 650px;
	width: 100%;
	position: relative;
	color: #fff;
}

.home-banner-content::before {
	position: absolute;
	inset: 0;
	background-color: var(--title-bg);
	z-index: -1;
	opacity: 0.5;
}

.home-banner-title {
	font-size: 4rem;
	font-weight: 500;
	line-height: 64px;
	margin-bottom: 1rem;
}

.home-banner-subtitle {
	margin-bottom: 1rem;
	font-size: 2.2rem;
	line-height: 2.5rem;
	font-weight: 700;
	letter-spacing: 2px;
}

.home-banner-text {
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 1rem;
	padding-top: 1.2rem;
	position: relative;
}

.home-banner-link {
	background-color: var(--btn-bg-color);
	border: 1px solid var(--btn-bg-color);
	color: var(--button-fg);
	display: inline-block;
	padding: 0.5rem 3rem;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1rem;
	line-height: 2;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: ease 0.5s;
	vertical-align: middle;
	border-radius: 50px;
}

.home-banner-link::before {
	content: "";
	background-color: var(--theme-primary);
	position: absolute;
	inset: 0;
	width: 150%;
	left: -25%;
	transform-origin: center;
	transform: skewX(-35deg) translateX(-150%);
	transition: ease 0.5s;
	z-index: -1;
}

.home-banner-link:hover {
	color: #fff;
	border-color: var(--theme-primary);
}

.home-banner-link:hover::before {
	transform: skewX(-35deg) translateX(0%);
}

@media (max-width: 768px) {
	.home-banner-slide::before {
		padding-top: 75%;
	}

	.home-banner-title {
		font-size: 1.5rem;
	}

	.home-banner-text {
		font-size: 1.2rem;
		margin-bottom: 0;
	}

	.home-banner-link {
		font-size: 0.85rem;
		padding: 0.3rem 2rem;
	}
}

/* #endregion banner */

/* #region about */

.home-about {
	position: relative;
}

.home-about-bg-img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.home-about-row {
	display: flex;
	gap: 2rem 3rem;
}

.home-about-col {
	flex: 1 1 100%;
	color: var(--theme-primary);
}

.home-about .section-title {
	font-size: 3.5rem;
	line-height: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.home-about-desc strong,
.home-about-desc b {
	font-weight: 400;
}

.about-static-box ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.about-static-box ul li {
	width: calc(25% - 1rem);
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.about-static-box ul li i {
	color: var(--theme-primary);
	font-size: 1.3rem;
	margin-right: 1rem;
}

.about-static-box {
	border: 1px solid #ccc;
	padding: 1rem;
	margin-bottom: 10px;
}

.hash-me {
	color: var(--theme-primary);
	margin: 1rem 0;
	font-weight: 700;
}

.home-about-desc p {
	margin-bottom: 1rem;
}

.home-about-img {
	position: relative;
	margin: 0 5rem;
}

.home-about-img figure {
	width: 100%;
	aspect-ratio: 1 / 1.3;
	overflow: hidden;
	border-radius: 50rem 50rem 0 0;
}

.home-about-img figure::before {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.home-about-img figure:hover::before {
	height: 250%;
	transition: all 600ms linear !important;
	background-color: transparent;
}

.home-about-img figure::after {
	content: '';
	background-image: url(../images/about/about-bg-dot-shape.svg);
	background-size: contain;
	width: 150px;
	height: 150px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.home-about-img figure img {
	height: 100%;
	width: 100%;
	object-fit: cover;

}

.home-about-bg img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: none;
	z-index: 0;
}

.home-about-bg-1 {
	bottom: 0;
	left: 0;
	animation: about-animate-1 4s ease-in-out 0s infinite alternate;
}

.home-about-bg-2 {
	top: 0;
	left: -6rem;
}

.home-about-bg-3 {
	left: 0;
	top: 26%;
}

.image-over-box {
	width: 200px;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	position: absolute;
	right: 0;
	transform: translateX(50%);
	bottom: 30px;
	border-radius: 1000px 1000px 0 0;
	overflow: hidden;
	padding: 10px;
	z-index: 10;
}

.image-over-box .inside-box {
	width: 100%;
	height: 100%;
	background-color: var(--theme-primary);
	color: #fff;
	text-align: center;
	border-radius: 1000px 1000px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.image-over-box .inside-box::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 100%;
	left: 0;
	background-color: var(--theme-secondary);
	transition: 0.3s;
	z-index: 0;
}

.image-over-box .inside-box:hover::after {
	top: 0;
}

.image-over-box .inside-box h3 {
	font-size: 2.5rem;
	font-weight: 700;
	z-index: 10;
}

.image-over-box .inside-box div {
	z-index: 10;
}

.tech-box figure {
	width: 30%;
	margin: auto;
	aspect-ratio: 1 / 1;
}

.tech-box figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tech-box article {
	padding-top: 20px;
}

.tech-box .type_title {
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5rem;
}

@keyframes about-animate-1 {
	0% {
		transform: translateY(2rem);
	}

	50% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(2rem);
	}
}

@media (max-width: 768px) {
	.home-about-row {
		flex-direction: column;
	}

	.home-about-img {
		height: auto;
		padding-inline: 1rem;
	}

	.home-about-bg-img {
		width: 75%;
	}

	.home-about-bg img {
		width: 3rem;
	}
}

/* #endregion about */

/* #region services */
#services {
	border: 1px solid #04493B;
	/* overflow: hidden; */
	border-radius: 1rem;
}

.service-box {
	position: relative;
	transition: transform 0.5s ease-in-out, background 0.3s ease-in-out;
	border-right: 1px solid #04493B;
	border-bottom: 1px solid #04493B;
}

.service-box::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0.75rem;
	aspect-ratio: 1 / 1;
	transform: translate(50%, 50%);
	overflow: hidden;
	background-color: var(--theme-primary);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: 50%;
	z-index: 1;
}

.service-box:hover {
	background-color: #053C30;
}

.service-box:hover::after {
	opacity: 1;
}

.service-box:hover .icon {
	background-color: #033228;
}

#services .col:first-child .service-box {
	border-radius: 1rem 0 0 0;
}

.service-box button {
	color: #fff;
	font-weight: 600;
}

.services-swiper .is-center .service-box {
	transform: scale(1);
}

.service-box figure {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	position: relative;
	transition: 0.3s ease-in-out;
}

.no-border-bottom {
	border-bottom: none;
}

.no-border-right {
	border-right: none;
}

.service-box figure::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	transition: 0.3s;
	background-color: rgba(0, 0, 0, 0.25);
}

.service-box:hover figure::after {
	height: 100%;
}

.service-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-box article {
	padding: 1.5rem;
	position: relative;
	border-radius: 0.5rem;
	transition: 0.3s ease-in-out;
}

.service-box article .icon {
	width: 80px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	padding: 1rem;
	background-color: rgb(5, 59, 48);
	overflow-wrap: hidden;
	color: var(--theme-primary);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: box-shadow 0.3 ease-in-out;
	margin-bottom: 1.5rem;
}

.service-box article .icon::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateY(100%);
	transition: 0.3s ease-in-out;
	background-color: var(--theme-primary);
	z-index: -1;
}

.service-box article .icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
}

.service-box article .service-name {
	font-size: 1.2rem;
	line-height: 1.5rem;
	color: var(--theme-primary);
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	min-height: 2lh;
	-webkit-box-orient: vertical;
	margin-bottom: 0.5rem;
	font-weight: 400;
	position: relative;
	transition: color 0.3s ease-in-out;
}

.service-box article .service-desc {
	font-size: 1rem;
	line-height: 1.3rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	min-height: 3lh;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	overflow: hidden;
	color: #C4C4C4;
}

.home-services {
	position: relative;
}

.home-services-bg img {
	position: absolute;
	z-index: 0;
}

.home-services-bg-1 {
	top: 0;
	right: 0;
}

.home-services-bg-2 {
	bottom: 0;
	left: 0;
}

.home-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.home-services-card {
	position: relative;
	display: flex;
	flex-direction: column;

	overflow: hidden;
}

.home-services-img {
	width: 100%;
}

.home-services-img::before {
	padding-top: 60%;
}

.home-services-img a {
	height: 100%;
}

.home-services-img a img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.home-services-content {
	flex: auto;
}

.home-serive-anchor::before {
	content: unset;
}

.home-serive-anchor>a {
	display: block;
}

.home-services-content:hover .home-services-title a {
	color: var(--theme-primary);
}

.home-services-header {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
	align-items: flex-start;
	position: relative;
}

.home-services-header .home-services-img {
	flex: 0 0 15rem;
	border-radius: 10px;
	overflow: hidden;
}

.home-services-header .home-services-img::before {
	padding-top: 100%;
}

.home-services-img img {
	transition: 0.3s ease-in-out;
}

.home-services-header:hover .home-services-img img {
	transform: scale(1.1);
}

.home-services-title {
	width: 100%;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-transform: capitalize;
	font-size: 1.25rem;
	line-height: 1.5rem;
}

.home-services-card .home-services-body {
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	padding: 0.5rem 0;
}

.home-services-learn {
	padding: 0 2rem 0;
	font-weight: 500;
	text-transform: capitalize;
	transition: 0.3s;
	color: var(--link-color);
}

.home-services-learn:hover {
	color: var(--btn-bg-color);
	text-decoration: underline;
	text-decoration-color: var(--btn-bg-color);
	color: var(--link-hover-color);
}

.home-services-desc {
	margin-bottom: 1rem;
	line-height: 1.3;
	color: #474749;
	padding: 0;
	font-style: normal;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.home-services-cta {
	color: #fff;
	background-color: var(--theme-secondary);
	border: 1px solid var(--theme-secondary);
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0 2rem 1rem;
}

.home-services-cta:hover {
	border: 1px solid var(--theme-secondary);
	color: var(--theme-secondary);
	background-color: #fff;
}

.home-services-cta::after {
	content: "\f101";
	font: var(--icon-font);
	font-size: 1em;
	margin-left: 0.2rem;
}

.service figure {
	max-width: 60px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.service-swiper .swiper-wrapper {
	padding: 2rem 0;
}

@media (max-width: 768px) {
	.home-services-title {
		font-size: 1.2rem;
	}
}

/* #endregion services */

/* #region Industry */

.related-industries .container {
	overflow-x: clip;
}

.industry-card {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	/* box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.08); */
	border-radius: 0rem;
	border: 1px solid #dadada;
	overflow: hidden;
}

.industry-card figure {
	width: 100%;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
}

.industry-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.industry-card figure:hover img {
	transform: scale(1.05);
}

.industry-card article {
	padding: 1rem;
}

.industry-card article .title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	line-clamp: 2;
	min-height: 2lh;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 500;
}

.industry-card article .cta-btn {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
	line-height: 1.1rem;
	align-items: center;
}

/* #endregion */

/* #region gallery */

.gallery-figure {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	position: relative;
}

.album-figure {
	aspect-ratio: 1.25 / 1;
}

.gallery-figure img,
.gallery-figure iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-figure figcaption {
	position: absolute;
	width: 100%;
	padding: 0.5rem 1rem;
	text-align: center;
	bottom: 0;
	left: 0;
	background-color: #04493b8a;
	color: #fff;
}

.home-gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}


.home-gallery-grid figure {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	margin: 0;
	position: relative;
}

.home-gallery-grid figure figcaption {
	color: #fff;
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 10px);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2rem;
	min-height: 2lh;
}

.home-gallery-item:hover img {
	transform: scale(1.1);
}

.home-gallery-item .overlay {
	background-color: rgba(0, 0, 0, 0.3);
}

.home-gallery-grid figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.home-gallery-grid figure::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.home-gallery-item:hover figure::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.home-gallery-item {
	position: relative;
	overflow: hidden;
}

.home-gallery-body {
	position: absolute;
	inset: 0;
	padding: 2rem;
	color: #fff;
	display: grid;
	justify-items: center;
	place-content: center;
	text-align: center;
	gap: 1rem;
	z-index: 2;
	transform: translateY(100%);
	opacity: 0;
}

.home-gallery-body::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--theme-primary);
	z-index: -1;
	opacity: 0.9;
	transform: translateY(-200%);
}

.home-gallery-body,
.home-gallery-body::before {
	transition: ease 0.3s;
}

.home-gallery-item:hover .home-gallery-body {
	transform: translateY(0);
	opacity: 1;
}

.home-gallery-item:hover .home-gallery-body::before {
	transform: translateY(0);
}

.home-gallery-caption {
	font-size: 1.2rem;
	font-weight: 500;
}

.home-gallery-caption:hover {
	color: var(--theme-secondary);
	transition: ease 0.3s;
}

.home-gallery-body::after {
	content: "\f124";
	font: var(--icon-font);
	background-color: var(--theme-secondary);
	color: #fff;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.6rem;
	display: grid;
	place-content: center;
	border-radius: 5rem;
	transform: rotate(45deg);
}

@media (max-width: 768px) {}

/* #endregion gallery */

/* #region why-us */
.health {
	position: relative;
}

.health-swiper .swiper-slide>div {
	padding: 2rem 5rem;
}

.health-figure {
	max-width: 60px;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.health-article h3 {
	font-size: 1.3rem;
	line-height: 1.6rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.health-article .description {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	color: #f6f6f6;
	max-width: 75%;
}

.max-70 {
	max-width: 70%;
}

.health-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-whyus {
	/* background-image: url('../images/bg/numbers-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat; */
	background-color: #003227;
	padding: 2.5rem 0;
}

.home-whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
	gap: 2rem;
	color: var(--theme-primary);
}

.home-whyus-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	border-right: 1px solid #ccc;
}

.whyus-figure {
	width: 100%;
	height: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	position: relative;
}

.whyus-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-whyus-card:last-child {
	border-right: none;
}

.home-whyus-img {
	top: 0;
	left: 50%;
	z-index: 1;
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	border-radius: 50%;
}

.home-whyus-img img {
	width: 100%;
	height: 100%;
}

.home-whyus-content {
	position: relative;
	z-index: 0;
	flex: auto;
	text-align: center;
}

.why-us article {
	padding-left: 5rem;
	margin-top: 2rem;
}

.home-whyus-title {
	font-size: 3rem;
	line-height: 3.5rem;
	color: var(--theme-primary);
	/* color: transparent;
	-webkit-text-stroke: 1px #6A6C70; */
	font-weight: 700;
	margin-bottom: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-whyus-desc {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
}

#sustainability-nav .swiper-button-prev,
#sustainability-nav .swiper-button-next {
	width: 60px;
	height: 60px;
	padding: 1rem;
}

#sustainability-nav .swiper-button-prev::after,
#sustainability-nav .swiper-button-next::after {
	font-size: 0.7rem;
	font-weight: 900;
	transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;
}

#sustainability-nav .swiper-button-prev:hover::after {
	animation: reversemovingoutornot 0.4s ease-in-out;
}

#sustainability-nav .swiper-button-next:hover::after {
	animation: movingoutornot 0.4s ease-in-out;
}

@keyframes movingoutornot {
	0% {
		transform: translateX(0);
		opacity: 1;
	}

	50% {
		transform: translateX(10px);
		opacity: 0;
	}

	51% {
		transform: translateX(-10px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes reversemovingoutornot {
	0% {
		transform: translateX(0);
		opacity: 1;
	}

	50% {
		transform: translateX(-10px);
		opacity: 0;
	}

	51% {
		transform: translateX(10px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

#sustainability-nav .swiper-button-next {
	left: 50%;
	right: unset;
	top: unset;
	bottom: 0;
	border: 1px solid #fff;
	background-color: #fff;
	color: var(--theme-primary);
}

#sustainability-nav .swiper-button-prev {
	right: 50%;
	top: unset;
	left: unset;
	bottom: 0;
	border: 1px solid var(--theme-primary);
	background-color: var(--theme-primary);
	color: #fff;
}

.heath-section {
	background-color: var(--theme-secondary);
	color: #fff;
}

.health-top-article {
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.health article .health-padding {
	padding: 3rem 0 3rem 5rem;
	height: 100%;
	display: flex;
	align-items: center;
}

.ox-container {
	max-width: 70%;
	margin: auto;
}

.ox-container .blue-ox {
	background-color: var(--theme-primary);
	border-radius: 6rem;
	min-height: 500px;
	position: relative;
}

.ox-container .blue-ox figure {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background-color: #fff;
	padding: 5px;
}

.ox-container .blue-ox figure::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.ox-container .blue-ox figure:hover::after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.ox-container .blue-ox figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50rem 50rem 0 0;
}

.ox-container .blue-ox .fig-a {
	max-width: 65%;
	position: absolute;
	right: -10%;
	top: -10%;
	border-radius: 50rem 50rem 0 0;
	z-index: 2;
}

.ox-container .blue-ox .fig-b {
	max-width: 65%;
	position: absolute;
	left: 0%;
	bottom: -10%;
	border-radius: 50rem 50rem 0 0;
}

@media (max-width: 768px) {}

/* #endregion why-us */

/* #region delivery */

.home-delivery-grid {
	display: grid;
	grid-template-columns: 2.5fr 4fr 3.5fr;
	align-items: center;
}

.home-delivery-col-1 img {
	margin-inline: auto;
}

.home-delivery-col-2 {
	padding: var(--section-gap) 2rem;
}

.home-delivery-desc {
	margin-bottom: 3rem;
}

.home-delivery-col-3 img {
	margin-inline: auto;
}

@media (max-width: 768px) {}

/* #endregion delivery */

/* #region clients */
.home-clients {
	position: relative;
	overflow: hidden;
}

.home-clients .client-shape {
	position: absolute;
	top: 0;
	left: 0;
}

.home-clients-row {
	display: flex;
	gap: 2rem;
}

.home-client-img::before {
	padding-top: 55%;
}

.home-client-img img {
	padding: 0.5rem 1rem;
	object-fit: contain;
}

.client-title {
	width: calc(20% - 1rem);
}

.client-title h5 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}

.clients-images {
	width: calc(80% - 1rem);
}

.clients-swiper .swiper-wrapper .swiper-slide {
	padding: 2px;
}


.clients-swiper figure {
	width: 100%;
	aspect-ratio: 2 / 1;
	margin: 0;
	border: 1px solid #dadada;
	overflow: hidden;
	position: relative;
	transition: 0.3s ease-in-out;
	padding: 1px;
}

.clients-swiper figure .semi-figure {
	padding: 0.5rem;
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.clients-swiper figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	transform: scale(0.9);
}

.clients-swiper figure::before,
.clients-swiper figure::after {
	content: '';
	position: absolute;
	transition: 0.3s ease-in-out;
	background-color: var(--theme-primary);
	z-index: 0;
	/* Make sure the lines are the right color */
}

/* Top-left corner line (before) */
.clients-swiper figure::before {
	left: 0;
	top: 0;
	width: 2px;
	/* Small width initially */
	height: 2px;
	/* Small height initially */
	border-left: 2px solid transparent;
	border-top: 2px solid transparent;
	opacity: 0;
}

/* Bottom-right corner line (after) */
.clients-swiper figure::after {
	right: 0;
	bottom: 0;
	width: 2px;
	/* Small width initially */
	height: 2px;
	/* Small height initially */
	border-right: 2px solid transparent;
	border-bottom: 2px solid transparent;
	opacity: 0;
	transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out;
}

/* Hover Effect: Scale the borders to full size */
.clients-swiper figure:hover {
	box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.08);
}

.clients-swiper figure:hover img {
	transform: scale(1);
}

/* On hover, make the borders grow to full size */
.clients-swiper figure:hover::before {
	opacity: 1;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	border-left: 2px solid var(--theme-primary);
	border-top: 2px solid var(--theme-primary);
}

.clients-swiper figure:hover::after {
	opacity: 1;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	border-right: 2px solid var(--theme-primary);
	border-bottom: 2px solid var(--theme-primary);
}

/* #endregion clients */

/* #region testimonials */
.white-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
}

.testimonial-number-box {
	background-color: var(--theme-primary);
	color: #fff;
	justify-content: center;
	height: 100%;
	text-align: center;
	padding: 3rem 0;
	background-image: url('../images/circle_overlay.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.testimonial-number-box .icon i {
	font-size: 5rem;
}

.testimonial-number-box .number {
	font-size: 2.5rem;
	font-weight: 700;
}

.testimonial-number-box .text {
	font-size: 1rem;
	line-height: 1.3rem;
	text-transform: uppercase;
	font-weight: 700;
}

.testimonial-title {
	border-left: 1px solid #dadada;
	border-right: 1px solid #dadada;
	padding: 0 2rem;
	white-space: nowrap;
	text-transform: uppercase;
	color: #000;
	font-size: 0.9rem;
	font-weight: 700;
}

.testimonial-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	filter: var(--white-filter);
	opacity: 0.1;
	object-fit: cover;
	object-position: bottom right;
}

.home-testimonial-wrapper {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.home-testimonial-side {
	width: 50%;
	border-radius: 1rem;
	overflow: hidden;
}

.home-testimonial-side::before {
	padding-top: 66%;
}

.home-testimonials {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.home-testimonials .left-globe {
	position: absolute;
	top: 106px;
	left: 0px;
	opacity: 0.075;
	z-index: -1;
	animation-name: float-x;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.home-testimonials .right-globe {
	position: absolute;
	top: 106px;
	right: 0px;
	opacity: 0.075;
	z-index: -1;
	animation-name: float-y;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.home-testimonials .center-globe {
	position: absolute;
	top: 160px;
	left: 650px;
	opacity: 0.5;
	z-index: -1;
	-webkit-animation: bounce 5s ease-in-out 0s infinite alternate;
	animation: bounce 5s ease-in-out 0s infinite alternate;
}

@keyframes float-x {
	0% {
		transform: translateX(-30px);
	}

	50% {
		transform: translateX(-10px);
	}

	100% {
		transform: translateX(-30px);
	}
}

@keyframes float-y {
	0% {
		transform: translateY(-30px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(-30px);
	}
}

@keyframes bounce {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

.home-testimonials-swiper {
	z-index: 1;
	position: relative;
	padding: 0;
	height: 100%;
	padding-bottom: 5rem;
}

.home-testimonial-wrapper .home-testimonials-swiper {
	width: 50%;
	margin-right: 0;
}

.home-testimonials-swiper .testimonials-pagination {
	text-align: center;
}

.home-testimonials-swiper .testimonials-pagination .swiper-pagination-bullet {
	position: relative;
	margin: 0 4px;
	background-color: var(--theme-primary);
	opacity: 1;
}

.home-testimonials-swiper .testimonials-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	width: 16px;
	height: 16px;
	border: 1px solid var(--theme-primary);
	border-radius: 50%;
}

.home-testimonial-slide {
	height: auto;
	position: relative;
}

.home-testimonial-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	position: relative;
	border-radius: 0.5rem;
	overflow: visible;
	height: 100%;
	padding: 2rem 2rem 1rem;
	border-radius: 0.5rem;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0 rgb(193 193 193 / 20%);
	transition: 0.3s ease-in-out;
	border-radius: 15rem 0 0 15rem;
}

.home-testimonial-card figure {
	flex-basis: 25%;
	max-width: 200px;
	margin: auto;
	aspect-ratio: 2.5 / 1;
	overflow: hidden;
	position: relative;
}

.home-testimonial-card figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-testimonial-card .home-testimonial-content {
	flex-grow: 0;
	flex-basis: 75%;
	position: relative;
	z-index: 1;
	gap: 5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#testimonial-nav .swiper-button-prev,
#testimonial-nav .swiper-button-next {
	clip-path: none;
	width: 60px !important;
	height: auto !important;
	aspect-ratio: 2 / 1;
	padding: 1rem;
	color: #000 !important;
	background-color: #fff !important;
	transform: none;
	animation: none;
	bottom: -80px !important;
	top: unset !important;
}

#testimonial-nav .swiper-button-prev:hover::after,
#testimonial-nav .swiper-button-next:hover::after {
	color: var(--theme-primary);
}

#testimonial-nav .swiper-button-prev::after,
#testimonial-nav .swiper-button-next::after {
	transform: none;
	animation: none;
}

#testimonial-nav .swiper-button-prev {
	border-radius: 5rem 0 0 5rem;
}

#testimonial-nav .swiper-button-next {
	border-radius: 0 5rem 5rem 0;
}

.home-testimonial-card .home-testimonial-quote {
	width: 75px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(calc(50% + 2rem), calc(-50% - 2rem));
	background-color: #04493B;
	border: 2px solid #fff;
	border-radius: 50%;
	padding: 0.75rem;
}

.home-testimonial-quote img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s;
	filter: invert(1);
}

.home-testimonial-card .auther-box {
	border-top: 1px solid var(--theme-primary);
	padding-top: 1rem;
	transition: 0.3s ease-in-out;
}

.is-center .home-testimonial-card .auther-box {
	border-color: #fff;
}

.home-testimonial-img,
.home-testimonial-content {
	flex: 1 1 100%;
}

.home-testimonial-img {
	border-radius: 1rem;
	position: relative;
}

.home-testimonial-desc {
	font-size: 1.4rem;
	line-height: 2rem;
	letter-spacing: 0.5px;
	font-weight: 400;
	color: #4D5054;
}

.home-testimonial-author {
	display: flex;
	flex-direction: column;
}

.home-testimonial-name {
	font-size: 1.25rem;
	margin-bottom: 0.3rem;
	font-weight: 600;
	text-transform: uppercase;
}

.home-testimonial-position {
	font-size: 0.9rem;
	line-height: 1.2rem;
	font-weight: 400;
}


@media (max-width: 768px) {

	.testimonial-bg {
		opacity: 0.3;
		height: 9rem;
	}

	.home-testimonial-card {
		flex-direction: column-reverse;
		border-radius: 2rem;
		padding: 1rem;
	}

	.home-testimonial-card .home-testimonial-content {
		gap: 1rem;
	}

	.home-testimonial-card .home-testimonial-quote {
		transform: translate(30%, calc(-50% - 2rem));
		width: 45px;
	}

	.home-testimonial-img {
		padding-bottom: 3rem;
	}

	.home-testimonial-img img {
		height: 10rem;
		padding: 1rem;
	}

	.home-testimonial-img::after {
		top: 100%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 4rem;
		height: 4rem;
		font-size: 3rem;
	}

	.home-testimonial-desc {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/* #endregion testimonials */

/* #region blogs */

.blogCard {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	background-color: #F8F8F8;
	border-radius: 1rem;
}

.blogs-section {
	position: relative;
}

.blog-bg-img {
	position: static;
}

.blog-bg-img img {
	position: absolute;
	z-index: 0;
}

.blog-bg-img-1 {
	top: 0;
	left: 0;
}

.blog-bg-img-2 {
	bottom: 0;
	right: 0;
}

.blog-swiper-container {
	--swiper-navigation-sides-offset: -3rem;
	--swiper-navigation-size: 2rem;
	position: relative;
}

.blog-nav-btn {
	transition: ease 0.3s;
}

.blog-nav-btn.swiper-button-disabled {
	opacity: 0;
}

.blog-nav-btn::after {
	font: var(--icon-font);
	font-size: var(--swiper-navigation-size);
}

.blog-nav-btn.swiper-button-prev::after {
	content: "\f060";
}

.blog-nav-btn.swiper-button-next::after {
	content: "\f061";
}

.blog-slide {
	overflow: hidden;
}

.blog-img {
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 2;
	transition: ease 0.5s;
}

.blog-slide figure {
	width: 100%;
	aspect-ratio: 1.75 / 1;
	border-radius: 1rem;
	overflow: hidden;
}

.blog-slide figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: ease 0.7s;
	transform: scale(1.1);
}

.blog-slide .figure-date-box {
	font-size: 0.875rem;
	line-height: 1.175rem;
	margin-bottom: 0.5rem;
}

.blog-slide .figure-date-box .date-box {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	background-color: var(--theme-primary);
	text-align: center;
}

.blog-slide .figure-date-box .month-box {
	padding: 0.2rem 0;
	font-size: 0.8rem;
	font-weight: 700;
	background-color: #fff;
	text-align: center;
}

.blog-slide:hover .blog-img img {
	transform: scale(1);
}

.blog-slide:hover .blog-title {
	color: var(--theme-primary);
}

.blog-slide .blog-img::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: 0.5s ease-in-out;
}

.blog-slide:hover .blog-img::after {
	opacity: 1;
}

.blog-content {
	position: relative;
	z-index: 1;
	padding: 1rem 0;
	color: #000;
}

.blog-slide:hover .blog-content::before {
	height: 12rem;
}

.blog-date {
	line-height: 1;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--theme-primary);
	font-size: 1rem;
}

.blog-date i {
	font-size: 1.5rem;
}

.blog-button {
	font-size: 1rem;
	line-height: 1.6rem;
	font-weight: 500;
}

.blog-button span {
	font-size: 1rem;
	margin-right: 10px;
}

.blog-button span i {
	font-size: 1rem;
}

.blog-button .circle {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: var(--theme-primary);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.why-us-desc {
	max-width: 75%;
	margin: 0;
}

.play-button {
	width: 6rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: 1px solid #fff;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
}

.blog-button:hover .circle {
	background-color: var(--theme-secondary);
}

.blog-title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	min-height: 2lh;
	margin-bottom: 1rem;
}

.blog-desc-preview {
	font-size: 1rem;
	color: #616366;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 3lh;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.blog-category {
	color: var(--theme-primary);
}

.blog-link {
	position: relative;
	display: inline-block;
	padding-bottom: 0.2rem;
}

.blog-link::after {
	content: "";
	position: absolute;
	bottom: 0.2rem;
	left: 0;
	width: 100%;
	height: 1px;
	transform-origin: left;
	transform: scaleX(0);
	transition: ease 0.25s;
	transition-property: transform;
	background-color: currentColor;
}

.blog-link:hover::after {
	transform: scaleX(1);
}

@media (max-width: 390px) {
	.home-services-card {
		max-width: 320px !important;
	}
}

@media (max-width: 340px) {
	.home-services-card {
		max-width: 300px !important;
	}
}

@media (max-width: 768px) {
	.blog-swiper-container {
		--swiper-navigation-sides-offset: 0.5rem;
	}

	.home-services-bg img {
		opacity: 0.4;
	}

	.blog-bg-img img {
		opacity: 0.4;
	}

	.blog-content {
		padding-top: 1rem;
	}

	.blog-content::before {
		left: -1rem;
		right: -1rem;
	}

	.blog-slide.swiper-slide-active .blog-content::before {
		height: 12rem;
	}

}

/* #endregion blogs */
/* #region FAQ */
#faqaccordian .accordion-item,
#faqaccordian .accordion-button,
#faqaccordian .accordion-button:not(.collapsed) {
	border: 0;
	border-radius: 0;
}

.accordion-item .accordion-button:not(.collapsed) {
	background-color: #F2F8F9;
	color: #000;
	border-bottom: 1px solid #ccc;
	font-weight: 500;
}

#faqaccordian .accordion-body {
	padding: 1.5rem 1rem;
}

#faqaccordian .accordion-button {
	padding: 1rem;
}

.accordian {
	background-color: #fff;
}

.faq-figure {
	margin-right: 50px;
}

.faq-figure figure {
	border-radius: 50rem 50rem 0 0;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1.2;
	position: relative;
}

.faq-figure figure img {
	border-radius: 50rem 50rem 0 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.faq-figure figure::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.faq-figure figure:hover::after {
	height: 250%;
	transition: all 600ms linear !important;
	background-color: transparent;
}

.accordion-button:not(.collapsed) {
	box-shadow: unset;
}

#faqaccordian .accordion-button {
	font-size: 1.25rem;
	font-weight: 700;
}

#faqaccordian .accordion-item {
	border-bottom: 1px solid #dadada7a;
}

.accordion-button:focus {
	outline: none;
	box-shadow: none;
}

/* #endregion */
/* #region contact */
.contact-banner {
	position: relative;
	z-index: 1;
}

.contactBox {
	position: relative;
	background-color: var(--theme-primary);
	padding: 4.5rem;
	border-radius: 1.5rem;
	transform: translateY(50%);
}

.contactBox .rocket {
	position: absolute;
	right: -40px;
	top: -80px;
}

.contactBox .row {
	position: relative;
	z-index: 2;
}

.contactBox .title {
	color: #fff;
	font-size: 3.5rem;
	line-height: 4rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.contactBox .sub-title {
	color: #fff;
	font-size: 2rem;
	line-height: 2.3rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contactBox .sub-title i {
	font-size: 2.5rem;
	line-height: 2.8rem;
}

@keyframes buzzit {
	0% {
		transform: rotateZ(2deg);
	}

	2% {
		transform: rotateZ(-2deg);
	}

	4% {
		transform: rotateZ(2deg);
	}

	6% {
		transform: rotateZ(-2deg);
	}

	8% {
		transform: rotateZ(2deg);
	}

	10% {
		transform: rotateZ(0deg);
	}

	100% {
		transform: rotateZ(0deg);
	}
}

.contactBox .cta-btn {
	background-color: #033228;
	color: #fff;
	padding: 0.75rem 1.5rem;
	animation: buzzit 5s infinite ease-in-out;
}

.contactBox .cta-btn::after {
	background-color: #fff;
}

.contactBox .cta-btn:hover {
	color: #033228;
}


@keyframes infinitetilt {
	0% {
		transform: rotateZ(0deg) scale(1);
	}

	15% {
		transform: rotateZ(380deg) scale(1);
	}

	30% {
		transform: rotateZ(340deg) scale(1.1);
	}

	45% {
		transform: rotateZ(360deg) scale(1);
	}

	100% {
		transform: rotateZ(360deg) scale(1);
	}

}

.contact-image {
	max-width: 200px;
	width: 100%;
	height: auto;
	overflow: auto;
	animation: infinitetilt 4s ease-in-out infinite;
}

.contact-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-contact {
	position: relative;
}

.contact-img-bg img {
	position: absolute;
	z-index: 0;
	animation: contact-img 4s ease-in-out infinite alternate;
}

@keyframes contact-img {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(2rem);
	}
}

.contact-img-bg-1 {
	bottom: 3rem;
	left: 2rem;
}

.contact-img-bg-2 {
	top: 1rem;
	right: 2rem;
	transition-delay: 2s;
}

.home-contact::before {
	opacity: 0.05;
}

.home-contact .dark-bg {
	padding-block: var(--section-gap);
	border-radius: 2rem;
	z-index: 1;
}

.home-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
	align-items: center;
}

.home-contact-detials-col {
	width: 45%;
	color: hsl(0deg 0% 100% / 60%);
}

.home-contact-links {
	margin-top: 1rem;
}

.home-contact-links li {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	line-height: 1.4;
	margin-bottom: 0.7rem;
	color: #000;
}

.home-contact-links i {
	font-size: 1.3rem;
}

.home-contact-links a {
	color: #000;
}

.home-contact-links a:hover {
	text-decoration: underline;
}

.home-contact-map {
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid #dadada;
}

.home-contact-map::before {
	padding-top: 56.5%;
}

.home-contact-form-col {
	flex: auto;
}

.home-contact-form-col .section-desc {
	max-width: 100%;
}

.contact-form-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.team-box {
	box-shadow: 0px 0px 88px 16px rgba(0, 0, 0, 0.05);
	transition: 0.3s ease-in-out;
}

.team-box figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.5rem 0.5rem 0 0;
}

.team-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.team-box figure:hover img {
	transform: scale(1.05)
}

.team-box article {
	padding: 1rem;
}

.team-box article .name {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin-bottom: 0.3rem;
	color: var(--theme-primary);
}

.team-box article .designation {
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 400;
	min-height: 2lh;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #666;
}

.get-in-touch-card {
	box-shadow: 0 0 80px 15px rgba(0, 0, 0, 0.08);
}

.team-box:hover {
	transform: translateY(-5px);
}

.home-faq {
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/world_contact.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
}

.get-in-touch-card .section-title {
	text-align: center;
	font-size: 1.875rem;
}

.get-in-touch-card .section-desc {
	max-width: 70%;
	text-align: center;
	margin-bottom: 1rem;
	line-height: 1.3rem;
}

.faq-box .section-desc {
	max-width: 100%;
	margin: 0;
	margin-bottom: 1rem;
}

.home-contact-form-field {
	position: relative;
}

.home-contact-form-input {
	padding-block: 1.4rem 0.5rem;
	padding-inline: 1rem;
	border: 1px solid #eaeaea;
	font-size: 1rem;
	transition: ease 0.25s;
	transition-property: color, border-color;
	background-color: #fff;
	color: #000;
	line-height: 1.4;
}

.home-contact-form-input::placeholder {
	color: transparent;
	opacity: 0;
}

.home-contact-form-label {
	position: absolute;
	top: 1.2rem;
	left: 1rem;
	font-size: 1rem;
	line-height: 1;
	transition: ease 0.25s;
	transform-origin: left;
	opacity: 0.8;
	font-weight: 500;
	color: #333;
}

.home-contact-form-input:focus,
.home-contact-form-input[required]:valid,
.home-contact-form-input:not([required]):not(:placeholder-shown) {
	border-color: var(--theme-secondary);
}

.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus) {
	border-color: red;
}

.home-contact-form-input:focus~.home-contact-form-label,
.home-contact-form-input:not(:placeholder-shown)~.home-contact-form-label {
	transform: translateY(-0.8rem) scale(0.75);
	opacity: 1;
}

.home-contact-form-action .cta-btn {
	width: 100%;
	display: block;
}

@media (min-width: 768px) {
	.contact-form-container .form-field-wide {
		grid-column: span 2;
	}

}

@media (max-width: 768px) {
	.contact-banner {
		padding: 2rem 0;
	}

	.footer-social-links {
		margin-top: 1.5rem;
	}

	.contactBox {
		transform: translateY(0);
		padding: 2rem;
	}

	.contactBox .title {
		font-size: 2.5rem;
		line-height: 3rem;
		margin-bottom: 1rem;
	}

	.contactBox .sub-title {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

	.banner-section {
		padding: 0 0 2rem 0;
	}

	.banner-figure {
		max-width: 85%;
		margin: 0 auto;

	}

	.banner-content .title {
		font-size: 2.2rem;
		line-height: 2.5rem;
		margin-bottom: 0.25rem;
	}

	.home-whyus-img {
		width: 3rem;
		height: 3rem;
	}

	.banner-content .description {
		margin-bottom: 0;
	}

	.contactBox .rocket {
		right: 0;
	}

	.home-contact .dark-bg {
		padding-block: 1.5rem;
		border-radius: 1rem;
	}

	.home-contact-row {
		flex-direction: column;
		gap: 2rem;
	}

	.home-contact-detials-col {
		width: 100%;
	}

	.home-contact-form-col {
		width: 100%;
	}

	.contact-form-container {
		margin: 0;
	}

	section {
		overflow: hidden;
	}
}

/* #endregion contact */

/* #region footer */

.page-footer {
	padding-block: 0.5rem;
	background-color: #000;
	font-weight: 400;
	border-top: 1px solid #cccccc52;
	color: #fff;
}

.page-footer-row {
	display: flex;
	align-items: flex-start;
	gap: 2rem 4rem;
}

.footer {
	background-color: #091C22;
	color: #fff;
	padding-top: 13rem;
	padding-bottom: 2rem;
}

.footer-col p {
	margin: 0;
}

.footer-col {
	flex: 1 1 100%;
	border: 1px solid #cccccc85;
	border-radius: 5px;
	padding: 10px 0 20px;
}

.footer-col a {
	display: inline-block;
	color: var(--footer-link-color);
}

.footer-col a:hover {
	color: var(--footer-link-hover-color);
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-logo img {
	width: 100%;
	filter: invert(1);
}

.footer-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-nav-list li {
	margin-bottom: 0.2rem;
}

.footer-contact-item {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.social-links a {
	display: grid;
	place-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 5rem;
	background: var(--theme-primary);
	color: #fff;
}

.almost-footer.social-links a {
	width: 2.5rem;
	height: 2.5rem;
}

.footer-social-links a:hover {
	color: var(--theme-primary);
	background: #fff !important
}

.faq-box {
	height: 100%;
}

.contact-card {
	padding: 1.6rem 2rem;
	height: 100%;
}

.contact-card .contact-details {
	display: flex;
	flex-direction: column
}

.contact-card .contact-details {
	gap: 1rem;
}

.contact-card .contact-details>li {
	margin-bottom: 0.5rem;
}

.contact-card .contact-details>li>.d-flex {
	gap: 0.5rem;
	flex-direction: column;
}

.contact-card .contact-details li ul {
	gap: 0px;
}

.contact-card .contact-details .social-links {
	gap: 0.5rem;
}

.contact-card .contact-details li .icon {
	margin-right: 1rem;
}

.contact-card .contact-details li .icon i {
	font-size: 1.3rem;
}

.contact-card .contact-details li h3 {
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 700;
}

.contact-card .contact-details li h5 {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3rem;
}


.contact-card .contact-details li h5,
.contact-card .contact-details li ul {
	padding-left: 37px;
	line-height: 1.5rem;
}

.contact-card .contact-details li ul li {
	color: #666;
}

.contact-card .contact-details .color-a {
	color: #000;
	font-weight: 500;
}

.footer-form {
	position: relative;
}

.footer-form input {
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #fff;
	margin-bottom: 0.5rem;
}

.footer-form button {
	display: inline-block;
	padding: 0.5rem 2rem;
	background-color: var(--theme-secondary);
	color: #fff;
}

.copy-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem 1rem;
}

.copy-footer img {
	display: inline-block;
	vertical-align: middle;
}

.career-option {
	/* min-height: 270px; */
	padding: 1rem;
	border: 1px solid #eaeaea;
	border-radius: 0.5rem;
	background-color: #fff;
	position: relative;
}

@media (max-width: 768px) {
	.footer {
		display: none;
	}

	#services .service-box {
		border-right: none;
	}

	#services .col:last-child .service-box {
		border-bottom: none;
	}

	.page-footer-row {
		flex-wrap: wrap;
	}

	.page-footer {
		padding-block: 1rem;
	}

	.copy-footer {
		flex-direction: column;
	}

	.copy-footer .social-links {
		padding-block: 0.3rem;
	}

	.blog-title {
		text-align: start;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

/* #endregion */

/* #region Career */
.careers-page-grid {
	display: grid;
	grid-template-columns: 15rem 1fr;
	align-items: start;
	gap: 1.5rem;
}

.career-categories-col {
	background-color: #fff;
	border-radius: 0.7rem;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	border: 1px solid #eaeaea;
	overflow: hidden;
}

.career-category-header {
	padding: 0.8rem;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #dadada;
}

.career-category-form {
	border-top: 1px solid #eaeaea;
}

.career-category-items {
	padding: 0.8rem;
	display: grid;
	gap: 1rem;
}

.career-category {
	display: grid;
	grid-template-columns: 1.5rem auto;
	gap: 0.5rem;
	position: relative;
	align-items: center;
}

.career-category-checkbox {
	opacity: 0;
	height: 1.5rem;
}

.career-category-label {
	line-height: 1.2;
	user-select: none;
	cursor: pointer;
}

.career-category-label::before,
.career-category-label::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 0.3rem;
}

.career-category-label::before {
	content: "";
	transition: ease 0.3s;
	border: 1px solid #c5c5c5;
}

.career-category-label::after {
	content: "\2713";
	text-align: center;
	font-weight: 600;
	color: transparent;
	display: grid;
	place-content: center;
	font-size: 1.2rem;
	font-family: monospace;
	pointer-events: none;
}

.career-category-checkbox:checked+.career-category-label::before {
	background-color: var(--theme-primary);
	border-color: var(--theme-primary);
}

.career-category-checkbox:checked+.career-category-label::after {
	color: #fff;
}

.career-categories-actions {
	border-top: 1px solid #eaeaea;
	padding: 0.5rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.career-category-btn {
	padding: 0.4rem 1rem;
	border-radius: 0.3rem;
	transition: ease 0.3s;
	font-weight: 400;
}

.career-category-submit-btn {
	background-color: var(--theme-primary);
	color: #fff;
	border-color: var(--theme-primary);
}

.career-category-submit-btn:hover {
	background-color: var(--theme-primary);
}

.career-category-clear-btn {
	background-color: var(--theme-secondary);
	color: #fff;
	border-color: var(--theme-secondary);
}

.career-category-clear-btn:hover {
	background-color: var(--theme-secondary-dark);
}

.career-listings {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.career-option-title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	min-height: 2lh;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.career-option-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 0.5rem;
}

.career-option-category {
	margin-top: 0.3rem;
	font-weight: 600;
	color: var(--theme-primary);
}

.career-option-desc {
	font-size: 1rem;
	line-height: 1.5rem;
	max-height: 3lh;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	font-weight: 300;
	overflow: hidden;
}

.career-option-actions {
	margin-top: 2rem;
}

.career-select-btn {
	--content-width: 6.5rem;
}

.career-btn {
	padding: 0.8rem 2rem;
}

.career-modal .career-modal-body {
	width: 60rem;
	height: 40rem;
	display: flex;
	flex-direction: column;
}

.get-in-touch-card {
	background-color: #fff;
	padding: 1.5rem;
}

.career-modal-header {
	margin-bottom: 1rem;
}

.career-modal-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
	flex: 1 1 0%;
	height: 0;
	overflow: auto;
}

.career-modal-info,
.career-modal-form {
	width: 100%;
}

.career-modal-info {
	padding-right: 1.5rem;
}

.career-modal-title {
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.contact-form-wide-col {
	grid-column: 1 / -1;
}

.contact-form-label {
	font-weight: 500;
	font-size: 0.9rem;
}

.contact-form-input {
	border: 1px solid #dadada;
	border-radius: 0.3rem;
	padding: 0.4rem 0.8rem;
}

/* #endregion */
/* #region Numbers */

.numbers-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	padding: 2.5rem;
}

.numbers-box.even {
	background-color: #053C30;
}

.numbers-box.odd {
	background-color: #064135;
}

.why-a,
.health {
	background-color: #F2F8F9;
}

.why-a .col {
	align-self: stretch;
}

.health .col {
	align-self: stretch;
}

.sustainability-swiper {
	height: 100%;
}

.numbers-grid .numbers-card .numbers-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
	transform: scale(0.9);
}

.numbers-grid .numbers-card .numbers-icon:hover img {
	transform: scale(1);
}

.numbers-grid .numbers-card .numbers-title {
	font-weight: 700;
}

.numbers-grid .numbers-card .numbers-desc {
	font-weight: 500;
	font-size: 1.2rem;
}

/* #endregion */
/* #region extra */

.home-contact-details-col {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px;
}

.contact-image {
	margin-left: auto;
	text-align: center;
}

.contact-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.footer-col {
	flex-basis: 30%;
}

.footer {
	position: relative;
	overflow: hidden;
}

.footer .foot-left {
	position: absolute;
	left: -30px;
	bottom: 0;
	animation-name: float-x;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.footer .foot-right {
	position: absolute;
	right: 0px;
	bottom: -30px;
	animation-name: float-y;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.copy-footer .footer-col:last-child {
	text-align: end;
}

.profile-address {
	margin: auto;
	font-size: 1.2rem;
	line-height: 30px;
	color: #f7f7f7;
	max-width: 80%;
	text-align: center;
}

.footer-contact-items {
	font-size: 1rem;
	text-transform: lowercase;
}

.footer-col a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-title {
	font-weight: 500;
	font-size: 1.2rem;
}

.footer-social-links li a {
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease-in-out;
}

.footer-logo {
	max-width: 200px;
}

.home-volunteer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0e0e0e40;
	z-index: 1;
}

.home-volunteer>.container {
	position: relative;
	z-index: 9;
	height: 100%;
}

.volunteer-content-box {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.footer-header {
	text-align: center;
	padding: 0 0 35px 0;
	font-size: 1.3rem;
	line-height: 1.5;
}

.footer-header span {
	font-weight: 600;
	font-size: 1.5rem;
}

.copy-footer .footer-col {
	border: none;
	text-align: center;
}

.copy-footer .footer-col {
	padding: 0;
}

.copy-footer .pvc-col .footer-pvc {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.copy-footer .footer-pvc .active {
	color: #e2e1e1;
}

.copy-footer .pvc-col .footer-pvc a {
	color: #fff;
}

.copy-footer .pvc-col .footer-pvc a:hover {
	font-weight: 500;
	color: var(--footer-link-hover-color);
}

.footer-header {
	border-bottom: 1px solid #F1EFF024;
	padding: 2.5rem 0;
}

.footer-header .footer-title {
	font-size: 3rem;
	font-weight: 700;
	text-align: left;
	line-height: 3.5rem;
}

.footer-header .cta-btn {
	background-color: #F1EFF0;
	color: var(--theme-primary);
}

.footer-header .cta-btn:hover {
	color: #f1eff0;
}

.footer-header .cta-btn::after {

	background-color: var(--theme-primary);
}

.floating-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 50px;
	width: 70px;
	height: 70px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 18px 66px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	z-index: 999999999;
}

.reviews-section {
	overflow: hidden;
}

.google-review .header {
	background-color: #F8F8F8;
	padding: 1.5rem;
	text-align: center;
}

.google-review .header .section-title {
	font-size: 1.375rem;
	line-height: 1.875rem;
	font-weight: 700;
	margin: 0;
}

.google-review .header .average {
	font-size: 1.175rem;
	line-height: 1.475rem;
	font-weight: 700;
}

.google-review .header .average-star {
	color: #FCBF02;
	display: flex;
	align-items: center;
	font-size: 1.2rem;
}

.google-review .header .total-review-count {
	font-size: 0.725rem;
	line-height: 1.475rem;
	font-weight: 400;
	color: rgba(17, 17, 17, 0.5);
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 1.25rem;
	padding-top: 1rem;
}

.reviewGridbox {
	background-color: #F8F8F8;
	border-radius: 0.5rem;
	padding: 1rem;
}

.reviewGridbox .profile-circle {
	width: 2.5rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #512DA8;
	padding: 1rem;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.reviewGridbox .profile-circle .profile-letter {
	font-size: 1.2rem;
}

.reviewGridbox .user-info .user-name {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.reviewGridbox .user-info .user-name .name {
	font-size: 0.9375rem;
	line-height: 1.125rem;
	font-weight: 600;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}

.reviewGridbox .user-info .user-name .icon-badge {
	width: 15px;
	height: 15px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin: 0;
	flex-shrink: 0;
}

.reviewGridbox .user-info .user-name .icon-badge img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.reviewGridbox .user-info .duration {
	color: rgba(17, 17, 17, 0.5);
	font-size: 0.75rem;
	line-height: 1rem;
}

.reviewGridbox .stars {
	color: #FCBF02;
	display: flex;
	gap: 0.1rem;
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.reviewGridbox .review-desc {
	font-size: 1rem;
	line-height: 1.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 4;
	-webkit-line-clamp: 4;
	min-height: 4lh;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.5rem;
}

.reviewGridbox .read-more {
	font-size: 1rem;
	color: rgb(25, 123, 255);
	transition: 0.3s ease-in-out;
}

.reviewGridbox .read-more:hover {
	text-decoration: underline;
}

#reviewModal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 9999
}

#reviewModal.show {
	display: flex;
	justify-content: center;
	align-items: center
}

.rm-header {
	display: flex;
	flex-direction: column;
	gap: .5rem
}

/* keep avatar row horizontal */
.rm-header .d-flex.align-items-center {
	gap: .5rem
}

/* dark backdrop */
.rm-overlay {
	background: rgba(0, 0, 0, .65)
}

.rm-body {
	max-height: 70vh;
	overflow-y: auto;
}

/* dialog */
.rm-dialog {
	background: #fff;
	max-width: 600px;
	width: 90%;
	padding: 1.5rem;
	border-radius: 6px;
	position: relative
}

.rm-close {
	position: absolute;
	top: .5rem;
	right: .75rem;
	border: none;
	background: none;
	font-size: 1.5rem;
	cursor: pointer
}

.floating-whatsapp .floating-box {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #58ed6d;
	font-size: 3rem;
	transition: 0.3s;
	width: 100%;
}

.loadMoreBtn {
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 0.25rem;
	padding: 0.5rem 2rem;
	color: #000;
	background-color: rgb(248, 248, 248);
	font-size: 0.8rem;
	font-weight: 700;
	transition: 0.3s ease-in-out;
}

.loadMoreBtn:hover {
	border-color: rgba(17, 17, 17, 0.1);
	;
	background-color: rgba(17, 17, 17, 0.1);
}

.floating-whatsapp:hover .floating-box {
	color: #58ed6d;
	background-color: #fff;
}

.powered-img {
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.footer-links .title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin-bottom: 1rem;
	padding: 0;
}

.footer-links li {
	border-bottom: 0.5rem;
	line-height: 2;
	padding-left: 1.3rem;
	position: relative;
}

.address-links li {
	padding: 0;
}

.address-links li i {
	margin-right: 0.25rem;
}

.address-links .footer-address {
	font-size: 1rem;
	line-height: 1.4rem;
	text-transform: none;
}

.footer-links .arrow::after {
	content: '\f105';
	font: var(--icon-font);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	font-size: 0.8rem;
}

.footer-links .link {
	font-size: 1rem;
	line-height: 1.3rem;
	display: inline-block;
}

.footer-links li a:hover {
	color: var(--footer-link-hover-color);
}

/* #region Portfolio */
.portfolio-box {
	display: block;
}

.portfolio-box figure {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden
}

.portfolio-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.portfolio-box:hover img {
	transform: scale(1.1);
}

.portfolio-box article {
	padding: 1rem 0;
}

.portfolio-box article .title {
	font-size: 1.7rem;
	line-height: 2rem;
	font-weight: 600;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	min-height: 2lh;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.5rem;
	transition: 0.3 ease-in-out;
}

.portfolio-box:hover .title {
	color: var(--theme-primary);
}

.portfolio-box article .description {
	font-size: 1rem;
	line-height: 1.3rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	min-height: 3lh;
	overflow: hidden;
	margin-bottom: 1rem;
	color: #333;
}

.good-tabs {
	border-bottom: 0px;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 10px 0;
	gap: 1rem;
	position: sticky;
	top: var(--header-height);
	max-height: calc(100vh - var(--header-height) - 2rem);
	overflow: auto;
}

.good-tabs .nav-link {
	border-radius: 10px;
	border: 1px solid #dadada;
	background-color: #fff;
	color: #333;
	display: flex;
	align-items: center;
	gap: 5px;
	width: 100%;
}

.good-tabs .nav-link img {
	width: 15px;
	height: 15px;
	filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(10%) hue-rotate(209deg) brightness(93%) contrast(103%);
}

.good-tabs .nav-link.active {
	background-color: var(--theme-primary);
	color: #fff;
	border-color: var(--theme-primary);
}

.portfolio-tabs .nav-link:hover {
	border-color: var(--theme-primary);
}

.good-tabs .nav-link.active img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(92%) saturate(1%) hue-rotate(235deg) brightness(103%) contrast(102%);
}

.portfolio-tabs {
	border-bottom: 1px solid #dadada;
	padding-bottom: 1.5rem
}

.portfolio-image {
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
}

.portfolio-image img,
.portfolio-image iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-image figcaption {
	background-color: #705200a9;
	color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.8rem;
	padding: 1rem;
}

.portfolio-tabs .nav-item {
	display: grid;
}

.portfolio-tabs .nav-link {
	width: max-content;
	height: 100%;
	max-height: 70px;
	/* aspect-ratio: 4 / 1; */
	overflow: hidden;
	padding: 0;
}

.portfolio-tabs .nav-link.active img,
.portfolio-tabs .nav-link img {
	filter: unset;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.portfolio-figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
}

.portfolio-figure figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #705200a9;
	color: #fff;
	text-align: center;
}

.portfolio-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* #endregion */
#blog-nav,
#service-nav,
#other-product-nav,
#product-nav,
#testimonial-nav,
#gallery-nav,
#career-nav {
	position: relative;
	width: 150px;
	height: 50px;
	margin-left: auto;
}

#product-nav,
#testimonial-nav,
#service-nav,
#career-nav,
#gallery-nav,
.swiper-nav {
	height: auto;
}

#infrastructure-nav {
	position: relative;
}

#service-nav .swiper-button-prev,
#service-nav .swiper-button-next,
#infrastructure-nav .swiper-button-prev,
#infrastructure-nav .swiper-button-next,
#blog-nav .swiper-button-prev,
#blog-nav .swiper-button-next,
#other-product-nav .swiper-button-prev,
#other-product-nav .swiper-button-next,
#product-nav .swiper-button-prev,
#product-nav .swiper-button-next,
#testimonial-nav .swiper-button-prev,
#testimonial-nav .swiper-button-next,
#gallery-nav .swiper-button-prev,
#gallery-nav .swiper-button-next,
#career-nav .swiper-button-prev,
#career-nav .swiper-button-next,
.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
	width: 60px;
	height: 60px;
	background-color: var(--theme-primary);
	color: #fff;
	left: unset;
	top: 0;
}

#service-nav .swiper-button-prev:hover,
#service-nav .swiper-button-next:hover,
#infrastructure-nav .swiper-button-prev:hover,
#infrastructure-nav .swiper-button-next:hover,
#blog-nav .swiper-button-prev:hover,
#blog-nav .swiper-button-next:hover,
#other-product-nav .swiper-button-prev:hover,
#other-product-nav .swiper-button-next:hover,
#product-nav .swiper-button-prev:hover,
#product-nav .swiper-button-next:hover,
#testimonial-nav .swiper-button-prev:hover,
#testimonial-nav .swiper-button-next:hover,
#career-nav .swiper-button-prev:hover,
#career-nav .swiper-button-next:hover,
#gallery-nav .swiper-button-prev:hover,
#gallery-nav .swiper-button-next:hover,
.swiper-nav .swiper-button-prev:hover,
.swiper-nav .swiper-button-next:hover {
	background-color: var(--theme-secondary);
	color: #fff;
}

.products-section {
	position: relative;
}

.products-boxes a {
	border-radius: 1.5rem 1.5rem 0 0;
}

.products-boxes .col:nth-child(odd) .col:nth-child(1) {
	order: 2;
	/* Image */
}

.product-testimonial-card article {
	padding: 1rem 0;
}

.products-boxes .col:nth-child(odd) .col:nth-child(2) {
	order: 1;
	/* Content */
}

/* For even rows: Content on the left, image on the right */
.products-boxes .col:nth-child(even) .col:nth-child(1) {
	order: 1;
}

.products-boxes .col:nth-child(even) .col:nth-child(2) {
	order: 2;
}

.product-details a:hover {
	color: var(--theme-primary);
}

.product-details .cta-btn:hover {
	color: var(--btn-hover-text-color);
}

.product-box {
	padding-top: 5rem;
}

.product-box figure {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
}

.products-boxes .col:nth-child(odd) .product-box figure {
	border-radius: 0.5rem 0 0 0.5rem;
	/* padding: 2rem 0 0 2rem; */
}

.products-boxes .col:nth-child(even) .product-box figure {
	border-radius: 0 0.5rem 0.5rem 0;
	/* padding:  2rem 2rem 0 0; */
}

/* .products-boxes .col:nth-child(1) .semi-figure {
	background-color: #FFF5E0;
}

.products-boxes .col:nth-child(2) .semi-figure {
	background-color: #D3FCFF;
}
.products-boxes .col:nth-child(3) .semi-figure {
	background-color: #ffdfed;
} */
.product-box article {
	padding: 2rem;
}


.product-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
}

.product-box figure:hover img {
	transform: scale(1.1)
}

.product-box button {
	background-color: var(--theme-primary);
	color: #fff;
}

.product-box button:hover {
	color: var(--theme-primary);
}

.product-box button:hover::after {
	background-color: #fff;
	border-color: #fff;
}

.product-box button i {
	margin-left: 0.5rem;
	transform: rotateZ(-45deg);
	transition: 0.3s ease-in-out;
}

.product-box button:hover i {
	transform: rotateZ(0);
}

.product-box .name {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	text-transform: uppercase;
}

.product-box .product_tag_line {
	display: none;
	font-size: 0.875rem;
	line-height: 1.175rem;
	font-weight: 500;
	color: #222;
	margin-bottom: 0.5rem;
}

.product-box .description {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-clamp: 6;
	-webkit-line-clamp: 6;
	min-height: 6lh;
	color: #222;
	margin-bottom: 1.5rem;
}

.product-details .cta-btn {
	font-size: 1rem;
	padding: 1rem 2rem;
}

.product-overlay .crosshair-ring {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 70px;
	height: 70px;
	border: 1px solid #dadada;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Inner Circle */
.product-overlay .crosshairs-ring {
	position: absolute;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
}

/* Vertical Line - Split into Top & Bottom */
.product-overlay .crosshair-ring::before,
.product-overlay .crosshair-ring::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 10px;
	background-color: #000;
	transition: transform 0.3s ease-in-out;
	z-index: 1;
}

/* Top Half */
.product-overlay .crosshair-ring::before {
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}

/* Bottom Half */
.product-overlay .crosshair-ring::after {
	bottom: 50%;
	left: 50%;
	transform: translateX(-50%);
}

/* Left & Right Lines using Inner Ring */
.product-overlay .crosshairs-ring::before,
.product-overlay .crosshairs-ring::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 2px;
	background-color: #000;
	transition: transform 0.3s ease-in-out;
	z-index: 1;
}

/* Left Half */
.product-overlay .crosshairs-ring::before {
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
}

/* Right Half */
.product-overlay .crosshairs-ring::after {
	right: 50%;
	top: 50%;
	transform: translateY(-50%);
}

/* ðŸ”¥ Hover Effect: Move Each Part Outward */
.product-overlay .crosshair-ring:hover::before {
	transform: translate(-50%, 3px);
}

.product-overlay .crosshair-ring:hover::after {
	transform: translate(-50%, -3px);
}

.product-overlay .crosshair-ring:hover .crosshairs-ring::before {
	transform: translate(3px, -50%);
}

.product-overlay .crosshair-ring:hover .crosshairs-ring::after {
	transform: translate(-3px, -50%);
}


#service-nav .swiper-button-prev::after,
#service-nav .swiper-button-next::after,
#blog-nav .swiper-button-prev::after,
#blog-nav .swiper-button-next::after,
#other-product-nav .swiper-button-prev::after,
#other-product-nav .swiper-button-next::after,
#infrastructure-nav .swiper-button-prev::after,
#infrastructure-nav .swiper-button-next::after,
#product-nav .swiper-button-prev::after,
#product-nav .swiper-button-next::after,
#testimonial-nav .swiper-button-prev::after,
#testimonial-nav .swiper-button-next::after,
#gallery-nav .swiper-button-prev::after,
#gallery-nav .swiper-button-next::after,
#career-nav .swiper-button-prev::after,
#career-nav .swiper-button-next::after,
.swiper-nav .swiper-button-prev::after,
.swiper-nav .swiper-button-next::after {
	font-size: 0.8rem;
	font-weight: 700;
}

#service-nav .swiper-button-prev,
#blog-nav .swiper-button-prev,
#infrastructure-nav .swiper-button-prev,
#other-product-nav .swiper-button-prev,
#product-nav .swiper-button-prev,
#testimonial-nav .swiper-button-prev,
#gallery-nav .swiper-button-prev,
#career-nav .swiper-button-prev,
.swiper-nav .swiper-button-prev {
	right: 70px;
}

#service-nav .swiper-button-next,
#blog-nav .swiper-button-next,
#infrastructure-nav .swiper-button-next,
#other-product-nav .swiper-button-next,
#product-nav .swiper-button-next,
#testimonial-nav .swiper-button-next,
#gallery-nav .swiper-button-next,
#career-nav .swiper-button-next,
.swiper-nav .swiper-button-next {
	right: 0;
}

.product-desc {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 3lh;
}

.infrastructure-card {
	background-color: #fff;
	border: none;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.infrastructure-card figure {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	position: relative;
}

.infrastructure-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.infrastructure-card article {
	padding: 1rem;
}

.infrastructure-card article .cta-btn {
	display: inline-flex;
}

.infrastructure-card article .infrastructure-header .title {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	min-height: 2lh;
	-webkit-box-orient: vertical;
}

.infrastructure-card article .infrastructure-header .category {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: var(--theme-secondary);
}

.infrastructure-card article .infrastructure-header .infrastructure-desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #666;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	min-height: 3lh;
	overflow: hidden;
	margin-bottom: 1rem;
}

.infra-title {
	font-size: 2rem;
	line-height: 2.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.infra-category {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	color: var(--theme-secondary);
}

@media only screen and (min-width: 1201px) and (max-width: 1400px) {
	.custom-banner-title {
		font-size: 6rem;
		line-height: 6.3rem;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
	.custom-banner-title {
		font-size: 4rem;
		line-height: 4.3rem;
	}
}

@media only screen and (max-width: 1200px) {
	.home-banner-title {
		font-size: 4rem;
		line-height: 64px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.header-nav-list>li>a {
		font-weight: 600;
	}

	.header-banner {
		display: none;
	}

	.product-box {
		padding: 0;
	}

	.service-page .section-header .section-title,
	.product-page .section-header .section-title,
	.contact-page .section-header .section-title {
		font-size: 1.5rem;
		line-height: 1.8rem;
		margin-bottom: 0.25rem;
	}

	.numbers-box.mobile-even {
		background-color: #053C30;
	}


	.products-boxes .product-box figure {
		padding: 1.5rem;
		padding-bottom: 0;
	}

	.products-boxes .product-box figure img {
		border-radius: 0.5rem !important;
	}

	.numbers-box.mobile-odd {
		background-color: #064135;
	}

	.products-boxes a {
		border-radius: 0 0 0.5rem 0.5rem !important;
	}

	.products-boxes .col:first-child a {
		background: rgb(255, 250, 239) !important;
	}

	.products-boxes .col:nth-child(2) a {
		background: rgb(216, 252, 255) !important;
	}

	.products-boxes .col:nth-child(3) a {
		background: rgb(255 245 249) !important;
	}

	.product-box article {
		padding: 1.5rem;
	}

	.project-learn-more.cta-btn:hover::after {
		background-color: var(--theme-primary);
	}

	.header-nav-dropdown:hover .header-nav-dropdown-list {
		box-shadow: none;
	}

	.custom-banner-container {
		background-color: #B98E75;
	}

	.custom-banner-title {
		line-clamp: 2;
		-webkit-line-clamp: 2;
	}

	.custom-banner-link {
		border: 1px solid #fff;
		color: #fff;
	}

	.main-header::before {
		height: 15px;
	}

	.custom-banner-link:hover {
		color: var(--theme-primary);
	}

	.custom-swiper-slide .overlay {
		background-color: transparent;
	}

	.home-about .section-title {
		font-size: 2.5rem;
		line-height: 3rem;
	}

	.about-image-box {
		margin-right: 150px;
		margin-bottom: 150px;
		position: relative;
	}

	.about-image-box .figure-b {
		right: -140px;
		bottom: -140px;
		border-width: 10px;
	}

	.about-image-box .architect {
		font-size: 24px;
		font-weight: 600;
		line-height: 24px;
		top: 50px;
		right: -150px;
	}

	.about-image-box .experience-box {
		width: 130px;
		height: 130px;
		bottom: -140px;
	}

	.about-static-box ul {
		flex-direction: column;
	}

	.home-testimonials-swiper .testimonials-pagination {
		padding-left: 0;
		text-align: center;
	}

	.whyus-figure {
		aspect-ratio: 1.5 / 2;
	}

	.volunteer-sub-text {
		font-size: 1.3rem;
		line-height: 1.6rem;
		margin-bottom: 0.5rem;
	}

	.volunteer-btn {
		margin-top: 1rem;
	}

	.health .whyus-figure {
		aspect-ratio: 1.5 / 1;
	}

	.health .whyus-figure img {
		height: 100%;
	}

	.whyus-figure img {
		height: 70%;
	}

	.numbers-grid {
		position: relative;
	}

	.health-swiper .swiper-slide>div,
	.why-us article,
	.health article .health-padding {
		padding: 2rem 1rem;
	}

	.max-60,
	.max-70,
	.get-in-touch-card .section-desc,
	.health-article .description {
		max-width: 100%;
	}

	#service-nav,
	#product-nav,
	.swiper-nav {
		display: none;
	}

	.video-figure {
		aspect-ratio: 2 / 1;
	}

	.client-title,
	.clients-images {
		width: 100%;
	}

	.client-title h5 {
		font-size: 2rem;
		text-align: center;
	}

	.header-nav-list>li>a {
		color: #000;
	}

	.main-header {
		position: sticky;
		left: unset;
		box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.05);
	}

	.bannerBox {
		padding: 1.5rem 0;
	}

	.volunteer-title {
		font-size: 2rem;
		line-height: 2.5rem;
		margin-bottom: 0.5rem;
	}

	.home-about-img {
		padding-inline: unset;
		padding: unset;
	}

	.home-about-mobile-view-image {
		display: flex;
		max-width: 100%;
		width: 100%;
		margin: 0;
		border-radius: 50rem 50rem 0 0;
		overflow: hidden;
		aspect-ratio: 1 / 1.3;
	}

	.home-about-mobile-view-image::after {
		content: "";
		position: absolute;
		width: 200%;
		height: 0%;
		left: 50%;
		top: 50%;
		background-color: rgba(255, 255, 255, .3);
		transform: translate(-50%, -50%) rotate(-45deg);
		z-index: 1;
	}

	.home-whyus-card {
		border-right: none;
	}

	.home-about-mobile-view-image.cta-btn:hover::after {
		height: 250%;
		transition: all 600ms linear !important;
		background-color: transparent;
	}

	.home-about-mobile-view-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.home-about-tab-view-image {
		display: none;
	}

	.header-nav {
		height: 100vh;
	}

	.header-contact-item {
		display: none;
	}

	.nav-active>a::before,
	.header-nav-list>li:hover>a::before {
		bottom: -0.5rem;
	}

	.footer-row {
		justify-content: center;
		text-align: center;
		gap: 0;
	}

	.header-nav-section .header-nav-item {
		margin: 0.5rem 0;
		font-size: 1rem;
		font-weight: 500;
	}

	.footer-col {
		flex-basis: 100%;
	}

	.home-banner-slide::before {
		padding: 0;
	}

	.home-banner-bg {
		position: static !important;
	}

	.contact-image {
		margin: 0;
		max-width: 150px;
	}

	.home-banner-wrapper {
		position: static;
		background-color: #67bdb0;
	}

	.home-banner-content {
		text-align: center;
		padding: 20px 0;
	}

	.home-banner-title {
		font-size: 24px;
		line-height: 30px;
		text-align: center;
		color: #000;
		text-shadow: none;
	}

	.about-title,
	.home-about-desc,
	.profile-address,
	.home-testimonial-content,
	.volunteer-sub-text {
		max-width: 100%;
	}

	.home-testimonial-content {
		padding: 0;
	}

	.home-whyus-title {
		font-size: 1.5rem;
		line-height: 1.8rem;
		font-weight: 500;
		text-align: center;
	}

	.home-whyus-desc {
		font-size: 1rem;
		line-height: 1.3rem;
	}

	.home-whyus-grid {
		grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
		margin: 15px 0;
	}

	.home-volunteer {
		height: 70vh;
	}

	.footer-col a {
		justify-content: center;
	}

	.footer-title {
		text-align: center;
	}

	.header-menu-open-icon {
		color: #000;
	}

	.home-contact-row {
		flex-direction: column-reverse;
	}

	.header-nav {
		justify-content: flex-start;
	}

	.footer-header>div {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 15px;
	}

	.footer-header .footer-title {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.section-header>.d-flex>.d-flex {
		flex-direction: column;
	}

	.section-header .section-desc {
		text-align: start;
		max-width: 100%;
	}

	.section-header.center-header .section-desc {
		text-align: center;
	}

	.ox-container {
		max-width: 85%;
	}

	.ox-container .blue-ox {
		min-height: 300px;
	}

	.faq-figure {
		margin-right: 0;
	}
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
	.reviewGridbox .review-desc {
		min-height: unset;
	}

	.custom-banner-pagination {
		display: none;
	}

	.havesubmenu ul {
		top: 100%;
		left: 5%;
		width: 100%;
		background-color: #f9f9f9;
	}

	.home-services-title a {
		min-height: unset;
	}

	.career-modal-body {
		overflow-y: scroll;
	}

	.career-modal-container {
		flex-direction: column;
	}

	.career-modal-info,
	.career-modal-form {
		width: 100%;
	}

	.career-modal-form {
		padding: 30px 0;
	}

	.home-banner-swiper .swiper-wrapper {
		background-color: #67bdb0;
	}

	.home-banner-slide img {
		height: 30vh;
	}

	.header-nav {
		padding-left: 15px;
	}

	.floating-whatsapp {
		width: 55px;
		height: 55px;
	}

	.floating-whatsapp .floating-box {
		font-size: 2.6rem;
	}

	.home-volunteer {
		height: 400px;
	}

	.home-testimonials-swiper {
		padding: 0 0 50px 0;
	}

	.products-boxes .col:nth-child(odd) .col:nth-child(1) {
		order: 1;
		/* Image */
	}

	.products-boxes .col:nth-child(odd) .col:nth-child(2) {
		order: 2;
		/* Content */
	}

	.product-box .name {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

}

/* Odometer drum effect styles */
.odometer-drums {
	display: inline-flex;
	align-items: flex-end;
	font-variant-numeric: tabular-nums;
}

.odometer-digit {
	display: inline-block;
	width: 0.8em;
	height: 1.2em;
	overflow: hidden;
	position: relative;
	vertical-align: bottom;
}

.odometer-inner {
	display: block;
	transition: transform 1s cubic-bezier(.5, 1.7, .5, 1);
	will-change: transform;
	line-height: 1.2em;
}

.odometer-digit span {
	display: block;
	height: 1.2em;
	line-height: 1.2em;
	text-align: center;
}

.odometer-non-digit {
	display: inline-block;
	width: auto;
	margin-left: 0.1em;
}

.odometer-symbol {
	margin-left: 0.15em;
	font-size: 0.95em;
	vertical-align: bottom;
}