/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #5f6063;
	--theme-primary: #6fac31;
	--theme-primary-dark: var(--theme-primary);
	--theme-primary-light: #9955c1;
	--theme-primary-bg-light: #e5b9ff;
	--theme-primary-bg-lighter: #e6f5fb;
	--theme-primary-fade: hsl(278deg 57% 39% / 30%);
	--theme-primary-alt: #fff;
	--theme-secondary: rgb(34, 123, 195);
	--theme-secondary-alt: #fff;
	--logo-primary-color: #001070;
	--logo-secondary-color: var(--theme-secondary);
	--container-width: 1280px;
	--container-sm-width: 1024px;
	--container-sup-sm-width: 991px;
	--container-lg-width: 1600px;
	--column-gutter: 16px;
	--background-shade: linear-gradient(rgb(249, 250, 251), rgb(240, 242, 244));
	/* https://angel-rs.github.io/css-color-filter-generator/ */
	--primary-filter: brightness(0) saturate(100%) invert(14%) sepia(81%) saturate(2257%) hue-rotate(240deg) brightness(101%) contrast(100%);
	/* --secondary-filter: brightness(0) saturate(100%) invert(26%) sepia(51%) saturate(5261%) hue-rotate(330deg) brightness(76%) contrast(111%); */
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--black-filter: brightness(0) saturate(100%) invert(0%);
	--header-height: 5rem;
	/*75px;*/
	--top-header-height: 3rem;
	--header-height-min: 60px;
	--logo-width: 7rem;
	/*110px;*/
	--header-spacing: 2rem;
	--section-gap: 8rem;
	--swiper-theme-color: var(--theme-primary);
	--nav-hover-color: var(--theme-primary);

	--green: 142 60% 40%;
	--blue: 207 70% 45%;
	--green-glow: 142 70% 50%;
	--black: rgb(20, 24, 31);
	--gray: rgb(87, 97, 117);

	--font-family: "Poppins", sans-serif;
	--font-family-alt: "Inter", sans-serif;
	--font-family-raj: "Rajdhani", sans-serif;
	--font-family-garamond: "Cormorant Garamond", sans-serif;
	--font-family-outfit: "Outfit", sans-serif;
	--icon-font: 900 1.2em "Line Awesome Free";
	--font-family-sg: "Space Grotesk", serif;
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

p,
figure {
	margin: 0;
	padding: 0;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

html {
	box-sizing: border-box;
	font-size: 16px;
	scroll-padding-top: var(--header-height);
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #ccc #fff;
}

body {
	color: var(--text-color);
	font-family: var(--font-family-outfit);
	line-height: 1.8;
	font-weight: 400;
	position: relative;
	background: rgb(9, 9, 11);
	background: #fff;
	scrollbar-width: thin;
	/* background-image: linear-gradient(rgba(220, 223, 229, 0.2) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(220, 223, 229, 0.2) 1px, rgba(0, 0, 0, 0) 1px); */
	background-size: 60px 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-outfit);
	line-height: 1.3;
	font-weight: 400;
}

ul,
ol {
	margin-bottom: 0;
	padding-left: 0;
}

figure {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;
}

figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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;
}

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);
	/* color: var(--theme-primary-alt); */
}

@media (max-width: 760px) {
	:root {
		--header-height: 70px;
		--logo-width: 150px;
		--section-gap: 4rem;
	}

	html {
		font-size: 14px;
	}
}

.marquee-section {
	margin-bottom: var(--section-gap);
}

.marquee-text {
	position: relative;
	font-size: 1.5rem;
	line-height: 1.8rem;
	margin-bottom: 0;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	/* text-align: center; */
	color: #333;
	padding-left: 2.5rem;
}

.marquee-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
}

.marquee-content {
	display: inline-flex;
	transition: transform linear;
}

.marquee-text {
	display: inline-block;
	margin-right: 1rem;
	font-size: 1.5rem;
	white-space: nowrap;
}

.marquee-text::after {
	content: "\f005";
	position: absolute;
	width: 2rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	left: 0;
	top: 50%;
	transform: translate(0%, -50%);
	font: var(--icon-font);
	background-repeat: no-repeat;
}

/* #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-sup-sm {
	width: var(--container-sup-sm-width);
}

.container-lg {
	width: var(--container-lg-width);
}

.light-bg {
	position: relative;
	background-color: var(--theme-primary-bg-lighter);
}

#contact {
	position: relative;
}

#contact::before,
#contact::after {
	/* content: ''; */
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	z-index: -1;
}

#contact::before {
	background-image: url("../images/bg/circles.png");
	background-size: 250px 500px;
	background-position: left 0 bottom 0;
	top: -200px;
}

#contact::after {
	background-image: url("../images/bg/circles.png");
	background-size: 250px 500px;
	background-position: left 0 bottom 0;
	transform: rotateY(180deg);
	top: 300px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	#contact::after {
		background-size: 50px 50px;
		background-position: right 20px top 10px;
	}
}

.light-bg-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: var(--theme-primary-fade);
}

.dark-bg {
	position: relative;
	background-color: #f8f8f8;
	color: #000;
}

.bg-img {
	position: relative;
}

.bg-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: 100% auto;
	background-image: var(--bg-img);
	/* opacity: 0.1; */
}

.bg-img > * {
	position: relative;
	z-index: 1;
}

.bg-img1 {
	position: relative;
}

.background-shade {
	background: var(--background-shade);
}

.bg-img1::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: 100% auto;
	background-image: var(--bg-img);
	/* opacity: 0.1; */
}

.section-gap {
	padding-block: var(--section-gap);
}

.section-desc {
	font-size: 1.125rem;
	line-height: 1.875rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
	color: var(--gray);
	max-width: 42rem;
}

.center-header .section-desc {
	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%);
}

.swiper-button-next,
.swiper-button-prev {
	background-color: #fff;
	color: var(--theme-primary);
	border: 1px solid #dadada;
	border-radius: 0.5rem;
	width: 40px;
	height: 40px;
	transition: 0.3s ease-in-out;
}

.banner-nav-btns .swiper-button-prev,
.banner-nav-btns .swiper-button-next {
	background-color: rgba(18, 18, 22, 0.5);
	border: 1px solid rgba(44, 44, 48, 0.5);
	border-radius: 5rem;
	padding: 0;
	width: 100%;
	max-width: 3rem;
	max-height: 3rem;
	height: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	color: #fff;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #fff;
	background-color: rgba(42, 109, 244, 0.2);
	border-color: rgba(42, 109, 244, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 0.75rem;
	font-weight: 900;
}

.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: 2px solid var(--swiper-theme-color);
	background-color: rgb(255 255 255 / 70%);
}

.header-banner {
	padding-block: 2rem;
	background: linear-gradient(135deg, rgb(17, 126, 57) 0%, rgb(20, 41, 82) 100%);
	color: var(--theme-secondary);
	position: relative;
}

.banner-pagination .swiper-pagination-bullet {
	height: 4px;
	background-color: #fff;
	transition: 0.3s ease-in-out;
	border-radius: 5rem;
	width: 2rem;
}

.banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--theme-primary);
	padding: 0.125rem 1.25rem;
	width: 4rem;
}

.swiper-pagination-bullet {
	border: 2px solid rgb(17, 17, 17);
	background: transparent;
	opacity: 1;
	transition: 0.3s ease-in-out;
	transform: translateY(50%);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme-secondary);
	border-color: var(--theme-secondary);
	width: 12px;
	height: 12px;
}

.header-banner .section-header {
	margin-bottom: 1rem;
	margin-top: 1rem;
	position: relative;
	z-index: 1;
}

.header-banner .section-header .section-title {
	font-size: 3.75rem;
	line-height: 1;
	font-weight: 600;
}

.header-banner .section-header .section-desc {
	line-height: 1.5rem;
	max-width: 48rem;
}

.section-header-crumbs {
	/* margin-top: 1rem; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
}

.section-header {
	margin-bottom: 1.5rem;
}

.dark-section .section-header .section-desc {
	color: #fff;
}

.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;
}

.crumb-active {
	/* color: var(--theme-primary); */
}

.site-page > .header-banner + .page-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.graident-anime-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	background-image: linear-gradient(to right, rgb(42, 109, 244), rgb(102, 51, 153), rgb(244, 106, 37));
	color: hsl(var(--primary-foreground));
	transition-property: all;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	animation-duration: 0.5s;
	animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	overflow: hidden;
	padding: 1rem 2rem;
	border-radius: 9999px;
	animation: 3s ease 0s infinite normal none running gradient-shift;
	background-size: 200% 200%;
}

@keyframes gradient-shift {
	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.cta-btn {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	font-size: 0.875rem;
	line-height: 1.5rem;
	background: linear-gradient(135deg, rgb(17, 126, 57) 0%, rgb(20, 41, 82) 100%);
	color: #fff;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	font-weight: 500;
	border-radius: 0.35rem;
	font-family: var(--font-family);
	background-size: 200%;
	transition: 0.3s ease-in-out;
}

.cta-btn:hover {
	transform: scale(1.025);
}

.fx-alpha-scramble.rcq {
	min-width: 15rem;
}
.fx-alpha-scramble-text {
	display: inline-flex;
	white-space: pre;
}

.fx-alpha-scramble-char {
	display: inline-block;
}

.WorkSection {
	position: relative;
	background: linear-gradient(120deg, hsl(243 92% 15%) 0%, hsl(243 80% 25%) 50%, hsl(130 89% 25%) 100%);
}

.WorkSection::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #ffffff0a 1px, transparent 1px), linear-gradient(to bottom, #ffffff0a 1px, transparent 1px);
	background-size: 24px 24px;
}

.workWithSection,
.pagesWorkSection {
	position: relative;
	z-index: 2;
}

.pagesWorkSection {
	background-color: #1f2834;
}

.workWithSection .section-header .section-desc {
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: 300;
}

.requestDemo,
.contactSales {
	border-radius: 0.5rem;
	padding: 0.5rem 1.5rem;
	background-color: #fff;
	color: var(--theme-primary);
	font-size: 0.875rem;
	line-height: 1.75rem;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.requestDemo {
	background-color: #fff;
	color: var(--theme-primary);
	border: 1px solid var(--theme-primary);
}

.contactSales {
	background-color: var(--theme-primary);
	color: #fff;
}

.contactSales:hover,
.requestDemo:hover {
	transform: translateY(-2px);
	opacity: 1;
}

.workWithSection .section-header .section-desc,
.workWithSection .section-header .section-title {
	color: #fff;
}

.workWithSection .section-header .section-title {
	font-size: 4.5rem;
	line-height: 5.25rem;
	font-weight: 900;
	text-transform: none;
}

.section-round-title {
	font-size: 1rem;
	line-height: 1.5rem;
	margin: auto;
	margin-bottom: 1rem;
	margin-top: 1.5rem;
	color: #f3b200;
	padding: 0.5rem 1rem;
	border-radius: 5rem;
	background-color: rgba(255, 255, 255, 0.25);
	display: inline-block;
	max-width: max-content;
	text-transform: uppercase;
	font-weight: 600;
}

.workWithSection .section-header .section-desc {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.cta-btn-alt {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-color: var(--theme-secondary);
}

.cta-btn-alt:hover {
	background-color: var(--theme-secondary-alt);
	color: var(--theme-secondary);
}

.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::after i {
	width: 20px;
	text-align: center;
} */

.application-link-content {
	overflow: hidden;
	/* height: 100%; */
	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: var(--theme-primary-alt);
	border-radius: 0.5rem;
	font-weight: 500;
}

.page-pagination .page-numbers:hover {
	background-color: var(--theme-primary-alt);
	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);
}

.color-2 {
	color: var(--theme-secondary);
}

.hlt-alt {
	color: #000;
	font-family: var(--font-family);
	font-weight: 200;
	font-style: normal;
}

.section-header {
	margin-bottom: 4rem;
	position: relative;
	width: 100%;
}

.section-header.left-header {
	text-align: left;
}

.section-title-sm {
	/* text-transform: uppercase; */
	/* letter-spacing: 3px; */
	font-weight: 300;
	/* color: var(--theme-primary); */
	margin-top: 1em;
	font-size: 1.3rem;
	line-height: 1.3;
}

.section-subtitle {
	color: rgb(97, 97, 97);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
	margin-bottom: 1rem;
}

.section-title {
	font-family: var(--font-family-alt);
	font-weight: 300;
	font-style: normal;
	font-size: 4rem;
	line-height: 5rem;
	position: relative;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.section-title.sm {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.section-title.md {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.section-title span {
	color: transparent;
	background-clip: text;
	background-image: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
}

.home-about .section-title {
	font-size: 3.75rem;
	line-height: 3.75rem;
}

.good-tabs {
	border-bottom: 0px;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 10px 0;
	gap: 1rem;
	position: sticky;
	top: var(--header-height);
	max-height: calc(100vh - var(--header-height) - 2rem);
	overflow: auto;
}

.good-tabs .nav-link {
	border-radius: 10px;
	border: 1px solid #dadada;
	background-color: #fff;
	color: #333;
	display: flex;
	align-items: center;
	gap: 5px;
	width: 100%;
	display: inline-block;
}

.good-tabs .nav-link img {
	width: 15px;
	height: 15px;
	filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(10%) hue-rotate(209deg) brightness(93%) contrast(103%);
}

.good-tabs .nav-link.active {
	background-color: var(--theme-primary);
	color: #fff;
	border-color: var(--theme-primary);
}

.portfolio-tabs .nav-link:hover {
	border-color: var(--theme-primary);
}

.good-tabs .nav-link.active img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(92%) saturate(1%) hue-rotate(235deg) brightness(103%) contrast(102%);
}

.portfolio-tabs {
	border-bottom: 1px solid #dadada;
	padding-bottom: 1.5rem;
	height: auto;
}

.portfolio-image {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
}

.portfolio-image img,
.portfolio-image iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-image figcaption {
	background-color: #001170a9;
	color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.8rem;
	padding: 0.5rem 1rem;
}

.portfolio-tabs .nav-item {
	display: grid;
}

.portfolio-tabs .nav-link {
	width: 125px;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
	padding: 0;
}

.portfolio-tabs .nav-link.active img,
.portfolio-tabs .nav-link img {
	filter: unset;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.portfolio-figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
}

.portfolio-figure figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #001170a9;
	color: #fff;
	text-align: center;
}

.portfolio-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dark-bg .section-title {
	color: var(--theme-primary);
	font-family: var(--font-family);
	font-weight: 300;
	font-style: normal;
	font-size: 2.5rem;
	line-height: 3rem;
}

.section-title::after {
	/* content: ""; */
	position: absolute;
	bottom: 0;
	left: 0;
	width: 5rem;
	height: 0.25rem;
	background-color: var(--theme-primary);
}

.center-header {
	text-align: center;
	max-width: 768px;
	margin-inline: auto;
}

.header-banner .section-title::after,
.center-header .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

[data-bg-shadow] {
	position: relative;
	/* overflow: hidden; */
}

[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);
}

.techCard {
	border-radius: 0.5rem;
	background-color: rgba(250, 250, 250, 0.5);
	border: 1px solid rgb(225, 231, 239);
	overflow: hidden;
}

.techCard figure {
	max-width: 100%;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 2.5 / 1;
}

.techCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.techCard article {
	padding: 1.5rem;
}

.techCard article .icon {
	display: block;
	max-width: 3rem;
	width: 100%;
	background-color: var(--theme-secondary);
	padding: 0.75rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
}

.techCard article .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.techCard article .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: var(--font-family-garamond);
}

