/* #region setup */

:root {
	--theme-primary-fade: hsl(278deg 57% 39% / 30%);
	--container-width: 1200px;
	--container-sm-width: 1065px;
	--container-lg-width: 1735px;
	--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: 4.5rem;
	/*75px;*/
	--top-header-height: 7rem;
	--logo-width: 25rem;
	/*110px;*/
	--header-spacing: 2rem;
	--section-gap: 3.5rem;
	--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: 70px;
		--logo-width: 150px;
	}

	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 {
	font-size: 1.125rem;
	line-height: 1.425rem;
	font-family: var(--font-family);
	text-transform: capitalize;
	color: #666;
	letter-spacing: 0.12rem;
	font-weight: 600;
	position: relative;
}

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

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

.section-desc::before,
.section-desc::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
}

.section-desc::before {
	width: 30%;
	height: 2px;
	background-color: #ccc;
}

.get-in-touch-card .section-desc::before,
.get-in-touch-card .section-desc::after {
	content: unset;
}

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

.center-header .section-desc::before {
	width: 60%;
}

.center-header .section-desc::after {
	width: 20%;
}

.section-desc::after {
	width: 15%;
	height: 4px;
	background-color: var(--theme-primary);
}

.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;
}

.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-color: #f2fafa;
	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 {
	position: relative;
	z-index: 1;
	margin-bottom: 0.5rem;
}

.header-banner .section-header .section-title {
	color: var(--breadcrumbs-title-color);
}


.section-header-crumbs {
	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-block;
	padding: 1rem 2rem;
	font-size: 1rem;
	line-height: 1;
	background-color: var(--btn-bg-color);
	color: var(--btn-text-color);
	position: relative;
	overflow: hidden;
	border-radius: 0;
	border: 1px solid var(--btn-bg-color);
	font-weight: 600;
	text-transform: uppercase;
	font-family: var(--font-family);
	transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
	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: -1px;
	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);
	-khtml-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.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-family: var(--font-family);
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.glightbox-container.glightbox-default .gslide-desc {
	font-family: var(--font-family);
	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-family: var(--font-family);
	font-weight: 400;
}

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

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

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

	position: relative;
}

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

.section-title-sm {
	font-weight: 400;
	margin-top: 1em;
	font-size: 1.3rem;
	line-height: 1.3;
}

.section-title {
	font-family: var(--font-family-outift);
	font-weight: 800;
	font-style: normal;
	font-size: 2.5rem;
	line-height: 3rem;
	position: relative;
	margin-bottom: 0.5rem;
	color: var(--intro-title-color);
	word-spacing: 3px;
}

.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-figure {
	width: 100%;
	aspect-ratio: 1.7 / 1;
	overflow: hidden;
	position: relative;
}

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

.service-figure .badge-box {
	position: absolute;
	left: 1rem;
	top: 1rem;
	width: calc(100% - 2rem);
}

.service-figure .badge-box .tag {
	width: fit-content;
	max-width: 100%;
	padding: 0.5rem 1rem;
	background-color: #cd0000c0;
	color: #fff;
	font-size: 0.85rem;
	line-height: 1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.service-card article .mechs {
	width: fit-content;
	max-width: 100%;
	color: #000;
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1.05rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-card article .mechs i {
	font-size: 1.5rem;
	line-height: 1.8rem;
	color: green;
}

.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;
}

.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;
	gap: 10px;
	padding: 10px 0;
	max-width: 100%;
	overflow: auto;
	align-items: center;
}

.product-tabs .nav-item {
	display: flex;
	align-items: center;
	border-radius: 0;
	border: 1px solid var(--theme-primary);
	max-width: max-content;
	width: 100%;
}

.product-tabs .nav-link {
	border: 0;
	color: #333;
	margin-right: 0px;
	display: flex;
	align-items: center;
	gap: 5px;
	width: max-content;
	border-radius: 0;
	width: 100%;
	text-transform: capitalize;
	white-space: nowrap;
}

.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: 2;
	-webkit-line-clamp: 2;
	/* min-height: 2lh; */
	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;
	font-family: var(--font-family-inter);
}

.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;
	font-family: var(--font-family-inter);
	margin-bottom: 0.5rem;
}

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

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

.filter-toggle-btn {
	font-size: 0.75rem;
	border-radius: 0;
	background-color: #fff;
	color: #000;
}


.filter-toggle-btn:active,
.filter-toggle-btn:hover {
	background-color: var(--theme-secondary) !important;
	border-color: var(--theme-secondary) !important;
}