.techCard article ul {
	list-style: disc;
	padding-left: 1.125rem;
	color: rgb(87, 99, 117);
	font-size: 1rem;
	line-height: 1.5rem;
	font-family: var(--font-family-outfit);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.techCard article ul li::marker {
	font-size: 1.25rem;
	color: var(--theme-secondary);
}

.techSwiper figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 2.5 / 1;
	overflow: hidden;
}

.techSwiper figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@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-title {
		font-size: 1.875rem;
		line-height: 2.175rem;
	}

	.section-desc {
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin-top: 0;
	}

	.banner-swiper-nav {
		--swiper-navigation-size: 20px;
		padding: 30px 10px;
	}

	.header-banner .section-header {
		margin-top: 0;
		margin-bottom: 0;
	}

	.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;
	}
}

@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 header */

.top-header {
	background-color: #193366;
	overflow: hidden;
}

.top-header .top-thin-layer {
	background-color: #00790b;
	max-height: 14px;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.top-header-row {
	display: flex;
	height: var(--top-header-height);
	padding-block: 0.75rem;
	align-items: center;
	justify-content: space-between;
	gap: 0 2rem;
	font-size: 1rem;
	color: #fff;
	position: relative;
	z-index: 2;
}

.header-social-links {
	margin-left: auto;
}

.top-header .social-links a {
	background-color: transparent;
}

.social-links {
	display: flex;
	gap: 0.25rem;
	/*padding-block: 0.6rem;*/
}

.main-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	z-index: 50;
	transition: 0.3s ease-in-out;
	border-bottom: 1px solid transparent;
}

.scroll-down .main-header {
	/* background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(24px);
	border-color: rgba(220, 223, 229, 0.5);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px; */
}

.main-header-row {
	display: flex;
	align-items: center;
	height: var(--header-height);
	gap: 1.25rem;
	position: relative;
	transition: 0.3s ease-in-out;
	justify-content: space-between;
}

.menu-active .main-header {
	background-color: #fff;
}

.scroll-down .main-header .main-header-row {
	--header-height: 5rem;
}

.header-logo {
	width: var(--logo-width);
	height: calc(var(--header-height));
	/* background-color: #fff; */
	padding: 0.5rem 0;
	align-self: flex-end;
	transition: ease 0.3s;
}

.header-logo img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: left;
}

.header-nav {
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease;
	z-index: 998;
}

.header-nav::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(9, 9, 11, 0.6);
	backdrop-filter: blur(6px);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.header-menu-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	height: calc(100dvh - var(--header-height));
	background: #fff;
	border-radius: 0;
	padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
	padding-inline: 25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	transform: translateY(40px);
	opacity: 0;
	transition:
		transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.3s ease;
}

.header-nav-list {
	display: flex;
	align-items: start;
	position: relative;
	/* text-transform: uppercase; */
	font-weight: 500;
	gap: 0.75rem;
	height: calc(100dvh - var(--header-height));
	font-size: 1rem;
	color: var(--theme-primary-dark);
	flex-direction: column;
	text-align: start;
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: auto;
	scrollbar-width: none;
}

.header-nav-list > li {
	height: auto;
	display: flex;
	flex-direction: column !important;
	align-items: stretch;
	padding: 0;
	width: 100%;
}

.header-nav-list > li.havesubmenu > a {
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.header-nav-section .social-links-title {
	font-size: 1.5rem;
	font-weight: 300;
	color: #000;
	margin-bottom: 1rem;
}

.header-nav-section .social-links {
	flex-direction: column;
	align-items: flex-end;
}

.header-nav-section .social-links li a {
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: 300;
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
	color: #000;
	text-align: end;
}

.banner-btn {
	background-color: transparent;
	border: 1px solid #333;
	color: #333;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-alt);
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	display: inline-block;
	transition: 0.3s ease-in-out;
	transform-origin: bottom;
}

.banner-btn i {
	transition: 0.3s ease-in-out;
}

.header-nav-list > li > a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	color: #000;
	font-family: var(--font-family-alt);
	font-style: normal;
	font-weight: 300;
	font-size: 2.5rem;
	line-height: 3rem;
	position: relative;
	border-radius: 0.33rem;
	padding: 0.5rem 0.75rem;
	width: 100%;
}

.custom-cursor {
	width: 36px;
	height: 36px;
	border: 2px solid #787878;
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	/* Allows you to click "through" the circle */
	z-index: 9999;
	/* Smooth transition for the movement */
	transform: translate(-50%, -50%);
	will-change: transform;
	opacity: 0.5;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	/* Crucial: keeps the circle centered on coordinates */
	transition:
		width 0.3s ease,
		height 0.3s ease,
		border-color 0.3s ease,
		transform 0.1s ease-out;
	will-change: width, height, transform;
}

.is-magnate.custom-cursor {
	width: 70px;
	height: 70px;
	border-color: var(--theme-secondary);
	border-width: 2px;
}

.nav-active > a {
	color: var(--theme-secondary) !important;
	font-weight: 500 !important;
	/* transform: skew(-15deg, 0deg) !important; */
}

.header-nav-list > li.havesubmenu > a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding-right: 0.5rem;
	position: relative;
}

.header-nav-list > li.havesubmenu::after {
	content: none;
}

.header-nav-list > li.havesubmenu > a::after {
	content: "\f063";
	max-width: 2.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	font: 900 1.5rem "Font Awesome 6 Free";
	transition: transform 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-nav-list > li.havesubmenu > a:hover,
.header-nav-list > li.havesubmenu.is-open > a {
	color: var(--theme-secondary);
	/* transform: skew(-15deg, 0deg); */
}

.header-nav-list > li.havesubmenu.is-open > a::after {
	transform: rotateZ(-180deg);
}

.header-nav-list > li > a::before {
	/* content: ''; */
	position: absolute;
	height: 2px;
	left: 50%;
	bottom: 0;
	transform: translateY(2px);
	width: 100%;
	transition: 0.3s ease-in-out;
	transform: translateX(-50%) scaleX(0);
	transform-origin: left;
	background: var(--theme-primary);
}

.header-nav-list > li > a:hover::before {
	transform: translateX(-50%) scaleX(1);
}

.header-resp-action {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.resp-menu-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: transparent;
	border: 0;
	padding: 0.35rem 0.5rem;
	font-family: var(--font-family-alt);
	font-size: 0.875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
}

.menu-btn-text {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.5rem;
	width: 4.5rem;
	height: 1em;
	line-height: 1em;
	overflow: hidden;
}

.menu-text {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	text-align: center;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.menu-text-main {
	opacity: 1;
	transform: translateY(0);
}

.menu-text-hover {
	opacity: 0;
	transform: translateY(100%);
}

.menu-text-active {
	opacity: 0;
	transform: translateY(100%);
}

.resp-menu-btn:hover .menu-text-main {
	opacity: 0;
	transform: translateY(-100%);
}

.resp-menu-btn:hover .menu-text-hover {
	opacity: 1;
	transform: translateY(0);
}

.menu-active .menu-text-main,
.menu-active .menu-text-hover,
.menu-active .menu-text-active {
	opacity: 0;
	transform: translateY(-100%);
}

.menu-active .menu-text-active {
	opacity: 1;
	transform: translateY(0);
}

.menu-active .resp-menu-btn:hover .menu-text-hover {
	opacity: 0;
	transform: translateY(-100%);
}

.menu-btn-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	display: grid;
	place-items: center;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease;
}

.menu-btn-icon .bars {
	position: relative;
	width: 50px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-btn-icon .bars::before {
	content: "";
	width: 1.25rem;
	height: 2px;
	background-color: rgb(17, 17, 17);
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	transform: translate(9px, -50%);
	transition: 0.3s ease-in-out;
}

.menu-btn-icon .bars::after {
	content: "";
	width: 0.875rem;
	height: 2px;
	background-color: rgb(17, 17, 17);
	position: absolute;
	top: calc(50% + 4px);
	left: 0;
	transform: translate(9px, -50%);
	transition: 0.3s ease-in-out;
}

.menu-btn-icon .bars:hover::before,
.menu-btn-icon .bars:hover::after {
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.menu-btn-icon i {
	font-size: 1.25rem;
	line-height: 1;
}

.header-resp-nav {
	display: grid;
	gap: 1rem;
}

.header-resp-nav .social-links {
	margin-top: 0.5rem;
}

.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 .bars {
	display: none;
}

.menu-active .header-nav {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	background-color: #fff;
}

.menu-active .header-nav::before {
	opacity: 1;
}

.menu-active .header-menu-panel {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.12s;
}

.menu-closing .header-nav {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.menu-closing .header-nav::before {
	opacity: 0;
}

.menu-closing .header-menu-panel {
	transform: translateY(-40px);
	opacity: 0;
	transition-delay: 0s;
}

.dropdown-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.dropdown-grid a {
	color: #000;
	text-decoration: none;
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: 300;
	transition: all 0.2s ease-in-out;
	font-family: var(--font-family-alt);
	width: 100%;
	display: inline-block;
	margin-bottom: 0.25rem;
	padding-left: 1.25rem;
}

.dropdown-grid a:hover {
	color: var(--theme-secondary);
}

/* Storage for PHP generated HTML */
.submenu-data {
	display: block;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition:
		max-height 0.35s ease,
		opacity 0.25s ease,
		transform 0.35s ease;
	position: static;
	width: 100%;
}

.header-nav-list > li.is-open .submenu-data {
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
	margin-top: 0.5rem;
}

.dimdim-1 {
	position: absolute;
	width: 600px;
	height: 600px;
	top: 25%;
	left: -25%;
	background: rgba(42, 109, 244, 0.2);
	filter: blur(120px);
	animation: pulse-glow 2s ease-in-out infinite;
	opacity: 1;
	z-index: 2;
}

.dimdim-2 {
	position: absolute;
	background-color: rgba(244, 106, 37, 0.2);
	filter: blur(100px);
	bottom: 25%;
	right: -25%;
	width: 500px;
	height: 500px;
	animation: pulse-glow 2s ease-in-out infinite;
	opacity: 1;
	z-index: 2;
}

@keyframes pulse-glow {
	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}
}

.header-nav-dropdown {
	position: relative;
}

.header-nav-dropdown > a {
	padding-right: 1.5em;
}

.header-nav-dropdown > a::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid var(--theme-primary);
	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: 17rem;
	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;
	overflow: hidden;
	padding: 0.5rem;
}

.havesubmenu {
	position: relative;
	flex-direction: row !important;
	justify-content: flex-start !important;
	position: relative;
}

.havesubmenu::after {
	content: "\f107";
	font: 900 0.875rem "Font Awesome 6 Free";
	transition: 0.2s ease-in-out;
	z-index: 1;
}

.havesubmenu .header-nav-dropdown-list {
	transform: scale(0, 1);
	color: #000;
	max-height: 300px;
	overflow-y: auto;
	scrollbar-width: thin;
}

.havesubmenu .header-nav-dropdown-list li {
	border-radius: 0.75rem;
}

.header-nav-dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	width: 100%;
	min-width: 17rem;
	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;
}

.havesubmenu {
	position: relative;
}

.havesubmenu .header-nav-dropdown-list {
	background-color: #fff;
	border-radius: 0.75rem;
	transform: scale(1, 0);
}

.header-nav-dropdown:hover > .header-nav-dropdown-list,
.havesubmenu:hover > .header-nav-dropdown-list,
.havesubmenu .header-nav-dropdown-list:hover {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1, 1);
}

.havesubmenu:hover .header-nav-dropdown-list {
	opacity: 1;
	transform: scale(1, 1);
}

.header-nav-dropdown-list li:last-child {
	border-bottom: none;
}

.header-nav-dropdown-list li a {
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
}

.header-nav-dropdown-list a {
	display: block;
	color: rgb(103, 111, 126);
	transition: ease 0.5s;
	line-height: 1.2;
	font-family: var(--font-family);
	font-style: normal;
}

.header-nav-dropdown-list li:hover {
	background-color: rgb(243, 244, 246);
}

.header-nav-dropdown-list li:hover > a {
	color: rgb(41, 48, 61);
}

.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%;
	/* padding-left: var(--header-spacing); */
	/* border-left: 1px solid #dadada; */
}

.header-get-started {
	font-weight: 700;
	font-family: var(--theme-primary-alt);
	background: linear-gradient(to right, rgb(42, 109, 244), rgb(244, 106, 37));
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.125rem;
	border-radius: 5rem;
	transition: 0.3s;
}

.cta-btn i,
.header-get-started i {
	font-size: 0.75rem;
	line-height: 1.125rem;
	margin-right: 0.25rem;
}

.cta-btn,
.header-get-started a {
	display: inline-block;
	padding: 0.66rem 1.32rem;
	white-space: nowrap;
	background-image: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
	border-radius: 0.5rem;
}

.cta-btn.anime {
	animation: 3s ease 0s infinite normal none running gradient-shift;
}

.cta-btn:hover,
.header-get-started:hover {
	transform: translateY(-2px);
}

.home-about-desc {
	margin-bottom: 1.75rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: rgb(108, 121, 147);
	font-family: var(--font-family);
	font-style: normal;
}

.banner-stats {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.banner-stats .stat {
	background-color: rgba(232, 234, 238, 0.5);
	border-radius: 2rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	padding: 0.5rem 1rem;
	font-family: var(--font-family-alt);
	color: rgb(87, 97, 117);
}

.banner-stats .stat i {
	margin-right: 0.5rem;
	color: var(--theme-primary);
}

@keyframes moveupdown {
	0%,
	100% {
		transform: translate(-50%, 0);
	}

	50% {
		transform: translate(-50%, 50%);
	}
}

@keyframes scrollupdown {
	0%,
	100% {
		transform: translate(-50%, 0);
	}

	50% {
		transform: translate(-50%, 150%);
	}
}

.mouse {
	position: absolute;
	left: 50%;
	bottom: 2rem;
	transform: translateX(-50%);
	max-width: 1.5rem;
	max-height: 2.5rem;
	width: 100%;
	height: 100%;
	border-radius: 2rem;
	border: 2px solid rgba(87, 97, 117, 0.3);
	animation: moveupdown 2s infinite;
}

.mouse .scroll-pin {
	width: 0.25rem;
	height: 0.375rem;
	background-color: var(--theme-primary);
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translateX(-50%);
	border-radius: 1rem;
	animation: scrollupdown 2s infinite;
}

@media (min-width: 1200px) {
	.header-nav-item {
		/* padding-right: 2rem; */
		/* border-right: 1px solid #eaeaea; */
		/* color: #666; */
		color: rgb(152, 164, 179);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 30rem;
	}

	.header-nav-item .header-nav-item-icon i {
		vertical-align: middle;
	}

	.header-nav-item .header-nav-item-text a {
		font-family: var(--font-family-outfit);
		font-size: 14px;
	}

	.scroll-down .header-logo {
		/* width: auto; */
		/* height: 100%; */
		height: calc(var(--header-height));
		padding: 0.5rem 0;
		transform: translate(0);
		/* bottom: 0; */
	}
}

@media (max-width: 1200px) {
	.header-logo {
		transform: translate(0);
	}

	.dds {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.dds figure {
		width: 35px;
		height: 35px;
	}

	.dds figure img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	/* .header-menu-open-icon {
		color: #fff;
	} */
	.header-nav-contact,
	.top-header,
	.main-header-row > .social-links,
	.header-get-started {
		display: none;
	}

	.home-about-desc {
		font-size: 1.1rem !important;
	}

	.section-header-crumbs {
		margin-top: 0 !important;
	}

	.social-links a {
		/* border: 1px solid #000 !important; */
		color: #000 !important;
	}

	.main-header-row {
		height: var(--header-height);
		padding-left: 0;
		gap: 0;
	}

	.main-header-row .header-logo {
		padding-block: 0.5rem;
		width: calc(100% - 5rem);
		height: 100%;
		position: static;
		padding-left: 0.5rem;
	}

	.header-resp-action {
		margin-left: auto;
		flex: none;
	}

	.resp-menu-btn {
		font-size: 0.75rem;
		padding: 0.35rem 0.25rem;
	}

	.header-nav {
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
	}

	.header-menu-panel {
		width: 100%;
		height: calc(100vh - var(--header-height));
		padding: 2rem 1.5rem;
	}

	.header-nav-list {
		align-items: center;
	}

	.scroll-down .main-header {
		backdrop-filter: none;
		background-color: #fff;
	}

	.menu-active .main-header {
		background-color: #fff;
		color: #000;
	}

	.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;
		padding-bottom: 1rem;
		/* margin-top: auto; */
	}

	.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-dark);
	--button-bg: var(--theme-secondary);
	--button-fg: var(--theme-secondary-alt);
}