.filter-toggle-btn:focus {
	background-color: var(--theme-primary) !important;
	border-color: var(--theme-primary) !important;
}

.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);
}

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

@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: 2rem;
		line-height: 2.5rem;
	}

	.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;
	}
}

.custom-banner-section {
	position: relative;
	/* height: calc(75vh - (var(--header-height) + var(--top-header-height))); */
	overflow: hidden;
}

.custom-swiper {
	width: 100%;
	height: 100%;
	position: relative;
}

.custom-swiper-wrapper {
	display: flex;
}

.custom-swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.custom-banner-bg {
	/* position: absolute;
	top: 0;
	left: 0; */
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 1;
	background-size: cover;
	background-position: center;
	z-index: -1;
	will-change: transform;
}

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

.custom-banner-content-wrapper {
	position: relative;
	z-index: 1;
	height: 50%;
	display: flex;
	align-items: center;
}

.custom-banner-container {
	width: 100%;
	max-width: 750px;
	margin: 0;
	padding: 40px;
	background-color: #e3011096;
}

.custom-banner-pagination {
	position: absolute;
	top: 0;
	right: 10%;
	position: absolute;
	width: 30px;
	height: 100%;
	z-index: 1;
}

.custom-banner-pagination .swiper-pagination {
	top: 50%;
	transform: translateY(-35%);
}

.custom-banner-pagination .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 0;
	transition: 0.3s;
	opacity: 1;
	background-color: #c0c0c0;
}

.custom-banner-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
	transform: translateX(-15px);
	background-color: var(--theme-primary);
}

.custom-banner-title {
	font-size: 2.5rem;
	line-height: 3rem;
	color: #fff;
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	overflow: hidden;

}

.custom-banner-link {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	color: var(--theme-primary);
	background-color: #fff;
	overflow: hidden;
	z-index: 1;
	transition: color 0.4s ease;
	font-weight: 700;
}

.custom-banner-link::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: -1px;
	height: 100%;
	margin: auto;
	transform: scale(0, 1);
	background-color: var(--theme-primary);
	transform-origin: right center;
	transition: transform 0.3s ease-in-out, translate 0.3s ease-in-out;
	z-index: -1;
}

.custom-banner-link:hover {
	color: #fff;
}

.custom-banner-link:hover::after {
	transform: scale(1, 1);
	transform-origin: left center;
}

.custom-banner-link:not(:hover)::after {
	transform: scaleX(0);
	transform-origin: right center;
	/* Collapse to right */
}

@media print {

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

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

/* #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 */

.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;
	padding-left: 1rem;
}

.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: 0;
	height: var(--top-header-height);
	padding: 0;
}

.header-logo a {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 10px;
}

.header-logo a .img-1 {
	max-width: 60%;
}

.header-logo a .img-2 {
	max-width: 35%;
	position: relative;
}

.header-logo a .img-2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40%;
	background-color: #ccc;
}

.header-logo a figure {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

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

.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(--theme-secondary);
	border-bottom: 1px solid rgba(37, 95, 219, 0.349);
	z-index: 50;
}

.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);
	gap: 2rem;
	position: relative;
}

.header-logo {
	width: var(--logo-width);
	height: calc(var(--header-height));

	padding: 0.5rem 2rem;
	align-self: flex-end;
	transition: ease 0.3s;
	position: absolute;
	left: 0;
	bottom: 0rem;
}

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

.header-nav {
	position: relative;
	height: 100%;
	display: flex;
	gap: 0 2rem;
	align-items: center;
	flex: auto;
}

.header-nav-list {
	display: flex;
	align-items: center;
	position: relative;

	font-weight: 500;
	gap: 2rem;
	height: 100%;
	font-size: 1rem;
	color: var(--theme-primary);
}

.header-nav-list>li {
	height: 100%;
}

.header-nav-list>li>a {
	display: grid;
	height: 100%;
	place-content: center;
	color: var(--nav-link-color);
	font-family: var(--font-family);
	font-style: normal;
	font-weight: 700;
	font-size: 1rem;
	position: relative;
}

.header-nav-list>li>a::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--theme-primary);
	transition: 0.3s;
}

.nav-active>a {
	border-top: 2px solid var(--theme-primary);
}

.header-nav-list>li:hover>a::before {
	width: 100%;
}

.nav-active>a,
.header-nav-list>li:hover>a {
	color: var(--nav-link-hover-color) !important;
	font-weight: 700 !important;
}

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

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

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

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

.header-nav-dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	width: 100%;
	min-width: 18rem;
	opacity: 0;
	pointer-events: none;
	transition: ease 0.25s;
	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-family: var(--font-family);
	font-style: normal;
}