.home-banner-slide::before {
	padding-top: 33%;
	background-color: var(--theme-primary-dark);
}

.home-banner-slide img {
	opacity: 1;
	/* reduce to get background color effect*/
}

.home-banner-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	/* padding-top: var(--header-height); */
}

.home-banner-wrapper > .container {
	height: 100%;
	display: flex;
	align-items: center;
}

.home-banner-content {
	max-width: 650px;
	width: 100%;
	position: relative;
	color: #fff;
	padding: 3rem 2rem;
	background-color: #da3223ad;
}

.home-banner-content::before {
	/* content: ""; */
	position: absolute;
	inset: 0;
	background-color: var(--title-bg);
	z-index: -1;
	opacity: 0.5;
}

.home-banner-title {
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 3rem;
	margin-bottom: 1rem;
	/* text-shadow: 0.15rem 0.2rem 0.2rem rgb(0 0 0 / 25%); */
}

.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-text::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6rem;
	height: 0.2rem;
	background-color: currentColor;
} */

.home-banner-link {
	background-color: #f67d2f;
	border: 2px solid #f67d2f;
	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: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.home-banner-link:hover::before {
	transform: skewX(-35deg) translateX(0%);
}

.customForm label {
	font-size: 0.825rem;
	line-height: 1.125rem;
	font-weight: 500;
}

.customForm .form-control {
	border: 1px solid rgb(229, 231, 235);
	border-radius: 0.375rem;
	padding: 0.45rem;
	font-size: 0.75rem;
}

.customForm .form-control::placeholder {
	font-size: 0.8rem;
	color: rgb(108, 121, 147);
}

.customForm textarea {
	min-height: 100px;
}

.home-banners {
	width: 100dvw;
	min-height: calc(100dvh - var(--header-height));
	max-height: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-bottom: 5rem;
}

.banner-content {
	max-width: 100%;
	width: 100%;
	margin-inline: auto;
	height: 100%;
	color: #000;
	transition: 0.5s ease-in-out;
	opacity: 0.5;
	z-index: 2;
	text-align: center;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.banner-content .title {
	font-size: 4.5rem;
	line-height: 1;
	font-weight: 300;
}

.banner-content .line1,
.banner-content .line2 {
	font-size: 5.625rem;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.banner-content .bannerBadge {
	position: relative;
	font-family: var(--font-family-alt);
	font-size: 0.75rem;
	line-height: 1.25rem;
	font-weight: 400;
	letter-spacing: 1.2px;
	background: rgba(246, 247, 248, 0.5);
	color: rgb(20, 24, 31);
	border: 1px solid rgba(41, 163, 86, 0.3);
	border-radius: 9999px;
	display: inline-block;
	padding: 0.5rem 1.5rem;
	margin-bottom: 2rem;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.banner-content .bannerBadge::before {
	/* content: ''; */
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 8px;
	overflow: hidden;
	background-color: rgb(87, 97, 117);
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.swiper-slide.swiper-slide-active .banner-content {
	opacity: 1;
}

.roll-stage {
	perspective: 1500px;
	height: 120px;
	/* Match font-size approximate height */
	width: 100%;
	display: flex;
	justify-content: center;
}

/* The Rotating Block */
.roll-block {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	/* Start rotated so the text (bottom face) is hidden underneath */
	transform: rotateX(-90deg);
	will-change: transform;
}

.roll-block span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4.5rem;
	line-height: 1;
	font-weight: 300;
	backface-visibility: hidden;
}

/* FRONT FACE: Empty as requested */
.face-front {
	transform: rotateX(0deg) translateZ(60px);
	background: transparent;
}

/* BOTTOM FACE: Contains the text, hidden on load */
.face-bottom {
	transform: rotateX(-90deg) translateZ(60px);
	color: var(--text-dark);
}

/* Line 2 Style: Transparent Stroke */

.content-filler {
	height: 100vh;
	background: #fff;
	display: flex;
	justify-content: center;
	padding-top: 50px;
	color: #ccc;
	font-size: 1.2rem;
}

.reveal-section {
	position: relative;
	width: 100%;
	height: 100dvh;
	min-height: 900px;
	background-color: rgb(244, 244, 244);
	/* Initial white background */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* The green circle layer */
.reveal-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-secondary);
	/* Starts as a tiny point in the dead center */
	clip-path: circle(0% at 50% 50%);
	z-index: 1;
}

.reveal-text {
	/* Font size range between 48px and 64px */
	font-size: 2.25rem;
	line-height: 3.5rem;
	font-weight: 300;
	color: #fff;
	text-align: center;
	margin: 0;
	max-width: 1280px;
	margin-inline: auto;
	text-transform: tight;
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.reveal-text span {
	display: block;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.banner-line {
	width: 100%;
	display: flex;
	justify-content: center;
	/* Ensures text starts at exact horizontal center */
	padding: 10px 0;
}

.banner-line .magnetic-text {
	display: block;
	max-width: 90%;
	/* Prevents text from hitting screen edges */
	margin: 0 auto;
	text-align: center;
	will-change: transform;
}

.banner-line .magnetic-text:hover {
	color: var(--theme-secondary);
}

.banner-content .title.line1 {
	color: var(--black);
}

.banner-content .title.line2 {
	margin-bottom: 1.5rem;
}

.banner-content .subtitle {
	font-size: 1.25rem;
	line-height: 1.75rem;
	max-width: 42rem;
	margin-inline: auto;
	margin-bottom: 2.5rem;
	transform: translateY(1.5rem);
	transition: 0.875s ease-in-out;
	color: rgb(87, 97, 117);
	font-family: var(--font-family-alt);
}

.watchStoryBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	background-color: transparent;
	color: rgb(250, 250, 250);
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	animation-duration: 0.3s;
	animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	border: 1px solid rgb(44, 44, 48);
}

.watchStoryBtn:hover {
	background: rgb(36, 36, 40);
	color: rgb(250, 250, 250);
	border-color: rgb(161, 161, 170);
}

.watchStoryBtn i {
	margin-right: 0.5rem;
}

.banner-content a {
	margin-right: 1rem;
}

.banner-content a:last-child {
	margin-right: 0;
}

.banner-content a i {
	margin-left: 0.5rem;
}

.banner-content a:hover {
	scale: 1.05;
}

.swiper-slide.swiper-slide-active .banner-content .subtitle {
	transition-delay: 0.25s;
}

.swiper-slide.swiper-slide-active .banner-content .desc {
	transition-delay: 0.4s;
}

.swiper-slide.swiper-slide-active .banner-content .cta-btn {
	transition-delay: 0.55s;
}

.swiper-slide.swiper-slide-active .banner-content .subtitle,
.swiper-slide.swiper-slide-active .banner-content .desc,
.swiper-slide.swiper-slide-active .banner-content a {
	transform: translateY(0);
	opacity: 1;
}

#banner-swiper .numbers {
	margin-top: 4rem;
	position: relative;
	height: auto;
	display: grid;
	justify-content: center;
	text-align: center;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	width: 100%;
	color: #fff;
	z-index: 4;
}

.green-box {
	background-color: rgba(41, 163, 86, 0.1);
	border-radius: 50%;
	filter: blur(64px);
	width: 24rem;
	aspect-ratio: 1 / 1;
	position: absolute;
	bottom: 0;
	left: 25%;
	transform: translateY(50%);
}

.blue-box {
	background-color: rgba(34, 123, 195, 0.1);
	border-radius: 50%;
	filter: blur(64px);
	width: 24rem;
	aspect-ratio: 1 / 1;
	position: absolute;
	bottom: 0;
	right: 25%;
	transform: translateY(50%);
}

#deliver-excellence {
	scroll-margin-top: -5rem;
}

.deliver-excellence {
	background-image: linear-gradient(rgb(255, 255, 255), rgba(232, 234, 238, 0.2), rgb(255, 255, 255));
	position: relative;
	overflow: hidden;
}

.upline {
	position: absolute;
	left: 0;
	top: 0;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(220, 223, 229), rgba(0, 0, 0, 0));
	width: 100%;
	height: 1px;
}

.deliver-excellence .section-header {
	margin-bottom: 4rem;
}

.deliver-excellence .section-title {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.deliver-excellence .section-desc {
	color: var(--gray);
	font-family: var(--font-family-alt);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
}

.numberCard {
	border-radius: 0.75rem;
	padding: 1.5rem;
	text-align: center;
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(220, 223, 229, 0.5);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	transition: 0.3s ease-in-out;
}

.numberCard:hover {
	border-color: rgba(41, 163, 86, 0.3);
	box-shadow: rgba(46, 184, 96, 0.15) 0px 10px 40px 0px;
}

.numberCard .icon {
	margin-inline: auto;
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	font-size: 1.5rem;
	border-radius: 0.75rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--theme-primary);
	background-color: rgba(41, 163, 86, 0.1);
}

.numberCard .icon img {
	width: 1.5rem;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.numberCard .number {
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
	font-family: var(--font-family-outfit);
	color: transparent;
	background-image: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
	background-clip: text;
	margin-bottom: 0.5rem;
}

.numberCard .title {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
	color: rgb(87, 97, 117);
}

.numberSpace .number {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 700;
	font-family: var(--font-family-outfit);
	background: var(--theme-primary);
	background-clip: text;
	color: transparent;
	margin-bottom: 0.25rem;
}

.banner-content .numberSpace .head {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	color: rgb(235 235 235);
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

@media (max-width: 768px) {
	.workWithSection {
		padding: 4rem 0;
	}

	.header-banner .section-header .section-title {
		font-size: 2.25rem;
		line-height: 2.75rem;
	}

	.workWithSection .section-header .section-title {
		font-size: 2.25rem;
		line-height: 3rem;
		margin-bottom: 1rem;
	}

	.workWithSection .section-header .section-desc {
		font-size: 1.125rem;
		line-height: 1.875rem;
	}

	.home-banner-slide::before {
		padding-top: 75%;
	}

	.home-banner-content {
		/* padding: 1.3rem; */
		/* width: 80%; */
	}

	.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;
	overflow: hidden;
}

.home-about .dimdim-1 {
	background-color: rgba(244, 106, 37, 0.05);
	filter: blur(120px);
	width: 500px;
	height: 500px;
	left: 0;
}

.home-about .dimdim-2 {
	background-color: rgba(42, 109, 244, 0.05);
	filter: blur(150px);
	top: 0;
	right: 0;
	bottom: 0;
}

.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-dark);
}

.aboutGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	grid-auto-flow: dense;
	gap: 1.5rem;
	grid-auto-rows: min-content;
}

.aboutGrid .box {
	border-radius: 0.5rem;
	overflow: hidden;
	color: #fff;
	padding: 2rem;
	border: 1px solid rgb(226, 228, 233);
	transition: 0.3s ease-in-out;
}

.aboutGrid .box:hover {
	transform: scale(1.03);
}

.aboutGrid .bigBox {
	grid-column: span 2;
	grid-row: span 2;
	padding: 3rem;
	border-radius: 1rem;
	position: relative;
}

.bgC1,
.bgC2 {
	position: absolute;
	z-index: 0;
}

.bgC1 {
	inset: 0;
	background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
}

.bgC2 {
	background-image: linear-gradient(to right bottom, rgb(22, 50, 90), rgba(22, 50, 90, 0.9), rgb(54, 61, 73));
	/* filter: blur(80px); */
	transition: 0.3s ease-in-out;
	inset: 0;
}

.exploreBtn {
	color: var(--theme-primary);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

.exploreBtn i {
	transform: rotateZ(-45deg);
	margin-left: 0.5rem;
	transition: 0.1s ease-in-out;
	font-size: 0.75rem;
	line-height: 1rem;
}

.exploreBtn:hover i {
	transform: translate(4px, -4px) rotateZ(-45deg);
}

.aboutGrid .bigBox:hover .bgC2 {
	transform: scale(1.5);
}

.aboutGrid .bigBox:hover .exploreBtn i {
	transform: translate(5px, -5px) rotateZ(-45deg);
}

.iconBox {
	padding: 1rem;
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.iconBox i {
	font-size: 2rem;
	line-height: 1;
	color: #fff;
}

.aboutGrid .bigBox .title {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 700;
	font-family: var(--font-family-outfit);
	letter-spacing: -0.9px;
	margin-bottom: 1rem;
}

.aboutGrid .bigBox .description {
	font-size: 1.125rem;
	line-height: 1.875rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 512px;
}

.numberBox {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	background-color: #fff;
	min-height: 225px;
}

.numberBox.TM {
	background: rgba(244, 106, 37, 0.05);
	border: 1px solid rgba(244, 106, 37, 0.2);
}

.numberBox:hover {
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.12) 0px 12px 40px 0px;
}

.numberBox.TM:hover,
.numberBox.CO:hover,
.numberBox.AR:hover {
	box-shadow: none;
	transform: scale(1);
}

.numberBox.AR {
	background: rgb(243, 244, 246);
}

.numberBox.CO {
	background: rgba(54, 61, 73, 0.2);
}

.numberBox .number {
	background-color: rgb(22, 50, 90);
	color: transparent;
	background-clip: text;
	font-size: 3.75rem;
	line-height: 3.75rem;
	font-family: var(--font-family-outfit);
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.numberBox .title {
	position: relative;
	text-transform: uppercase;
	color: rgb(103, 111, 126);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	margin-bottom: 1rem;
	letter-spacing: 0.7px;
}

.numberBox .title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2rem;
	height: 0.25rem;
	width: 3rem;
	background-color: var(--theme-primary);
	transform: translateX(-50%);
	opacity: 0;
	transition: 0.3s ease-in-out;
}

.numberBox:hover .title::after {
	opacity: 1;
}

.numberBox.TM .number {
	color: rgb(244, 106, 37);
	font-weight: 700;
}

.numberBox.TM .title::after {
	background: rgb(244, 106, 37);
}

.aboutGrid .box.descBox {
	background-color: #fff;
	border: 1px solid rgb(226, 228, 233);
	position: relative;
}

.aboutGrid .descBox::before {
	content: "";
	position: absolute;
	right: -3rem;
	top: -3rem;
	width: 8rem;
	height: 8rem;
	background-color: rgba(228, 78, 68, 0.1);
	filter: blur(40px);
	opacity: 0;
	opacity: 0;
	transition: 0.15s ease-in-out;
}

.aboutGrid .box.descBox:hover::before {
	opacity: 1;
}

.aboutGrid .box.descBox .iconBox {
	max-width: 3.5rem;
	padding: 0.75rem;
	border-radius: 0.5rem;
	background: unset;
	transition: 0.3s ease-in-out;
	background: rgba(228, 78, 68, 0.1);
}

.aboutGrid .box.descBox .iconBox i {
	font-size: 1.5rem;
	line-height: 1;
	color: rgb(228, 78, 68);
}

.aboutGrid .descBox:hover .iconBox {
	background-color: rgba(228, 78, 68, 0.2);
}

.aboutGrid .descBox {
	transition: 0.3s ease-in-out;
}

.aboutGrid .descBox:hover {
	transform-origin: bottom;
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.12) 0px 12px 40px 0px;
}