.header-nav-dropdown-list .sub-nav-active {
	background-color: var(--theme-primary);
	font-weight: 500;
}

.header-nav-dropdown-list .sub-nav-active a {
	color: #fff;
}

.header-nav-dropdown-list li:hover>a {
	background-color: var(--theme-primary);
	color: #fff;
	font-weight: 500;
}

.header-nav-dropdown:hover>.header-nav-dropdown-list {
	opacity: 1;
	pointer-events: auto;
	transform: scaleY(1);
}

.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 {
	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 {
	display: none;
	color: #e6f2f5;
	top: 50%;
	left: 50%;
	z-index: 0;
	font-size: 17rem;
	transform: translate(-50%, -50%);
}

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

.home-about-desc {
	margin-bottom: 2rem;
	font-size: 16px;
	line-height: 1.3em;
	color: #474749;
	font-family: var(--font-family);
	font-style: normal;
}

.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) {
	.main-header-row .header-logo {
		display: none;
	}

	.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;
		font-family: var(--font-family-outift);
	}

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

	.scroll-down .header-logo {
		height: calc(var(--header-height));
		padding-block: 0.5rem;
	}
}

@media (max-width: 1200px) {
	.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: #000 !important;
	}

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

	.main-header-row .header-logo {
		width: calc(100% - 5rem);
		height: 100%;
		position: static;
		padding: 0;
	}

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

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

	.header-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		background-color: var(--theme-secondary);
		color: #fff;
		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: 1rem;
		margin-bottom: 2rem;
	}

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

	.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));
	}

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

	.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;
	font-weight: 700;
}

.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;
	font-family: var(--font-family);
}

.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 {
	color: var(--theme-secondary);
	font-size: 2.5rem;
	line-height: 2.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	width: 90%;
	letter-spacing: -1px;
}

.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;
	color: var(--theme-secondary);
	font-weight: 600;
}

.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-secondary);
	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-col .section-header {}

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

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

/* #endregion about */

/* #region services */
.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;
	font-family: var(--font-family);
	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-family: var(--font-family);
	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 gallery */

.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 / 1.3;
	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-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;
	border-radius: 1rem;
	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;
}

.home-whyus {
	background-image: url("../images/Vector.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.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;
	font-family: var(--font-family-inter);
	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-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%;
	filter: var(--primary-filter);
}

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

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

.home-whyus-title {
	font-size: 1.2rem;
	color: #000;
	line-height: 1;
	font-family: var(--font-family);
	font-weight: 700;
	font-style: normal;
}

.whyus-title {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin-bottom: 0.5rem;
}

.whyus-desc {
	font-size: 1rem;
	line-height: 1.3rem;
	max-width: 80%;
}

.home-whyus-desc {
	font-size: 16px;
	font-weight: 400;
	color: #666;
	font-family: var(--font-family);
	font-style: normal;
	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 {
	padding-bottom: var(--section-gap);
}

.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 {
	padding: 1.5rem 0;
}

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

.clients-swiper figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
}

.clients-swiper figure::before,
.clients-swiper figure::after {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	transition: 0.3s ease-in-out;
}

.clients-swiper figure::before {
	left: 0;
	top: 0;
	border-left: 2px solid var(--theme-primary);
	border-top: 2px solid var(--theme-primary);
	opacity: 0;
}

.clients-swiper figure::after {
	right: 0;
	bottom: 0;
	border-right: 2px solid var(--theme-primary);
	border-bottom: 2px solid var(--theme-primary);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.clients-swiper figure:hover {
	box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.08);
}

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

.clients-swiper figure:hover::before,
.clients-swiper figure:hover::after {
	opacity: 1;
}

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

/* #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;
	font-family: var(--font-family-outift);
}

.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-swiper {
	z-index: 1;
	position: relative;
	padding: 0;
	height: 100%;
}

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

.home-testimonials-swiper .testimonials-pagination {
	text-align: start;
	padding-left: 3rem;
}

.home-testimonials-swiper .testimonials-pagination .swiper-pagination-bullet {
	border-radius: 0;
	position: relative;
	margin: 0 4px;
}

.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-secondary);
}

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

.home-testimonial-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4rem 6rem;
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	height: 100%;
	padding: 0 15px;
	background-color: transparent;
}

.home-testimonial-content {
	padding: 0 2rem 2rem;
	position: relative;
	z-index: 1;
	gap: 1rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

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

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

.home-testimonial-desc {
	font-size: 1.0625rem;
	line-height: 1.8rem;
	font-family: var(--font-family);
	font-style: italic;
	letter-spacing: 0.5px;
	font-weight: 300;
}

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

.home-testimonial-name {
	font-size: 1rem;
	margin-bottom: 0.3rem;
	font-weight: 700;
	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-wrap: wrap;
	}

	.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 */

.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";
}