.aboutGrid .descBox .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: var(--font-family-outfit);
	font-weight: 600;
	color: rgb(41, 48, 61);
	margin-bottom: 0.75rem;
}

.aboutGrid .descBox .desc {
	font-size: 0.875rem;
	line-height: 1.422rem;
	font-family: var(--font-family-outfit);
	color: rgb(103, 111, 126);
	margin-bottom: 1rem;
}

.aboutGrid .descBox .lastLine {
	font-size: 0.875rem;
}

.aboutGrid .descBox .lastLine.p {
	color: rgb(42, 109, 244);
}

.aboutGrid .descBox .lastLine.s {
	color: rgb(244, 106, 37);
}

.aboutGrid .descBox .lastLine.t {
	color: rgb(102, 51, 153);
}

.aboutGrid .descBox .lastLine i {
	margin-left: 0.5rem;
}

.home-about .section-header {
	margin-bottom: 4rem;
}

.home-about .section-header .section-subtitle::before {
	right: calc(100% + 1rem);
}

.home-about .section-header .section-subtitle::after {
	left: calc(100% + 1rem);
}

.home-about .section-header .section-title span.big-number {
	font-size: 8rem;
	line-height: 8rem;
	color: var(--theme-primary);
	font-weight: 700;
}

.home-about .section-header .section-subtexttitle {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-family: var(--font-family-garamond);
	margin-bottom: 1.5rem;
	color: #00003c;
}

/* .home-about .section-title {
	color: #000;
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 0;
} */

.line-below {
	position: relative;
	padding-bottom: 1rem;
}

.line-below::after {
	content: "";
	width: 90px;
	height: 4px;
	background-color: var(--theme-secondary);
	border-radius: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.home-about-desc strong,
.home-about-desc b {
	font-weight: 400;
}

.home-about-desc p {
	margin-bottom: 1rem;
}

.home-about-bg-2 {
	top: 0;
	left: -6rem;
}

.home-about-bg-3 {
	left: 0;
	top: 26%;
}

.home-about-img {
	position: relative;
	max-width: 98%;
}

.home-about-img figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-about-img .big-figure {
	max-width: 100%;
	aspect-ratio: 1.75 / 1;
	border-radius: 1rem;
	overflow: hidden;
}

.techInnvoVideo {
	max-width: 100%;
	aspect-ratio: 2 / 1;
	border-radius: 1rem;
	overflow: hidden;
}

.techInnvoVideo iframe {
	width: 100%;
	height: 100%;
}

.home-about-img .big-figure::after {
	background: #ffffff4d;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}

.home-about-img .big-figure:hover::after {
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.home-about-img .small-figure {
	width: 60%;
	height: 300px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}

.home-about-img .big-figure iframe {
	width: 100%;
	height: 100%;
}

@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;
	}

	.section-subtitle::after {
		width: 1.5rem;
	}

	.home-about-img {
		height: auto;
		padding-inline: 1rem;
		/* transform: translateY(6rem); */
	}

	.home-about-col .section-header {
		/* transform: translateY(-16rem); */
	}

	.home-about-bg-img {
		width: 75%;
	}

	.home-about-bg img {
		width: 3rem;
	}

	/* .home-about-img::before {
		width: 6rem;
		top: -1.5rem;
		bottom: -1.5rem;
	} */
}

/* #endregion about */

/* #region Product */
.productCard {
	display: block;
	background-color: #fff;
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgb(255, 255, 255) 0px 1px 2px 0px;
	transition: 0.3s ease-in-out;
	border: 1px solid transparent;
	border-radius: 0.5rem;
}

.productCard:hover {
	box-shadow: rgba(43, 140, 238, 0.3) 0px 0px 40px 0px;
	border-color: rgba(43, 140, 238, 0.5);
}

.productCard figure {
	aspect-ratio: 1.75 / 1;
	max-width: 100%;
	width: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, rgb(17, 126, 57) 0%, rgb(20, 41, 82) 100%);
	border-radius: 0.5rem;
	position: relative;
}

.productCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.productCard:hover figure img {
	transform: scale(1.05);
}

.productCard figure::after {
	/* content: ''; */
	position: absolute;
	border-radius: 0.5rem;
	inset: 0;
	background-image: linear-gradient(to top, rgb(255 255 255 / 50%), rgb(255 255 255 / 25%), rgba(0, 0, 0, 0));
}

.productCard .content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 1.25rem;
	z-index: 1;
	background: #ffffffed;
}

.productCard .content .title {
	font-size: 1.875rem;
	line-height: 2.125rem;
	font-weight: 700;
	color: rgb(15, 31, 61);
	font-family: var(--font-family-garamond);
	margin-bottom: 0.5rem;
}

.productCard .content .desc {
	font-size: var(--font-family-outfit);
	font-size: 1rem;
	line-height: 1.5rem;
	color: rgb(87, 99, 117);
}

.productCard article .content {
	display: none;
}

.productCard article .description {
	font-size: 0.9rem;
	line-height: 1.5rem;
	color: rgb(108, 121, 147);
	margin-bottom: 1rem;
}

.productCard article .detailBtn {
	display: block;
	width: 100%;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid #dadada;
	text-align: center;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.productCard article .detailBtn:hover {
	background-color: var(--theme-secondary);
	color: #fff;
}

/* #endregion */

/* #region services */

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 1.5rem;
}

.service-card {
	height: 100%;
	padding: 2rem;
	border-radius: 0.75rem;
	transition: 0.3s ease-in-out;
	border: 1px solid rgba(220, 223, 229, 0.5);
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.service-card:hover {
	background-color: rgba(246, 247, 248, 0.5);
	border-color: rgba(41, 163, 86, 0.4);
	box-shadow: rgba(46, 184, 96, 0.2) 0px 20px 50px 0px;
}

.service-card figure {
	max-width: 3.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	padding: 0.5rem;
	border: 1px solid var(--theme-secondary);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background-image: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
	font-size: 1.5rem;
	line-height: 1;
	color: #fff;
}

.service-card figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease;
}

.service-card:hover figure {
	transform: scale(1.075);
	background-color: var(--theme-secondary);
}

.service-card:hover figure img {
	transform: scale(1.1);
	transition: 0.3s ease;
	color: var(--theme-secondary);
	filter: invert(1);
}

.service-card article {
	width: 80%;
	flex-basis: 80%;
	flex-grow: 0;
	flex-shrink: 0;
	transition: 0.3s ease;
	position: relative;
}

.service-card .number {
	font-size: 5rem;
	line-height: 5.5rem;
	font-weight: 600;
	color: #cccccc50;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	min-height: 2lh;
	left: 1rem;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	left: -35px;
	top: -35%;
	z-index: -1;
}

.service-card .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.75rem;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	transition: 0.3s;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-align: center;
	-webkit-box-pack: center;
}

.service-card .title:hover {
	color: var(--theme-secondary);
}

.service-card .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--gray);
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-align: center;
	-webkit-box-pack: center;
}

.learn-more-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-family-alt);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: var(--theme-primary);
	transition: 0.3s ease-in-out;
}

.service-card:hover .learn-more-btn {
	gap: 1rem;
}

.badges span {
	border-radius: 5rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(41, 163, 86, 0.2);
	background-color: rgba(41, 163, 86, 0.1);
	color: var(--theme-primary);
	font-family: var(--font-family-alt);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
}

.badges span.blue {
	background-color: rgba(34, 123, 195, 0.1);
	color: var(--theme-secondary);
	border-color: rgba(34, 123, 195, 0.2);
}

.flex-50 {
	flex-basis: 50%;
}

.whyus-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
}

.whyus-grid .whyusCard {
	height: 100%;
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	padding: 1.5rem;
	border: 1px solid rgba(220, 223, 229, 0.5);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	border-radius: 0.75rem;
	transition: 0.3s ease-in-out;
}

.whyusCard:hover {
	background-color: rgba(246, 247, 248, 0.5);
	border-color: rgba(41, 163, 86, 0.4);
}

.whyus-grid .whyusCard .icon {
	max-width: 2.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--theme-primary);
	background-color: rgba(41, 163, 86, 0.1);
	font-size: 1.25rem;
	margin-bottom: 0.625rem;
}

.whyus-grid .whyusCard .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--black);
}

.whyus-grid .whyusCard .desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: var(--gray);
	font-family: var(--font-family-alt);
}

.env-section {
	overflow: hidden;
}

.envBox {
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	padding: 2rem;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	border-radius: 0.75rem;
	border: 1px solid rgba(220, 223, 229, 0.5);
	height: 100%;
	transition: 0.3s ease-in-out;
	text-align: center;
}

.envBox:hover {
	background-color: rgba(246, 247, 248, 0.5);
	border-color: rgba(41, 163, 86, 0.4);
}

.envBox .icon {
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 1rem;
	margin-inline: auto;
	margin-bottom: 1rem;
	color: var(--theme-primary);
	background-image: linear-gradient(to right bottom, rgba(41, 163, 86, 0.2), rgba(34, 123, 195, 0.2));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.envBox .heading {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: transparent;
	background-image: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
	background-clip: text;
	margin-bottom: 0.25rem;
}

.envBox .heading span {
	font-size: 1.125rem;
	line-height: 1.875rem;
	font-weight: 700;
}

.envBox .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.5rem;
}

.envBox .desc {
	color: var(--gray);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
}

.throught-bg-section {
	position: absolute;
	top: 47%;
	left: 0;
	width: 130%;
	height: 450px;
	background-image: linear-gradient(to right, rgba(41, 163, 86, 0.05), rgba(34, 123, 195, 0.05), rgba(41, 163, 86, 0.05));
	transform: matrix(1, -0.0524078, 0, 1, 0, 0);
}

.partner-withus {
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	margin-top: 4rem;
	padding: 3rem;
	border-radius: 0.75rem;
	border: 1px solid var(--theme-primary);
}

.partner-withus .content {
	max-width: 576px;
	width: 100%;
	margin-inline: auto;
	text-align: center;
}

.partner-withus .content .title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.partner-withus .content .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	color: var(--font-family-alt);
	margin-bottom: 2rem;
	color: var(--gray);
	margin-bottom: 2rem;
}

.contact-section-info .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 1rem;
}

.contact-section-info .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
	color: var(--gray);
}

.contact-option-links {
	margin-top: 2rem;
}

.contact-option-links .option {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-option-links .option .icon {
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-primary);
	background-color: rgba(41, 163, 86, 0.1);
	border-radius: 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
}

.contact-option-links .option .data .data-title {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-alt);
	color: var(--gray);
	margin-bottom: 0;
}

.contact-option-links .option .data .value {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	font-family: var(--font-family-alt);
	color: var(--black);
	margin-bottom: 0;
}

.home-products.new-bg {
	position: relative;
	background-color: #f1eeea;
}

.home-products.new-bg::before {
	background-image:
		linear-gradient(#e5e0d8b6 1px, transparent 1px),
		/* Horizontal lines (default to bottom) */ linear-gradient(90deg, #e5e0d8b6 1px, transparent 1px);
}

.home-products.new-bg .section-header .section-title {
	color: #00003e;
}

.viewAllBtn {
	color: #00003e;
}

.viewAllBtn i {
	margin-left: 0.5rem;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.home-about::before {
		background-size: 118.5px 200px;
		background-position: left bottom;
	}

	.home-services::before {
		background-position: right 20px top 0px;
		background-size: 50px 50px;
	}

	.home-services::after {
		background-size: 50px 50px;
		background-position: left 10px bottom 10px;
	}
}

.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: 4rem;
	position: relative;
	z-index: 1;
}

.home-services-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.home-services-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.home-services-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-primary-bg-light);
	border-radius: 50%;
	margin-bottom: 1rem;
}

.home-services-icon img {
	width: 60%;
	height: 60%;
	object-fit: contain;
}

.home-services-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
}

.home-services-desc {
	font-size: 1rem;
	color: #666;
	line-height: 1.5;
}

.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: 15px;
	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: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-transform: capitalize;
	padding: 0 2rem 0;
	/* margin-bottom: 1rem; */
	/* text-align: center; */
	transition: 0.3s;
}

.home-services-title a {
	display: block;
	font-family: var(--font-family);
	font-size: 20px;
	line-height: 25px;
	min-height: 50px;
	transition: 0.3s;
	color: var(--theme-primary);
}

.home-services-card .home-services-body {
	max-width: 90%;
	margin: auto;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	transform: translateY(-20%);
	padding: 1rem 0;
	border-radius: 15px;
	position: relative;
	z-index: 1;
}

.home-services-learn {
	padding: 0 2rem 0;
	font-weight: 500;
	text-transform: capitalize;
	font-family: var(--font-family);
	transition: 0.3s;
}

.home-services-learn:hover {
	color: #f67d2f;
	text-decoration: underline;
	text-decoration-color: #f67d2f;
}

/*.home-services-header::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: 1rem;*/
/*	bottom: 1rem;*/
/*	left: 6rem;*/
/*	width: 0.2rem;*/
/*	background-color: var(--theme-primary-bg-light);*/
/*	border-radius: 1rem;*/
/*	transform: translateX(-50%);*/
/*}*/

.home-services-desc {
	margin-bottom: 1rem;
	line-height: 1.3rem;
	opacity: 0.7;
	padding: 0 2rem;
	font-family: var(--font-family);
	font-style: normal;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	min-height: 3lh;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-top: 5px;
}

.home-services-cta {
	color: var(--theme-primary-alt);
	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: var(--theme-secondary-alt);
}

.home-services-cta::after {
	/* double angle right */
	content: "\f101";
	font: var(--icon-font);
	font-size: 1em;
	margin-left: 0.2rem;
}

@media (max-width: 768px) {
	.home-services-title {
		font-size: 1.2rem;
	}
}

/* #endregion services */

/* #region Products */
.products-section {
	position: relative;
}

.products-section::before,
.products-section::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	z-index: -1;
}

.products-section::before {
	background-image: url("../images/bg/circles.png");
	background-size: 250px 500px;
	background-position: left 0 top 50px;
	transform: rotateY(180deg);
	top: -250px;
}

.products-section::after {
	background-image: url("../images/bg/circles.png");
	background-size: 250px 500px;
	background-position: left 0px top 0;
	top: unset;
	bottom: -250px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.products-section::after {
		background-size: 50px 50px;
		background-position: right 20px top 0px;
	}

	.home-testimonials::after {
		background-image: url(../images/bg/curl.png);
		background-position: right 20px top 0px;
		background-size: 50px 50px;
	}
}