.blogs-section .section-header {
	margin-bottom: 2rem;
}

.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.5 / 1;
	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 {
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 70px;
	height: 70px;
	left: 10px;
	top: 10px;
	z-index: 1;
}

.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.1) translateX(5px);
}

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

.blog-content {
	position: relative;
	z-index: 1;
	padding: 1rem;
	color: #000;
	border: 1px solid #dadada;
	border-top: 0px solid #dadada;
}

.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;
	font-family: var(--font-family);
}

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

.blog-button {
	display: flex;
	align-items: center;
}

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

.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: 700;
	font-family: var(--font-family);
	font-size: 1.2rem;
	line-height: 1.7rem;
	min-height: 2lh;
	margin-bottom: 0.5rem;
}

.blog-desc-preview {
	font-family: var(--font-family);
	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;
	}

	.blog-slide {
		padding-inline: 1rem;
	}

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

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

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

	.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 {
	font-weight: 600;
}

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

#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 */

.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);
}


.team-box figure {
	width: 100%;
	aspect-ratio: 1 / 1.2;
	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;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #666;
}

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

.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%;
}

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

@media (max-width: 768px) {
	.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;
	}
}

/* #endregion contact */

/* #region footer */

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

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

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

.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%;
}

.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;
	color: #fff;
	background: var(--theme-primary);
}

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

.footer-social-links a:hover {
	background-color: #fff;
	color: #fff;
}

.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,
.contact-card .contact-details li .address-link {
	padding-left: 37px;
	line-height: 1.5rem;
}

.contact-card .contact-details li .address-link {
	font-size: 0.875rem;
	line-height: 1.175rem;
	font-weight: 500;
	text-decoration: underline;
	transition: 0.3s ease-in-out;
}

.contact-card .contact-details li .address-link:hover {
	color: var(--theme-primary);
}

.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) {
	.page-footer-row {
		flex-wrap: wrap;
	}

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

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

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

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

	.career-option {
		min-height: 300px;
	}

	.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.8rem;
	line-height: 2.3rem;
	font-weight: 300;
	min-height: 68px;
	margin-bottom: 0.7rem;
}

.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 {
	line-height: 1.5;
	font-weight: 300;
}

.career-option-actions {
	margin-top: 1rem;
	position: absolute;
	bottom: 10px;
}

.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;
}

#career-nav .swiper-button-prev,
#career-nav .swiper-button-next {
	width: 50px;
	height: 50px;
	background-color: white;
	font-size: 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
}

#career-nav .swiper-button-prev::after,
#career-nav .swiper-button-next::after {
	font-size: 1rem;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
	.career-option {
		min-height: 350px;
	}
}

/* #endregion */
/* #region Volunteer */
.home-testimonial-quote i {
	font-size: 3rem;
	color: var(--theme-primary);
}

.home-volunteer {
	position: relative;
	background-image: url("https://ld-wp73.template-help.com/wordpress/prod_30160/v4/wp-content/uploads/2020/11/Rectangle-99-3.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 80vh;
}

.volunteer-title {
	color: #fff;
	font-size: 4.5rem;
	line-height: 5rem;
	max-width: 1000px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	font-family: var(--font-family);
	margin-bottom: 1rem;
}

.volunteer-sub-text {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
	font-family: var(--font-family-outfit);
	max-width: 60%;
}

.volunteer-btn {
	margin-top: 1.5rem;
}

.numbers-header {
	margin-bottom: 25px;
}

.numbers-header .section-title {
	max-width: 750px;
	margin: auto;
}

.home-volunteer-title {
	padding: 0 2rem;
}

.home-about-mobile-view-image {
	display: none;
}

/* #endregion */
/* #region Numbers */
.numbers-grid {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 150px;
	color: #fff;
}

.numbers-grid .numbers-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.5rem;
}

.numbers-grid .numbers-card:nth-child(even) {
	background-color: var(--theme-primary);
}

.numbers-grid .numbers-card:nth-child(odd) {
	background-color: var(--theme-secondary);
}

.numbers-grid .numbers-card .numbers-icon {
	max-width: 50px;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.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;
	font-family: var(--font-family-outift);
}

/* #endregion */
/* #region extra */

.home-contact-details-col {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px;
}