.product-card {
	position: relative;
	display: block;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 0.5rem;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-img {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
	transform: scale(1.1);
}

.product-content {
	padding: 1rem;
}

.product-title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 2lh;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.product-page .product-title {
	font-size: 2rem;
	line-height: 2.3rem;
	display: block;
	min-height: unset;
	text-overflow: initial;
	margin-bottom: 1rem;
}

.product-desc {
	font-size: 1rem;
	line-height: 1.3rem;
	color: #666;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 3lh;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.sl-wrapper {
	color: #fff;
}

.product-page .other-product.product-title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 2lh;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.product-page .other-product.product-desc {
	font-size: 1rem;
	line-height: 1.3rem;
	color: #666;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 3lh;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

/* #endregion */
/* #region gallery */

.home-gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
}

.home-gallery-item {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	display: block;
}

.gallery-swiper {
	overflow-x: clip;
}

.gallery-swiper .swiper-slide {
	overflow: hidden;
}

.home-gallery-img {
}

.home-gallery-img::before {
	padding-top: 66.6%;
}

.home-gallery-img img {
}

.home-gallery-body {
	position: absolute;
	inset: 0;
	padding: 2rem;
	color: var(--theme-primary-alt);
	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-secondary);
	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(--logo-primary-color);
	transition: ease 0.3s;
}

.home-gallery-body::after {
	content: "\f124";
	font: var(--icon-font);
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	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 gallery-section */
.gallery-section .gallery-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 8rem 4rem;
}

.gallery-section .gallery-item {
	position: relative;
}

.gallery-section .gallery-card {
	position: relative;
	display: block;
	transform: translateY(var(--parallax-y, 0px));
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
	will-change: transform;
}

.gallery-section .gallery-item--big {
	grid-column: 1 / span 5;
	z-index: 2;
}

.gallery-section .gallery-item--small {
	grid-column: 6 / span 3;
	z-index: 1;
	transform-origin: center;
	align-self: center;
}

.gallery-section .gallery-item--small .gallery-card {
	transform: translateY(var(--parallax-y, 0px)) scale(0.94);
	filter: saturate(0.95);
	opacity: 0.92;
}

.gallery-section .gallery-item--big.gallery-item--right {
	grid-column: 4 / span 5;
}

.gallery-section .gallery-item--small.gallery-item--left {
	grid-column: 1 / span 3;
}

.gallery-section .gallery-card figure {
	position: relative;
	overflow: hidden;
	transition: clip-path 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
	background: #f5f5f5;
	clip-path: inset(0 0 0 0);
	aspect-ratio: 1.5 / 1;
	max-width: 100%;
	width: 100%;
}

.gallery-section .gallery-card figure img {
	transform: scale(1);
	transition: transform 0.6s ease;
}

.gallery-section .gallery-item:hover .gallery-card figure {
	clip-path: inset(3% 3% 3% 3%);
}

.gallery-section .gallery-item:hover .gallery-card figure img {
	transform: scale(1.08);
}

.gallery-section .gallery-card .title {
	margin-top: 1rem;
	font-size: 1.625rem;
	line-height: 2.5rem;
	font-weight: 300;
}

@media (max-width: 991px) {
	.gallery-section .gallery-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gallery-section .gallery-item,
	.gallery-section .gallery-item--big,
	.gallery-section .gallery-item--small,
	.gallery-section .gallery-item--big.gallery-item--right,
	.gallery-section .gallery-item--small.gallery-item--left {
		grid-column: 1 / -1;
	}

	.gallery-section .gallery-item--small .gallery-card {
		transform: translateY(var(--parallax-y, 0px)) scale(1);
		opacity: 1;
	}
}

/* #endregion gallery-section */

/* #region circular-work */
.circular-work {
	--circle-size: 300px;
	--text-radius: 120px;
	--text-color: #111;
	--ring-color: #e6e6e6;
	position: relative;
	display: block;
	width: var(--circle-size);
	height: var(--circle-size);
	margin-top: 8rem;
	border-radius: 999px;
	color: var(--text-color);
	margin-inline: auto;
	transition: 1s ease-in-out;
}

.circular-work:hover {
	--text-color: var(--theme-secondary);
	transform: rotateZ(360deg);
}

/* .circular-work::before {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: inherit;
	border: 1px solid var(--ring-color);
} */

.circular-work-text {
	position: absolute;
	inset: 0;
	display: block;
}

.circular-work-letter {
	position: absolute;
	left: 50%;
	top: 50%;
	transform-origin: 0 0;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
}

.circular-work-center {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 2;
}

.circular-work-center i {
	font-size: 1rem;
}

@media (max-width: 768px) {
	.circular-work {
		--circle-size: 150px;
		--text-radius: 80px;
		margin-top: 5rem;
	}

	.circular-work-letter {
		font-size: 1rem;
	}
}

/* #endregion circular-work */

/* #region lets-talk */
.lets-talk {
	padding-top: calc(var(--section-gap) + 1rem);
	padding-bottom: calc(var(--section-gap) + 1rem);
	min-height: calc(100dvh - (var(--section-gap) * 2));
}

.lets-talk .container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lets-talk .content {
	text-align: center;
	display: grid;
	gap: 1.5rem;
	justify-items: center;
}

.lets-talk .title {
	position: relative;
	font-size: 200px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.5px;
	color: #2c2c2c;
}

.lets-talk .title::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	color: transparent;
	background-image:
		/* Inner Circle - Solid */
		radial-gradient(300px 300px at var(--fx, 50%) var(--fy, 50%), rgba(69, 173, 207, 0.95) 0%, rgba(69, 173, 207, 0.95) 70%, transparent 70.5%),
		/* Middle Ring - Solid */ radial-gradient(400px 400px at var(--fx, 50%) var(--fy, 50%), #0058a5cc 0%, #0058a5cc 72%, transparent 72.5%),
		/* Outer Ring - Solid */ radial-gradient(500px 500px at var(--fx, 50%) var(--fy, 50%), #0058a56b 0%, #0058a56b 75%, transparent 75.5%);
	-webkit-background-clip: text;
	background-clip: text;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.lets-talk:hover .title::after {
	opacity: 1;
}

.lets-talk .links {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	font-family: var(--font-family-alt);
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lets-talk .link {
	color: #2c2c2c;
	font-weight: 600;
}

.lets-talk .link:hover {
	color: var(--theme-secondary);
}

@media (max-width: 768px) {
	.lets-talk .links {
		gap: 1rem;
		font-size: 0.8rem;
	}
}

/* #endregion lets-talk */

/* #region why-us */
.home-numbers {
	position: relative;
	min-height: 150px;
}

.home-whyus-grid {
	width: 100%;
	height: 180%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: 1.5rem;
	color: var(--theme-primary-dark);
}

.home-whyus-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	background-color: #f5efe6a6;
	padding: 2rem 1rem;
	transition: 0.3s ease-in-out;
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgb(255 219 201 / 51%) 0px 1px 2px 0px;
}

.home-whyus-card:hover {
	transform: translateY(-2px);
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
}

.home-whyus-img {
	z-index: 1;
	max-width: 4rem;
	background: #f6f3ee;
	padding: 1rem;
	border-radius: 50%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.home-whyus-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(11%) sepia(16%) saturate(5689%) hue-rotate(208deg) brightness(95%) contrast(121%);
}

.home-whyus-content {
	position: relative;
	z-index: 0;
	flex: auto;
	text-align: center;
}

.home-whyus-number {
	color: #000;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	font-size: 3rem;
	line-height: 3rem;
	margin-bottom: 0.5rem;
}

.home-whyus-title {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(92, 107, 138);
	line-height: 1;
	font-family: var(--font-family-outfit);
	font-weight: 400;
	font-style: normal;
	margin-bottom: 0.75rem;
}

.home-whyus-desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(87, 99, 117);
	font-family: var(--font-family-outfit);
	font-style: normal;
}

@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 Our Business */
#ourbusiness {
	position: relative;
	background-image: linear-gradient(rgba(22, 50, 90, 0.5), rgba(0, 0, 0, 0), rgba(22, 50, 90, 0.8));
	background-color: rgba(22, 50, 90, 0.95);
	overflow: hidden;
}

#ourbusiness::before {
	content: "";
	background-image: url("../images/busbg.jpg");
	background-size: cover;
	background-position: center;
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.05;
}

.ourbusiness .dimdim-1 {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
	animation: none;
	opacity: 0.3;
}

.ourbusiness .dimdim-2 {
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
	animation: none;
	opacity: 0.3;
}

.ourbusiness .section-header {
	margin-bottom: 5rem;
}

.ourbusiness .section-header .section-subtitle {
	color: rgb(228, 78, 68);
	border-color: transparent;
	background-color: transparent;
	letter-spacing: 2.4px;
}

.ourbusiness .section-header .section-title {
	margin-bottom: 3rem;
	color: #fff;
}

.ourbusiness .section-header .section-title::after,
.our_companies .section-header .section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -1.5rem;
	height: 2px;
	background-color: var(--theme-primary);
}

.ourbusiness .section-header .section-desc {
	color: rgba(255, 255, 255, 0.7);
}

.businessCard {
	background-color: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 32px 0px;
	border-radius: 0.5rem;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	transform-origin: bottom;
	height: 100%;
}

.businessCard .iconBox {
	max-width: 3.5rem;
	background-color: rgba(228, 78, 68, 0.1);
	margin-bottom: 1.5rem;
	transition: 0.3s ease-in-out;
}

.businessCard .iconBox i {
	color: rgb(228, 78, 68);
	font-size: 1.5rem;
	line-height: 1;
}

.businessCard .title {
	font-family: var(--font-family-outfit);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: rgb(250, 250, 250);
	margin-bottom: 0.75rem;
	position: relative;
}

.businessCard .title::after {
	content: "\f061";
	font: 900 1rem "Font Awesome 6 Free";
	color: var(--theme-primary);
	transform: rotateZ(-45deg);
	display: inline-block;
	position: absolute;
	right: 2rem;
	bottom: 0;
	transition: 0.3s ease-in-out;
	opacity: 0;
}

.businessCard:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.businessCard:hover .title::after {
	opacity: 1;
	bottom: 1rem;
	transform: translate(15px, -5px) rotateZ(-45deg);
}

.businessCard .description {
	font-size: 0.875rem;
	line-height: 1.422rem;
	color: rgb(215 215 219);
	font-family: var(--font-family-outfit);
}

.businessCard::before {
	content: "";
	background-image: linear-gradient(to right bottom, rgba(228, 78, 68, 0.2), rgba(0, 0, 0, 0));
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 0.3s ease-in-out;
	z-index: -1;
}

.businessCard::after {
	/* content: ''; */
	position: absolute;
	right: 0;
	top: 0;
	width: 160px;
	height: 160px;
	background-image: linear-gradient(to right bottom, rgb(59, 130, 246), rgb(6, 182, 212));
	filter: blur(60px);
	opacity: 0;
	transition: 0.3s ease-in-out;
	z-index: -1;
}

.companyCard.c .card-header .iconBox,
.businessCard.b::before,
.businessCard.b::after {
	background-image: linear-gradient(to right bottom, rgb(168, 85, 247), rgb(236, 72, 153));
}

.companyCard.b .card-header .iconBox,
.businessCard.c::before,
.businessCard.c::after {
	background-image: linear-gradient(to right bottom, rgb(34, 197, 94), rgb(16, 185, 129));
}

.companyCard.d .card-header .iconBox,
.businessCard.d::before,
.businessCard.d::after {
	background-image: linear-gradient(to right bottom, rgb(249, 115, 22), rgb(245, 158, 11));
}

.companyCard.e .card-header .iconBox,
.businessCard.e::before,
.businessCard.e::after {
	background-image: linear-gradient(to right bottom, rgb(99, 102, 241), rgb(139, 92, 246));
}

.businessCard.f::before,
.businessCard.f::after {
	background-image: linear-gradient(to right bottom, rgb(244, 63, 94), rgb(236, 72, 153));
}

.businessCard:hover::before {
	opacity: 1;
}

.businessCard:hover::after {
	opacity: 0.3;
}

.businessCard.a .iconBox {
	background-image: linear-gradient(to right bottom, rgb(59, 130, 246), rgb(6, 182, 212));
}

.businessCard.b .iconBox {
	background-image: linear-gradient(to right bottom, rgb(168, 85, 247), rgb(236, 72, 153));
}

.businessCard.c .iconBox {
	background-image: linear-gradient(to right bottom, rgb(34, 197, 94), rgb(16, 185, 129));
}

.businessCard.d .iconBox {
	background-image: linear-gradient(to right bottom, rgb(249, 115, 22), rgb(245, 158, 11));
}

.businessCard.e .iconBox {
	background-image: linear-gradient(to right bottom, rgb(99, 102, 241), rgb(139, 92, 246));
}

.businessCard.f .iconBox {
	background-image: linear-gradient(to right bottom, rgb(244, 63, 94), rgb(236, 72, 153));
}

.businessCard .lineBelow,
.companyCard .lineBelow {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	transform: scaleX(0);
	transform-origin: left center;
	background-color: var(--theme-primary);
	transition: 0.3s ease-in-out;
}

.businessCard:hover .lineBelow {
	transform: scaleX(1);
}

.companyCard.c .lineBelow,
.businessCard.b .lineBelow {
	background-image: linear-gradient(to right, rgb(168, 85, 247), rgb(236, 72, 153));
}

.companyCard.b .lineBelow,
.businessCard.c .lineBelow {
	background-image: linear-gradient(to right, rgb(34, 197, 94), rgb(16, 185, 129));
}

.companyCard.d .lineBelow,
.businessCard.d .lineBelow {
	background-image: linear-gradient(to right, rgb(249, 115, 22), rgb(245, 158, 11));
}

.companyCard.e .lineBelow,
.businessCard.e .lineBelow {
	background-image: linear-gradient(to right, rgb(99, 102, 241), rgb(139, 92, 246));
}

.companyCard.f .lineBelow,
.businessCard.f .lineBelow {
	background-image: linear-gradient(to right, rgb(244, 63, 94), rgb(236, 72, 153));
}

.hoverEffect {
	overflow: hidden;
	border-radius: 1.5rem;
}

.hoverEffect:hover .businessCard {
	transform: scale(1.03);
}

.hoverEffect:hover .iconBox {
	transform: scale(1.05);
}

/* #endregion Out Business */
/* #region driven by */

.diven_by {
	position: relative;
	background-image: url("../images/drivenby.jpg");
	background-size: cover;
}

#drivenBY .container > .row {
	max-width: 768px;
	position: relative;
}

.diven_by .section-header .section-subtitle {
	color: rgb(244, 106, 37);
	border-color: transparent;
	background-color: transparent;
	padding: 0;
	letter-spacing: 2.4px;
}

.diven_by .section-header .section-title {
	font-size: 3rem;
	line-height: 1;
	color: #fff;
}

.diven_by .section-header .section-desc {
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.8);
}

.diven_by .section-header .graident-anime-btn {
	color: #fff;
}

.diven_by .section-header .graident-anime-btn i {
	margin-left: 0.5rem;
	font-size: 0.75rem;
}

.diven_by .section-header .section-title span.c2 {
	color: rgb(244, 106, 37);
}

.diven_by .iconBoxit {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.diven_by .iconBoxit .iconBox {
	color: #fff;
	max-width: 3.5rem;
	margin-bottom: 1rem;
	border-radius: 50%;
}

.diven_by .iconBoxit .iconBox i {
	font-size: 1.5rem;
	line-height: 1.75rem;
}

.diven_by .iconBoxit.b .iconBox {
	background-image: linear-gradient(to right bottom, rgb(34, 197, 94), rgb(16, 185, 129));
}

.diven_by .iconBoxit.c .iconBox {
	background-image: linear-gradient(to right bottom, rgb(168, 85, 247), rgb(236, 72, 153));
}

.diven_by .iconBoxit.d .iconBox {
	background-image: linear-gradient(to right bottom, rgb(249, 115, 22), rgb(245, 158, 11));
}

.iconBoxit .title {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: var(--font-family-outfit);
	color: rgba(255, 255, 255, 0.8);
}

.diven_by::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to right, rgba(22, 50, 90, 0.95), rgba(22, 50, 90, 0.9), rgba(54, 61, 73, 0.85));
}

.pulse-blue {
	background-color: rgba(42, 109, 244, 0.2);
	filter: blur(150px);
	animation: pulse-glow 2s ease-in-out infinite;
	animation-delay: 1s;
	border-radius: 9999px;
	width: 600px;
	height: 600px;
	top: 0;
	left: 25%;
	position: absolute;
}

.md-message {
	position: relative;
}

.md-message .section-header {
	margin-bottom: 5rem;
}

.md-message .section-header .section-subtitle {
	color: var(--theme-primary);
	border-color: transparent;
	background-color: transparent;
	padding: 0;
	letter-spacing: 2.4px;
}

.md-message .section-header .section-title {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
}

.md-message .section-header .section-title::after {
	content: "";
	background-color: var(--theme-primary);
}

.md-message figure {
	aspect-ratio: 1 / 1.125;
	max-width: 100%;
	width: 100%;
	border-radius: 0.5rem;
}

.md-message .mdContent {
	position: relative;
}

.md-message .mdContent::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	left: -2rem;
	top: 50%;
	transform: translateY(-50%);
	background-image: linear-gradient(rgb(228, 78, 68), rgba(228, 78, 68, 0.2), rgba(0, 0, 0, 0));
}

.md-message .mdContent {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.md-message .mdContent > i {
	font-size: 4rem;
	color: rgba(228, 78, 68, 0.2);
}

.md-message .mdContent q {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
	font-family: var(--font-family-outfit);
}

.mdContent .md-info .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.mdContent .md-info .position {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	color: rgb(228, 78, 68);
	margin-bottom: 0.5rem;
}

.mdContent .md-info .desc {
	font-size: 0.875rem;
	line-height: 1.375rem;
	color: rgb(103, 111, 126);
}

.mdContent .actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mdContent .actions .graident-anime-btn {
	animation: none;
	color: #fff;
	border-radius: 0.25rem;
	background: rgb(22, 50, 90);
	text-transform: initial;
	font-size: 1rem;
}

.governanceDiv {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgb(226, 228, 233);
	text-align: center;
}

.governanceDiv a {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(22, 50, 90);
	transition: 0.3s ease-in-out;
}

.governanceDiv a i {
	margin-left: 0.25rem;
}

.governanceDiv a:hover {
	color: var(--theme-primary);
}

.linkedInLink {
	color: rgb(103, 111, 126);
	font-size: 0.875rem;
	line-height: 1.25rem;
	transition: 0.3s ease-in-out;
}

.linkedInLink i {
	font-size: 1rem;
	margin-right: 0.25rem;
}

.linkedInLink:hover {
	color: rgb(228, 78, 68);
}

.mdContent .actions .graident-anime-btn i {
	margin-left: 0.5rem;
}

.mdContent .actions .graident-anime-btn:hover {
	background: rgba(22, 50, 90, 0.9);
}

.pulse-orange {
	background-color: rgba(244, 106, 37, 0.2);
	filter: blur(120px);
	animation: pulse-glow 2s ease-in-out infinite;
	animation-delay: 1s;
	border-radius: 9999px;
	width: 500px;
	height: 500px;
	bottom: 0;
	right: 25%;
	position: absolute;
}

/* #endregion */
/* #region OurCompanies */
.our_companies {
	position: relative;
}

.container-swiss {
	background-image: linear-gradient(rgba(36, 36, 40, 0.3), rgb(9, 9, 11), rgba(36, 36, 40, 0.3));
	position: absolute;
	inset: 0;
	z-index: 0;
}

.container-swiss-2 {
	background-image: linear-gradient(rgba(44, 44, 48, 0.3) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(44, 44, 48, 0.3) 1px, rgba(0, 0, 0, 0) 1px);
	position: absolute;
	inset: 0;
	background-size:
		60px 60px,
		60px 60px;
	opacity: 0.1;
	z-index: 0;
}

.our_companies {
	background-color: rgb(243, 244, 246);
}

.our_companies .section-header {
	margin-bottom: 5rem;
}

.our_companies .section-header .section-subtitle {
	color: var(--theme-primary);
	background-color: transparent;
	border: 1px solid transparent;
}

.our_companies .section-header .section-title {
	margin-bottom: 3rem;
}

.our_companies .section-header .section-title span {
	background-image: linear-gradient(135deg, rgb(42, 109, 244), rgb(102, 51, 153));
}

.our_companies .section-header .section-desc {
	color: rgb(103, 111, 126);
}

.our_companies .section-header .exploreBtn i {
	transform: rotate(0);
}

.our_companies .section-header .exploreBtn:hover i {
	transform: rotate(0);
	padding-left: 0.25rem;
}

.companyCard {
	position: relative;
	border-radius: 0.25rem;
	overflow: hidden;
	background-color: #fff;
	transition: 0.3s ease-in-out;
	transform-origin: bottom;
	border: 1px solid rgb(226, 228, 233);
}

.companyCard .card-header {
	padding: 1.5rem;
	background-image: linear-gradient(to right bottom, rgba(22, 50, 90, 0.1), rgba(22, 50, 90, 0.05));
	display: flex;
	align-items: center;
	gap: 1rem;
}

.companyCard.b .card-header {
	background-image: linear-gradient(to right, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
}

.companyCard.c .card-header {
	background-image: linear-gradient(to right, rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.05));
}

.companyCard.d .card-header {
	background-image: linear-gradient(to right, rgba(249, 115, 22, 0.05), rgba(245, 158, 11, 0.05));
}

.companyCard.e .card-header {
	background-image: linear-gradient(to right, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.companyCard.f .card-header {
	background-image: linear-gradient(to right, rgb(34, 197, 94), rgb(16, 185, 129));
}

.companyCard .card-header .iconBox {
	background-color: #e3e3e3;
	margin-bottom: 0;
	max-width: 3.5rem;
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
}

.companyCard .card-header .content {
	width: 100%;
}

.companyCard .card-header .content .title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	font-family: var(--font-family-outfit);
	position: relative;
	margin-bottom: 0;
}

.companyCard .card-header .content .description {
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 400;
	font-family: var(--font-family-outfit);
	color: rgb(161, 161, 170);
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.companyCard .card-body {
	padding: 1.5rem;
}

.companyCard .card-body .description {
	font-size: 0.875rem;
	line-height: 1.45rem;
	color: rgb(103, 111, 126);
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	max-height: 3lh;
}

.companyCard .card-header .title::after {
	content: "\f35d";
	font: 900 0.75rem "Font Awesome 6 Free";
	color: #000;
	display: inline-block;
	/* position: absolute;
	right: 2rem;
	bottom: 0; */
	margin-left: 0.5rem;
	transition: 0.3s ease-in-out;
	opacity: 0;
}

.companyCard:hover {
	transform: scale(1.02);
	border-color: rgba(228, 78, 68, 0.3);
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.06) 0px 4px 20px 0px;
}

.companyCard:hover .card-header .title::after {
	opacity: 0.3;
	right: 1rem;
	bottom: 0.5rem;
}

.companyCard:hover .iconBox {
	transform: scale(1.05);
}

.companyCard .card-footer {
	padding: 1.5rem;
}

.companyCard .card-footer a {
	display: block;
	padding-top: 1rem;
	border-top: 1px solid rgb(226, 228, 233);
	color: rgb(22, 50, 90);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
}

.companyCard .card-footer .exploreBtn i {
	transform: rotateZ(0);
	font-size: 0.66rem;
	line-height: 1rem;
}

.companyCard:hover .card-footer .exploreBtn {
	color: rgb(244, 106, 37);
}

.companyCard:hover .card-footer .exploreBtn i {
	transform: translate(3px, -3px);
}

.companyCard:hover .lineBelow {
	transform: scaleX(1);
}

/* #endregion OurCompanies */

/* #region News */
.news-section {
	position: relative;
	background-color: rgb(243, 244, 246);
}

.news-section .section-header .section-subtitle {
	color: var(--theme-primary);
	background: transparent;
	border-color: transparent;
	padding: 0;
	letter-spacing: 2.4px;
}

.news-section .section-header .section-title {
	font-size: 2.25rem;
	line-height: 2.75rem;
	font-family: var(--font-family-outfit);
}

.news-section .section-header a {
	color: rgb(41, 48, 61);
	font-size: 0.875rem;
	font-weight: 500;
}

.news-section .section-header a i {
	margin-left: 0.25rem;
	font-size: 0.66rem;
	transform: rotateZ(-45deg);
}

.news-section .section-header a:hover {
	color: var(--theme-primary);
}

.newsCard {
	background-color: #fff;
	border-radius: 0.25rem;
	overflow: hidden;
	border: 1px solid rgb(226, 228, 233);
	overflow: hidden;
	transition: 0.3s ease-in-out;
	transform-origin: bottom;
}

.newsCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	position: relative;
}

.newsCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.newsCard figure figcaption {
	position: absolute;
	left: 1rem;
	top: 1rem;
	background-color: #fff;
	color: rgb(41, 48, 61);
	font-weight: 500;
	border-radius: 0.25rem;
	padding: 0.125rem 0.75rem;
	font-size: 0.75rem;
	line-height: 1.25rem;
}

.newsCard article {
	padding: 1.5rem;
}

.newsCard article .date {
	color: rgb(103, 111, 126);
	font-size: 0.75rem;
	line-height: 1rem;
	margin-bottom: 0.75rem;
}

.newsCard article .date i {
	margin-right: 0.25rem;
}

.newsCard article .title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.newsCard article .description {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(103, 111, 126);
	margin-bottom: 1rem;
}

.newsCard article a {
	color: rgb(22, 50, 90);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
}

.newsCard article a i {
	margin-left: 0.25rem;
	transform: rotateZ(-45deg);
	transition: 0.3s ease-in-out;
	font-size: 0.66rem;
}

.newsCard:hover {
	transform: scale(1.01) translateY(-4px);
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.12) 0px 12px 40px 0px;
}

.newsCard:hover .title {
	color: var(--theme-primary);
}

.newsCard:hover article a {
	color: var(--theme-primary);
}

.newsCard:hover article a i {
	transform: translate(4px, -4px) rotateZ(-45deg);
}

/* #endregion News */
/* #region testimonials */
.home-testimonial-wrapper {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.home-testimonial-side {
	width: 50%;
	border-radius: 1rem;
	overflow: hidden;
}

.home-testimonial-side::before {
	padding-top: 66%;
}

.home-testimonials {
	position: relative;
}

.home-testimonials::before,
.home-testimonials::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
}

.home-testimonials::before {
	background-image: url("../images/bg/circles.png");
	background-position: left 0 top 0px;
	background-size: 300px 500px;
	transform: rotateY(180deg);
	top: unset;
	bottom: -100px;
}

/* .home-testimonials::after {
	background-image: url('../images/bg/curl.png');
	background-position: right 250px top 50px;
	background-size: 100px 100px;
} */

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.home-testimonials::after {
		background-image: url(../images/bg/curl.png);
		background-position: right 20px top 0px;
		background-size: 50px 50px;
	}
}

.home-testimonials-swiper {
	z-index: 1;
	position: relative;
	height: auto;
}

.home-testimonials-swiper .swiper-wrapper,
.home-testimonials-swiper .swiper-wrapper .swiper-slide {
	height: auto;
}

.home-testimonial-wrapper .home-testimonials-swiper {
	width: 50%;
	margin-right: 0;
}

.testimonials-header {
	display: flex;
	justify-content: space-between;
}

.home-testimonial-slide {
	height: auto;
}

.home-testimonial-card {
	display: flex;
	align-items: center;
	gap: 4rem 6rem;
	padding: 2rem;
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	height: 100%;
	background-color: #fff;
}

.home-testimonial-card:hover {
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(7, 3, 73, 0.25) 0px 25px 50px -12px,
		rgba(7, 3, 73, 0.12) 0px 12px 24px -8px;
}

.home-testimonial-content {
	position: relative;
	z-index: 1;
	display: grid;
	max-width: 540px;
	margin: auto;
	gap: 2rem;
	height: 100%;
}

.home-testimonial-content .openQuote {
	max-width: 40px;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.home-testimonial-content .openQuote img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.2;
}

.quote {
	position: absolute;
	top: -15%;
	width: 200px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	z-index: -1;
}

.quote img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.quote-left {
	left: 15%;
}

.quote-right {
	right: 15%;
}

.home-testimonial-img,
.home-testimonial-content {
	flex: 1 1 100%;
}

.home-testimonial-img {
	border-radius: 1rem;
	position: relative;
}

.home-testimonial-img img {
	margin: auto;
	height: 16rem;
	padding: 2rem;
}

.home-testimonial-img::after {
	font: var(--icon-font);
	font-size: 4.5rem;
	position: absolute;
	top: 50%;
	right: 0;
	width: 6rem;
	height: 6rem;
	display: grid;
	place-content: center;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 50%;
	transform: translate(50%, -50%);
}

.home-testimonial-desc {
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(18, 18, 18, 0.75);
	font-family: var(--font-family);
	font-weight: 400;
	font-style: normal;
}

.home-testimonial-author {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

#testimonial-btn {
	max-width: 50%;
	width: 100%;
	position: relative;
}

#testimonial-btn .swiper-button-prev {
	right: 75px;
	left: unset;
}

.home-testimonial-name {
	font-size: 1.25rem;
	line-height: 1.5rem;
	margin-bottom: 0.3rem;
	font-weight: 600;
}

.home-testimonial-position {
	line-height: 1.2;
	font-weight: 400;
}

@media (max-width: 768px) {
	.testimonial-bg {
		opacity: 0.3;
		height: 9rem;
	}

	.home-testimonial-card {
		flex-wrap: wrap;
		padding: 0;
	}

	.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 */
.blog-card {
	background-color: #fff;
	position: relative;
	border-radius: 0.75rem;
	overflow: hidden;
	height: 100%;
}

.blog-card article {
	padding: 1.5rem;
	position: relative;
}

.blog-card:hover img {
	transform: scale(1.1);
}

.blog-card article .blog-date {
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 400;
	color: var(--gray);
}

.blog-card .cta-btn {
	display: inline-flex;
}

.blog-figure {
	width: 100%;
	aspect-ratio: 2.25 / 1;
	overflow: hidden;
	position: relative;
}

.blog-figure figcaption {
	position: absolute;
	left: 1rem;
	top: 1rem;
	border-radius: 5rem;
	padding: 0.25rem 0.75rem;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(24px);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 500;
	font-family: var(--font-family-alt);
}

.blog-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.blogs-section {
	position: relative;
}

/* .blogs-section::before,
.blogs-section::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
}

.blogs-section::before {
	background-image: url('../images/bg/circles.png');
	background-size: 250px 500px;
	background-position: left 0 top 100px;
	transform: rotateY(180deg);
}

.blogs-section::after {
	background-image: url('../images/bg/twirl.png');
	background-size: 100px 100px;
	background-position: right 250px top 50px;
	transform: rotateY(180deg);
} */

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.blogs-section::after {
		background-image: url(../images/bg/twirl.png);
		background-size: 50px 50px;
		background-position: right 10px top 20px;
	}
}

.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;
}

.blogs-section .section-header {
	margin-bottom: 2rem;
}

.blog-img {
	overflow: hidden;
	display: block;
	margin: -1px;
	position: relative;
	z-index: 2;
	transition: ease 0.5s;
	border-radius: 10px;
}

.blog-img::before {
	padding-top: 66.6%;
}

#blog-nav .swiper-button-prev {
	left: 20px;
	right: unset;
}