.contact-image {
	margin: 0;
	text-align: center;
}

.contact-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.footer-col {
	flex-basis: 30%;
}

.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 {
	margin-top: 1rem;
}

.footer-social-links li a {
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-logo {
	max-width: 250px;
}

.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;
}

.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: 6rem;
	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;
}

.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%;
}

.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;
}

.footer-links li {
	border-bottom: 0.5rem;
}

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

#blog-nav,
#service-nav,
#other-product-nav,
#product-nav {
	position: relative;
	width: 110px;
	height: 50px;
	margin-left: 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 {
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: 1px solid #ccc;
	color: #000;
	left: unset;
	top: 0;
}

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

.product-box article {
	border: 1px solid #dadada;
	padding: 1rem;
}

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

.product-box figure .product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.5);
	transition: 0.3s ease-in-out;
}

.product-box figure:hover .product-overlay {
	opacity: 1;
}

.product-box figure .product-overlay .product-details {
	width: calc(100% - 4rem);
	left: 2rem;
	position: absolute;
	bottom: 2rem;
}

.product-details a:hover {
	color: var(--theme-primary);
}

.product-details .product-name {
	font-size: 1.3rem;
	line-height: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: capitalize;
	min-height: 2lh;
}

.product-details .product-description {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3rem;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	min-height: 1lh;
	margin-bottom: 0.5rem;
	color: var(--theme-secondary);
}

.product-details .cta-btn {
	font-size: 1rem;
	padding: 0.7rem 1.5rem;
}

.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 {
	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 {
	right: 60px;
}

#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 {
	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: 3;
}

.product-box .box {
	border: 1px solid #dadada;
	padding: 1.5rem;
	border-radius: 10px;
}

.product-box .box .category_name {
	color: var(--theme-secondary);
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 900;

}

.product-box .box .title {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-box-orient: 2;
	min-height: 2lh;
	font-size: 1.3rem;
	line-height: 1.8rem;
	margin-bottom: 10px;
}

.product-box .box small {
	font-size: 1rem;
	font-weight: 500;
	color: var(--theme-primary);
	margin-bottom: 1rem;
	display: inline-block;
	margin-left: 10px;
}

.product-box .box .desc {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-box-orient: 3;
	min-height: 3lh;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 0.5rem;
}

.product-box .box a {
	display: inline-block;
	margin-bottom: 10px;
}

.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;
	-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;
	-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;
	-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 (max-width: 1200px) {
	.home-banner-title {
		font-size: 4rem;
		line-height: 64px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 768px) {

	.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 {
		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: #fff;
	}

	.main-header {
		position: sticky;
		left: unset;
	}

	.custom-banner-bg {
		aspect-ratio: 1 / 1.2;
	}

	.custom-banner-content-wrapper {
		height: 250px;
		align-items: initial;
		overflow: hidden;
	}

	.custom-banner-content-wrapper .container {
		padding: 0;
		height: 100%;
	}

	.custom-banner-container {
		padding: 20px 30px;
		height: 100%;
		display: flex;
		align-items: center;
	}

	.custom-banner-title {
		font-size: 2rem;
		line-height: 2.3rem;
		margin-bottom: 1rem;
	}

	.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;
	}

	.footer-row {
		justify-content: center;
		text-align: center;
	}

	.footer-col {
		flex-basis: 100%;
	}

	.main-header {
		background: white;
	}

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

	.home-banner-slide::before {
		padding: 0;
	}

	.home-banner-bg {
		position: static !important;
	}

	.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: 3rem;
		font-weight: 500;
		text-align: center;
	}

	.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%;
	}

	.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) {
	.home-about .section-title {
		width: 100%;
	}

	.team-box article {
		text-align: center;
	}

	.service-card .service-header h3,
	.product-details .product-name {
		min-height: unset;
	}

	.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;
	}

	.header-banner .watermark {
		font-size: 5.5rem;
		letter-spacing: -1rem;
	}
}

.animate-number {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-number.visible {
	opacity: 1;
	transform: translateY(0);
}

.cursor-dot {
	width: 10px;
	height: 10px;
	background-color: var(--theme-primary);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	transition: background-color 0.2s ease;
}



@media only screen and (min-width: 769px) and (max-width: 1200px) {


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

	.main-header-row .header-logo {
		padding: 0 2rem;
		width: var(--logo-width);
	}
}

.steedLink {
	color: #fff !important;
	text-decoration: underline !important;
	display: inline-block !important;
	font-style: italic !important;
}

.steedLink:hover {
	color: #f3f3f3 !important;
}
/* #endregion */