#blog-nav .swiper-button-next {
	left: unset;
	right: 20px;
}

.blog-img img {
	transition: ease 0.7s;
}

.blog-content {
	position: relative;
	z-index: 1;
	padding: 1.5rem 0;
	color: #000;
}

.blog-content::before {
	/* content: ""; */
	position: absolute;
	bottom: calc(100% + 0.7rem);
	height: 8rem;
	left: -1.2rem;
	right: -1.2rem;
	background-color: var(--theme-primary-bg-light);
	border-radius: 1rem;
	transition: ease 0.7s height;
}

.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-title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--black);
}

.blog-desc-preview {
	font-family: var(--font-family);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	margin-bottom: 1rem;
	color: var(--gray);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.blog-category {
	color: var(--theme-primary);
}

.blog-link {
	position: relative;
	display: inline-block;
	padding-bottom: 0.2rem;
}

.blog-link::after {
	content: "";
	position: absolute;
	bottom: 0.2rem;
	left: 0;
	width: 100%;
	height: 1px;
	transform-origin: left;
	transform: scaleX(0);
	transition: ease 0.25s;
	transition-property: transform;
	background-color: currentColor;
}

.blog-link:hover::after {
	transform: scaleX(1);
}

@media (max-width: 390px) {
	.home-services-card {
		max-width: 320px !important;
	}
}

@media (max-width: 340px) {
	.home-services-card {
		max-width: 300px !important;
	}
}

@media (max-width: 768px) {
	.blog-swiper-container {
		--swiper-navigation-sides-offset: 0.5rem;
	}

	.home-services-bg img {
		opacity: 0.4;
	}

	.blog-bg-img img {
		opacity: 0.4;
	}

	.blog-img {
		margin-bottom: 1.7rem;
	}

	.blog-content {
		text-align: center;
		padding-top: 0.5rem;
	}

	.blog-content::before {
		left: -1rem;
		right: -1rem;
	}
}

/* #endregion blogs */

/* #region contact */

.home-contact {
	overflow: hidden;
	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 .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 {
	/* margin-top: 1.5rem; */
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid #dadada;
	/* box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%); */
}

.home-contact-map::before {
	padding-top: 56.5%;
}

.home-contact-form-col {
	flex: 1 1 50%;
}

.contact-form-container {
	max-width: 576px;
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(220, 223, 229, 0.5);
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.contact-form-container .form-group label {
	color: var(--black);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
	font-family: var(--font-family-alt);
}

.contact-form-container .form-group .form-control,
.contact-form-container .form-group .form-select {
	background-color: rgb(232, 234, 238);
	color: var(--black);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	border-radius: 0.75rem;
	border: 1px solid rgb(220, 223, 229);
	padding: 0.75rem 1rem;
}

.contact-form-container .form-group .form-control::placeholder {
	color: var(--gray);
}

.contact-form-container .form-group .form-control:focus,
.contact-form-container .form-group .form-select:focus {
	box-shadow: none;
}

.home-contact-form-field {
	/* margin-bottom: 1.5rem; */
	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;
	border-radius: 0.4rem;
	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;
	/* pointer-events: none; */
	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;
	}

	.contact-form-container .form-button {
		grid-column: span 1;
	}
}

@media (max-width: 768px) {
	.home-whyus-title {
		font-size: 1rem;
	}

	.excellences {
		padding: 1rem;
	}

	.home-contact .dark-bg {
		padding-block: 1.5rem;
		border-radius: 1rem;
	}

	.dark-bg .section-title {
		font-size: 1.875rem;
		line-height: 2.175rem;
	}

	.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;
	}

	.home-contact-form-field {
	}

	.home-contact-form-input {
	}

	.home-contact-form-input::placeholder {
	}

	.home-contact-form-label {
	}

	.home-contact-form-input:focus,
	.home-contact-form-input[required]:valid,
	.home-contact-form-input:not([required]):not(:placeholder-shown) {
	}

	.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus) {
	}

	.home-contact-form-input:focus + .home-contact-form-label,
	.home-contact-form-input:not(:placeholder-shown) + .home-contact-form-label {
	}
}

.dawn-footer .box {
	padding: 2rem;
	text-align: center;
	/* border: 1px solid #dadada; */
	height: 100%;
}

.dawn-footer .box .title {
	font-size: 1.5rem;
	line-height: 2rem;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
	font-weight: 300;
}

.dawn-footer .box .contact-list a {
	display: block;
	color: #000;
	font-size: 1rem;
	line-height: 1.5rem;
}

.dawn-footer .box .contact-list a:hover {
	color: var(--theme-secondary);
}

.dawn-footer .box .address {
	font-size: 1rem;
	line-height: 1.5rem;
}

/* #endregion contact */

/* #region footer */
.page-footer {
	/* background-color: #142952; */
	color: #fff;
	font-weight: 400;
}

.page-footer-row {
	display: flex;
	align-items: flex-start;
	gap: 2rem 4rem;
}

.page-footer .footer-row {
	/* border-top: 1px solid rgba(255, 255, 255, 0.2); */
	padding: 1rem 0;
}

.footer-social-links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0;
}

.footer-social-links li {
	max-width: 2.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	padding: 0.25rem;
}

.footer-social-links li a {
	max-width: 1.5rem;
	width: 100%;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-col {
	flex: 1 1 100%;
	border: 1px solid #cccccc85;
	border-radius: 5px;
	padding: 10px 0 20px;
}

.footer-col-first {
	flex-basis: calc(35% - 6rem);
}

.footer-col-second {
	flex-basis: calc(65% - 6rem);
}

.footer-col a {
	display: inline-block;
}

.footer-col a:hover {
	color: var(--theme-secondary);
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-col-first .logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--gray);
	margin-bottom: 1rem;
}

.footer-col-first .logo .footer-logo {
	aspect-ratio: 3 / 1;
	max-width: 20rem;
	width: 100%;
	overflow: hidden;
	margin-bottom: 0;
}

.logo .footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left;
}

.footer-title {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.logo .text .name {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 600;
	font-family: var(--font-family-outfit);
	margin-bottom: 0;
}

.footer-special-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-special-links .link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gray);
}

.footer-special-links .link .icon {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--gray);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 2rem;
	border-radius: 50%;
	width: 100%;
}

.footer-special-links .link .icon .logo .text .since {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	line-height: 1rem;
}

.footer-special-links .link .data {
	font-size: 1rem;
	line-height: 1.25rem;
}

.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;
}

.clients-title {
	color: var(--theme-primary);
	font-weight: 300;
}

.social-links a {
	display: grid;
	place-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 5rem;
	/* border: 1px solid #155f83; */
	color: #fff;
	background: var(--theme-secondary);
	/* border: 1px solid var(--theme-secondary); */
}

.footer-social-links a {
	background-color: transparent;
	place-content: flex-start;
	width: 2rem;
	font-size: 1.5rem;
	height: auto;
}

.footer-social-links li {
	transition: 0.3s ease-in-out;
}

.footer-social-links li:hover {
	background-color: var(--theme-primary);
	color: #fff;
}

.footer-social-links li a:hover {
	color: #fff;
}

.social-links a svg {
	width: 1rem;
	height: 1rem;
}

.footer-services {
	color: #fff;
	font-size: 1rem;
}

.steedText {
	font-style: italic;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.footer-services:hover {
	opacity: 0.8;
}

.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: var(--theme-secondary-alt);
}

.client-image-figure img {
	object-fit: contain;
}

.client-swiper-2 {
	margin-left: 10rem;
	margin-right: 5rem;
}

.read-more-btn {
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 300;
	margin-top: 0.5rem;
	color: var(--theme-secondary);
	transition: 0.3s ease-in-out;
}

.read-more-btn:hover {
	font-size: 1.1rem;
	color: var(--theme-primary);
}

@media (max-width: 576px) {
	.client-swiper-2 {
		margin-left: 0;
		margin-right: 0;
	}

	.service-card .title {
		min-height: unset;
	}
}

@media (min-width: 768px) {
	.client-swiper-2 {
		margin-left: 5rem;
		margin-right: 5rem;
	}
}

@media (min-width: 1200px) {
	.client-swiper-2 {
		margin-left: 10rem;
		margin-right: 10rem;
	}
}

.footer-links {
	color: var(--gray);
	font-size: 0.875rem;
	line-height: 2rem;
	font-family: var(--font-family-outfit);
	display: inline-block;
}

.footer-links:hover {
	opacity: 0.8;
}

.footer-links i {
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-right: 0.5rem;
}

.copy-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem 1rem;
	color: rgb(119, 119, 119);
	font-size: 0.875rem;
	line-height: 1.25rem;
	padding-block: 1rem;
	border-top: 1px solid rgb(220, 223, 229);
}

.copy-footer img {
	width: 35px;
	height: 35px;
}

.copy-footer .footer-col:last-child {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.career-option {
	padding: 1rem;
	border: 1px solid #eaeaea;
	border-radius: 0.5rem;
	background-color: #fff;
	position: relative;
}

.careerCard {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid rgba(220, 223, 229, 0.5);
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	border-radius: 0.75rem;
	padding: 1.5rem;
	transition: 0.3s ease-in-out;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.careerCard:hover {
	border-color: var(--theme-primary);
}

.careerCard .content {
}

.careerCard .content .points {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.careerCard .content .points .point {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
}

.careerCard .content .points .point i {
	color: var(--gray);
}

.careerCard .content .title {
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 400;
	color: rgb(21, 21, 21);
	margin-bottom: 0.5rem;
}

.careerCard .content .desc {
	font-size: 1.125rem;
	line-height: 1.625rem;
	font-weight: 300;
	color: rgb(122, 122, 133);
	margin-bottom: 2rem;
}

.careerCard .action button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid rgb(231, 226, 218);
	padding: 0.5rem 1.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	border-radius: 5rem;
	font-family: var(--font-family-alt);
	color: rgb(23, 33, 54);
	transition: 0.3s ease-in-out;
	background-color: var(--theme-primary);
	color: #fff;
}

.careerCard .action button:hover {
	transform: scale(1.05);
}

.careerCard .action button i {
	font-size: 0.75rem;
	line-height: 1rem;
}

@media (max-width: 768px) {
	.footer-col-first .logo {
		margin-bottom: 1.5rem;
	}

	.footer-special-links {
		gap: 0.5rem;
	}

	.swiper-slide .banner-content,
	.swiper-slide.swiper-slide-active .banner-content {
		left: 0rem;
		max-width: 100%;
		padding: 1.5rem;
	}

	.aboutGrid {
		grid-template-columns: 1fr;
		overflow: hidden;
	}

	.footer-links {
		line-height: 1.5rem;
	}

	.footer-col-second .col ul > li {
		line-height: 1;
	}

	.aboutGrid .bigBox {
		grid-column: span 1;
	}

	.page-footer-row {
		flex-wrap: wrap;
	}

	.copy-footer {
		flex-direction: column;
		padding-block: 1.5rem;
	}

	.copy-footer .social-links {
		padding-block: 0.3rem;
	}

	.footer-social-links {
		padding: 0.5rem 0;
	}

	.blog-title {
		text-align: start;
	}

	.career-option {
		min-height: 300px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

/* #endregion footer */

/* #region Career modal css */
.careers-page-grid {
	display: grid;
	grid-template-columns: 15rem 1fr;
	align-items: start;
	gap: 1.5rem;
}

.career-categories-col {
	/* background-color: #f3f3f3; */
	background-color: #fff;
	border-radius: 0.7rem;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	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 {
	/* display: contents; */
	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: var(--theme-primary-alt);
}

.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;
	/* border: 2px solid; */
	transition: ease 0.3s;
	font-weight: 400;
}

.career-category-submit-btn {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.career-category-submit-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary); */
}

.career-category-clear-btn {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-color: var(--theme-secondary);
}

.career-category-clear-btn:hover {
	background-color: var(--theme-secondary-dark);
	/* color: var(--theme-secondary); */
}

.career-listings {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.career-option-title {
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2.1rem;
	margin-bottom: 0.5rem;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	min-height: 2lh;
}

.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;
	font-size: 1rem;
	padding: 1rem 1.5rem;
}

.career-modal .career-modal-body {
	width: 60rem;
	height: 40rem;
	display: flex;
	flex-direction: column;
}

.career-modal-header {
	margin-bottom: 1rem;
}

.career-modal-container {
	display: flex;
	gap: 1.5rem;
	height: 100%;
	flex: 1 1 0%;
	height: 0;
	overflow: hidden;
}

.career-modal-info,
.career-modal-form {
	width: 50%;
}

.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;
}

.career-modal-form .contact-form-row {
	display: block;
	margin-bottom: 0.8rem;
}

.career-modal-form .contact-form-col,
.career-modal-form .contact-form-wide-col {
	width: 100%;
	max-width: 100%;
	grid-column: auto;
}

.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-upload-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.career-upload-label {
	min-height: 82px;
	border: 1px dashed #d6d6d6;
	border-radius: 4px;
	padding: 14px 12px;
	background: #fafafa;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	text-align: center;
	color: #64748b;
	cursor: pointer;
}

.career-upload-label i {
	font-size: 16px;
	color: #64748b;
}

.career-upload-text {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.career-upload-hint {
	font-size: 12px;
	line-height: 1.25;
}

.career-upload-file {
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.25;
	color: #4b5563;
}

/* #endreion */

#career-nav .swiper-button-prev,
#career-nav .swiper-button-next {
	width: 50px;
	height: 50px;
	font-size: 10px;
	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;
	}
}

.home-testimonial-quote i {
	font-size: 4rem;
	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-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: transparent;
	background-image: linear-gradient(70deg, var(--logo-secondary-color) 25%, #f0544f2b 100%);
}

.volunteer-title {
	color: #fff;
	font-size: 4rem;
	max-width: 800px;
	line-height: 64px;
	font-weight: 400;
	margin-bottom: 15px;
	font-family: var(--font-family);
}

.volunteer-sub-text {
	color: #fff;
	font-size: 1.5rem;
	max-width: 650px;
	margin-bottom: 30px;
}

.volunteer-btn {
	border-radius: 50px;
}

.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;
}

.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: 12rem;
}

.footer-col {
	flex-basis: 30%;
}

.tagline {
	font-size: 1rem;
	line-height: 1.45rem;
	color: var(--gray);
	margin-bottom: 1rem;
}

.footer-col-second .footer-title {
	color: var(--theme-primary);
	font-family: var(--font-family-outfit);
	text-transform: uppercase;
}

.footer-contact-items {
	font-size: 1rem;
	text-transform: lowercase;
}

.footer-col a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social-links {
	padding: 1rem 0;
}

.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%);
}

.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:hover {
	font-weight: 500;
	color: #fff;
}

.floating-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 50px;
	width: 70px;
	height: 70px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 18px 66px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	z-index: 999999999;
}

.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;
}

.about-desc-article {
	margin: 50px 0 10px;
	border: 1px solid #dadada;
	padding: 25px 50px;
	border-radius: 10px;
}

.about-desc-article .noDonHeading {
	font-weight: 900;
	font-size: 36px;
	text-align: center;
	margin-bottom: 25px;
}

.about-desc-article p {
	position: relative;
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 500;
}

.about-desc-article p::before {
	content: "";
	left: -35px;
	top: 0;
	/* transform: translateY(-50%); */
	width: 30px;
	height: 30px;
	position: absolute;
	background-image: url("../images/about/hand.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* #region Footer Box */
.color-box {
	background-color: transparent;
	background-image: linear-gradient(135deg, var(--logo-primary-color) 0%, var(--logo-secondary-color) 100%);
	padding: 30px;
	text-align: center;
}

.color-box h3 {
	max-width: 720px;
	margin: auto;
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 35px;
}

.color-box a {
	padding: 10px 25px;
	background-color: var(--logo-primary-color);
	color: #fff;
	margin: 15px auto;
	text-transform: uppercase;
	font-size: 1rem;
}

.footer-over-box {
	padding-bottom: var(--section-gap);
}

.banner-figure {
	width: 100%;
	min-height: 100dvh;
	height: 100%;
	aspect-ratio: 2.25 / 1;
	overflow: hidden;
	position: relative;
}

.banner-figure::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(9, 9, 11, 0.8), rgba(9, 9, 11, 0.6), rgb(9, 9, 11));
	background-image: linear-gradient(to right, rgba(22, 50, 90, 0.95), rgba(22, 50, 90, 0.85), rgba(54, 61, 73, 0.7));
	z-index: 1;
}

.banner-figure::after {
	/* content: ''; */
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-image: linear-gradient(to right, rgb(9, 9, 11), rgba(0, 0, 0, 0), rgba(9, 9, 11, 0.5));
}

.banner-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	transition: 1s ease-in-out;
	opacity: 0.5;
}

#banner-swiper .swiper-slide.swiper-slide-active .banner-figure img {
	transform: scale(1);
	opacity: 1;
}

.footer {
	padding: 4rem 0;
	position: relative;
	z-index: 11;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1200px) {
	.home-banner-title {
		font-size: 4rem;
		line-height: 64px;
	}
}

@media only screen and (min-width: 300px) and (max-width: 1300px) {
	.header-nav-list {
		gap: 0.25rem;
		width: 100%;
	}

	.header-nav-list > li {
		padding-right: 1rem;
	}
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.reveal-section {
		min-height: max-content;
	}

	.reveal-text {
		font-size: 1.75rem;
		line-height: 2.25rem;
	}

	.lets-talk .title {
		font-size: 100px;
	}

	.flex-50 {
		flex-basis: 100%;
	}

	.numberCard .number {
		font-size: 2rem;
	}

	.header-nav-list > li > a {
		color: rgb(41, 48, 61);
		padding-left: 0;
	}

	.home-volunteer {
		margin-top: 1rem;
	}

	.main-header {
		position: sticky;
		left: unset;
	}

	.volunteer-title {
		font-size: 3rem;
		line-height: 50px;
		margin-bottom: 15px;
	}

	.home-about-img {
		padding-inline: unset;
		padding: unset;
	}

	.home-about-mobile-view-image {
		display: flex;
		max-width: 100%;
		margin-top: 1rem;
	}

	.home-about-tab-view-image {
		display: none;
	}

	.header-nav {
		height: calc(100vh - var(--header-height));
		overflow: auto;
	}

	.header-contact-item {
		display: none;
	}

	.nav-active > a::before,
	.header-nav-list > li:hover > a::before {
		bottom: 0;
	}

	.footer-row {
		justify-content: center;
	}

	.footer-col {
		flex-basis: 100%;
	}

	.main-header {
		background: white;
		overflow: hidden;
	}

	.home-banner-slide::before {
		padding: 0;
	}

	.home-banner-bg {
		position: static !important;
	}

	.home-banner-wrapper {
		position: static;
		background-color: var(--theme-primary);
		height: 200px;
	}

	.home-banner-content {
		text-align: center;
		padding: 20px 0;
		background-color: unset;
	}

	.home-banner-title {
		font-size: 1.375rem;
		line-height: 1.675rem;
		text-align: center;
		color: #fff;
		text-shadow: none;
	}

	.about-title,
	.home-about-desc,
	.profile-address,
	.home-testimonial-content {
		max-width: 100%;
	}

	.home-whyus-grid {
		margin-bottom: 2rem;
		grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	}

	.home-whyus-desc {
		font-size: 1rem;
	}

	.home-volunteer {
		height: 500px;
	}

	.footer-col a {
		justify-content: center;
	}

	.footer-row {
		gap: 20px;
	}

	.header-menu-open-icon {
		color: #000;
	}

	.home-contact-row {
		flex-direction: column-reverse;
	}

	.header-nav {
		justify-content: center;
	}

	.copy-footer {
		gap: 5px;
	}

	.special-footer-col {
		display: flex !important;
	}

	.pvc-col {
		display: none;
	}

	.home-banner-wrapper > .container {
		justify-content: center;
	}

	.home-whyus-grid {
		position: relative;
		left: 0;
		transform: translate(0, 0);
		grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	}

	.home-services-card .home-services-body {
		max-width: 90%;
		margin: auto;
		transform: translate(0, -2rem);
	}

	.banner-content {
		left: 1rem;
		top: calc(50% + 5rem);
	}

	.swiper-slide.swiper-slide-active .banner-content {
		top: calc(50% + 3rem);
	}

	.banner-content .title {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.banner-nav-btns {
		display: none;
	}

	.banner-figure::before {
		background: linear-gradient(to right, rgba(26, 51, 102, 0.95), rgba(26, 51, 102, 0.75), rgba(26, 51, 102, 0.5));
	}

	.banner-content .subtitle {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.home-about .section-header .section-subtitle {
		margin-bottom: 2rem;
	}

	.home-about .section-header .section-title span.big-number {
		font-size: 6rem;
		line-height: 6.5rem;
	}

	.productCard figure .content {
		display: none;
	}

	.productCard article .content {
		display: block;
		position: static;
	}

	.productCard .content {
		padding: 1rem;
	}
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
	.quote-left {
		left: 5%;
	}

	.quote-right {
		right: 5%;
	}

	.quote {
		width: 100px;
	}

	.banner-figure {
		aspect-ratio: 1 / 1.5;
	}

	#testimonial-btn {
		width: auto;
	}

	.volunteer-title {
		font-size: 2.5rem;
		line-height: 3rem;
		margin-bottom: 15px;
		font-weight: 700;
	}

	/* .home-services-title {
		padding: 0;
	} */
	.about-desc-article {
		padding: 25px 20px 25px 50px;
	}

	.home-about-mobile-view-image {
		flex-wrap: wrap;
		gap: 15px;
	}

	.home-about-mobile-view-image figure {
		width: 100%;
		aspect-ratio: 1.75 / 1;
	}

	.home-about-mobile-view-image figure iframe {
		width: 100%;
		height: 100%;
	}

	.about-desc-article .noDonHeading {
		font-size: 26px;
	}

	.about-desc-article p {
		line-height: 1.6rem;
		margin-bottom: 10px;
	}

	.home-services-title a {
		min-height: unset;
	}

	.volunteer-content-box {
		left: 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;
	}

	.header-nav {
		max-width: 100dvw;
	}

	.header-menu-panel {
		width: 100%;
		height: calc(100vh - var(--header-height));
		padding: 1.5rem 1.25rem;
		border-radius: 0;
	}

	.header-nav-list > li > a {
		font-size: 1rem;
	}

	.floating-whatsapp {
		width: 55px;
		height: 55px;
	}

	.floating-whatsapp .floating-box {
		font-size: 2.6rem;
	}

	.clients-grid {
		grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
		gap: 2rem;
	}

	.footer-over-box {
		padding-bottom: 2rem;
	}

	.color-box {
		transform: translate(0);
		padding: 40px 20px;
	}

	.copy-footer {
		text-align: center;
	}

	.color-box h3 {
		font-size: 1.5rem;
		margin-bottom: 40px;
	}

	.footer {
		padding-block: calc(var(--section-gap) / 2);
	}

	.footer-col-first,
	.footer-col-second {
		flex-basis: 100%;
	}

	.footer-title {
		margin-bottom: 0.5rem;
	}

	.copy-footer .footer-col {
		width: 100%;
	}

	.copy-footer .footer-col:last-child {
		justify-content: center;
	}

	.dawn-footer .box .address,
	.dawn-footer .box .contact-list a {
		font-size: 1rem;
		line-height: 1.5rem;
	}

	.dawn-footer .box .contact-list a {
		line-height: 1.3rem;
	}

	.scroll-down .main-header .main-header-row {
		backdrop-filter: none;
	}
}

.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);
}

/* Icon Style */
.icon-style {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

/* Wave Animation */

.wave-field-row {
	position: relative;
	width: 100%;
	height: 100px;
	/* Exact height requested */
	overflow: hidden;
	display: block;
}

.wave-svg {
	position: absolute;
	width: 200%;
	/* Double width for seamless loop */
	height: 100%;
	animation: wave-move 8s linear infinite;
}

/* Keyframes to slide the bottom wave */
@keyframes wave-move {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10%);
	}
}

/* Wave ends */

/* #region services accordion */
.services-accordion {
	background: #fff;
}

.services-accordion-grid {
	display: grid;
	grid-template-columns: minmax(260px, 450px) 1fr;
	gap: 3rem;
	align-items: start;
}

.services-accordion-eyebrow {
	font-size: 1rem;
	color: #5a5a5a;
	margin-bottom: 0.5rem;
	font-family: var(--font-family-alt);
}

.services-accordion-title {
	font-size: clamp(2.75rem, 4vw, 4.5rem);
	line-height: 1.05;
	font-weight: 300;
	color: #111;
	margin-bottom: 1.5rem;
	font-family: var(--font-family-outfit);
}

.services-accordion-desc {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #5a5a5a;
	max-width: 22rem;
}

.services-accordion-list {
	border-top: 1px solid #d9d9d9;
}

.services-accordion-item {
	border-bottom: 1px solid #d9d9d9;
}

.services-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 2.75rem 0;
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 300;
	color: #111;
	text-align: left;
}

.services-accordion-item.is-active .services-accordion-trigger {
	color: var(--theme-secondary);
}

.services-accordion-item.is-active .services-accordion-trigger i {
	transform: rotateZ(-180deg);
}

.services-accordion-icon {
	position: relative;
	width: 4rem;
	height: 4rem;
	flex: 0 0 4rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	border: 2px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-accordion-icon i {
	transition: 0.3s ease-in-out;
}

.services-accordion-icon::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.75rem;
	height: 0.75rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: transform 0.25s ease;
}

.services-accordion-item.is-active .services-accordion-icon::before {
	transform: translate(-50%, -50%) rotate(-135deg);
}

.services-accordion-panel {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-4px);
	transition:
		max-height 0.35s ease,
		opacity 0.25s ease,
		transform 0.35s ease;
}

.services-accordion-item.is-active .services-accordion-panel {
	padding-bottom: 2rem;
}

.services-accordion-body {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
	max-width: 46rem;
	max-height: 3lh;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.services-accordion-item.is-active .services-accordion-panel {
	opacity: 1;
	transform: translateY(0);
}

.big-font {
	font-size: 5rem;
	line-height: 1;
	font-weight: 300;
}

.marquee-font {
	font-size: 3.5rem;
	line-height: 4rem;
	font-weight: 300;
}

.section-left-right-scrolling-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	overflow: hidden;
	background-color: rgb(243, 243, 243);
	padding-block: 4rem;
	/* Important: keeps clones from causing scrollbars */
}

/* Essential styles for the marquee structure */
.marquee-container {
	width: 100%;
	white-space: nowrap;
}

.marquee-wrapper {
	display: flex;
	width: max-content;
	/* Critical: keeps items in one single line */
	will-change: transform;
}

.marquee-part {
	display: flex;
	flex-shrink: 0;
	/* Critical: prevents text from squishing */
	padding-right: 40px;
	/* Space between the sets of text */
}

@media (max-width: 992px) {
	.services-accordion-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-accordion-desc {
		max-width: 100%;
	}
}

/* #endregion services accordion */
.header-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.header-menu-title {
	font-family: var(--font-family-outfit);
	font-size: clamp(2.5rem, 4vw, 4.5rem);
	font-weight: 300;
	letter-spacing: 0.02em;
	color: #111;
	margin: 0;
}

.menu-close-btn {
	background: transparent;
	border: 1px solid rgba(9, 9, 11, 0.2);
	border-radius: 999px;
	padding: 0.5rem 1.25rem;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: var(--font-family-alt);
}

.menu-close-btn:hover {
	border-color: rgba(9, 9, 11, 0.35);
}

/* #awards-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
	transition-duration: 3000ms;
	will-change: transform;
}
.awards-swiper .swiper-slide {
	width: auto;
	display: inline-block;
	white-space: nowrap;
} */

.awards-swiper {
	max-width: 768px;
	margin-inline: auto;
}

.award-figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
}

.award-figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
}

.btn-enquire {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 5rem;
	font-size: 0.9rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: var(--font-family-alt);
	transition: 0.3s ease-in-out;
	max-width: 12rem;
	gap: 0.75rem;
}
.btn-enquire.eq-md {
	max-width: 12rem;
	width: 100%;
	flex-grow: 1;
}
.btn-enquire.eq-large {
	max-width: 15rem;
	width: 100%;
	flex-grow: 1;
}

.btn-enquire.eq-xlarge {
	max-width: 17rem;
	width: 100%;
	flex-grow: 1;
}

.btn-enquire .fx-alpha-scramble-text {
	min-height: 2rem;
	max-height: 2.5rem;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.btn-enquire .circle-dot {
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	max-width: 2.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out;
}

.btn-enquire .circle-dot::before {
	content: "";
	background-color: var(--theme-primary);
	border: 1px solid var(--theme-primary);
	max-width: 8px;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center;
	border-radius: 50%;
	transition: 0.3s ease-in-out;
}

.btn-enquire .circle-dot i {
	font-size: 1rem;
	line-height: 1;
	color: #fff;
	opacity: 0;
	position: relative;
	z-index: 1;
	transform: rotateZ(-45deg);
	transition: 0.3s ease-in-out;
}

.btn-enquire:hover .circle-dot::before {
	max-width: 100%;
}

.btn-enquire:hover .circle-dot i {
	opacity: 1;
}

@media only screen and (max-width: 768px) {
	.marquee-font {
		font-size: 2rem;
		line-height: 2.5rem;
		margin-bottom: 0;
	}
	.services-accordion-body {
		margin-bottom: 1.5rem;
	}
	.services-accordion-desc {
		line-height: 1.5;
	}
	.awards-swiper {
		max-width: 100%;
	}
	.big-font {
		font-size: 3rem;
	}

	.lets-talk .title::after {
		background-image:
			/* Inner Circle - Solid */
			radial-gradient(100px 100px at var(--fx, 50%) var(--fy, 50%), rgba(69, 173, 207, 0.95) 0%, rgba(69, 173, 207, 0.95) 70%, transparent 70.5%),
			/* Middle Ring - Solid */ radial-gradient(200px 200px at var(--fx, 50%) var(--fy, 50%), #0058a5cc 0%, #0058a5cc 72%, transparent 72.5%),
			/* Outer Ring - Solid */ radial-gradient(300px 300px at var(--fx, 50%) var(--fy, 50%), #0058a56b 0%, #0058a56b 75%, transparent 75.5%);
		-webkit-background-clip: text;
		background-clip: text;
		opacity: 0;
		transition: opacity 0.25s ease;
		pointer-events: none;
	}

	.menu-active .header-menu-panel {
		flex-direction: column;
		align-items: flex-start;
	}

	.header-nav-list {
		overflow: initial;
	}

	.dropdown-grid a {
		font-size: 0.875rem;
		line-height: 1.125rem;
	}

	.header-nav-section .social-links {
		align-items: flex-start;
	}

	.is-magnate.custom-cursor {
		width: 40px;
		height: 40px;
	}

	.section-header {
		margin-bottom: 2rem;
	}
	.section-left-right-scrolling-section {
		padding-block: 2rem;
	}
}
