/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #5f6063;
	--theme-primary: #2B78BE;
	--theme-primary-dark: #2B78BE;
	--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: #2B78BE;
	--theme-secondary-alt: #fff;
	--container-width: 1320px;
	--container-sm-width: 1065px;
	--container-xsm-width: 896px;
	--container-vsm-width: 1024px;
	--container-lg-width: 1440px;
	--column-gutter: 15px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	--primary-filter: brightness(0) saturate(100%) invert(30%) sepia(45%) saturate(1733%) hue-rotate(318deg) brightness(107%) 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: 5.5rem;
	/*75px;*/
	--top-header-height: 3.5rem;
	--header-height-min: 60px;
	--logo-width: 20rem;
	/*110px;*/
	--header-spacing: 2rem;
	--section-gap: 5rem;
	--swiper-theme-color: var(--theme-primary);
	--nav-hover-color: var(--theme-primary);
}

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

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

body {
	color: var(--text-color);
	font-family: var(--font-family);
	/* overflow-x: hidden; */
	line-height: 1.8;
	font-weight: 400;
	/* padding-top: var(--header-height); */
	/* background-color: var(--theme-primary-bg-lighter); */
}

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

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

figure,
p,
ul,
ol {
	margin: 0;
}


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

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

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

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

	html {
		font-size: 14px;
	}
}

/* #endregion setup */

/* #region layout */

.menu-active {
	overflow: hidden;
}

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

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

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

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

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

.light-bg {
	position: relative;
	background-color: var(--theme-primary-bg-lighter);
}

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

.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-subtitle {
	/* letter-spacing: 2px; */
	font-size: 1rem;
	font-family: var(--font-family);
	/* opacity: 0.3; */
	/* line-height: 2; */
	text-transform: uppercase;
	color: #000;
	/* margin-top: 1.5rem; */
}

.section-subtitle::before,
.section-subtitle::after {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: var(--theme-primary);
	vertical-align: middle;
	margin: 0 0.5rem;
}

.section-subtitle::before,
.center-header .section-subtitle::after {
	/* content: ""; */
}

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

.section-desc {
	margin-top: 1rem;
	max-width: 670px;
	margin-inline: auto;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #000;
}

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

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

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

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

.header-banner {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: var(--theme-primary-dark);
	color: var(--theme-secondary);
	text-align: center;
	position: relative;
}

.steed-text {
	font-size: 1rem;
	line-height: 1.5rem;
	text-decoration: underline;
	text-underline-offset: 4px;
	font-style: italic;
	text-transform: uppercase;
}

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

.header-banner::before {
	background-image: var(--header-banner-img-1);
	background-position: left bottom;
	left: 0;
}

.header-banner::after {
	background-image: var(--header-banner-img-2);
	background-position: top right;
	right: 0;
}

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

.header-banner .section-header .section-title {
	color: #ffffff;
}

.section-header-crumbs {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
	color: #ffffff;
}

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

.customer-login-btn {
	background-color: #21C45D;
	display: inline-flex !important;
	align-items: center !important;
	height: auto !important;
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem !important;
	line-height: 1.125rem;
	color: #fff !important;
	font-weight: 500 !important;
	border-radius: 0.5rem;
}

.customer-login-btn i {
	font-size: 1.5rem;
}

.header-info {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.cta-btn {
	display: inline-block;
	padding: 0.66rem 1.33rem;
	font-size: 1rem;
	line-height: 1;
	background-color: var(--theme-primary);
	color: #fff;
	position: relative;
	overflow: hidden;
	border-radius: 0.4rem;
	border: 2px solid #e0e0e0;
	font-weight: 600;
	transition: ease 0.3s;
}

.cta-btn:hover {
	background-color: #fff;
	color: var(--theme-primary);
	/* color: var(--theme-primary-bg-lighter); */
}

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

.section-header {
	position: relative;
	margin-bottom: 3rem;
}

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

.section-title-sm {
	/* text-transform: uppercase; */
	/* letter-spacing: 3px; */
	font-weight: 400;
	/* color: var(--theme-primary); */
	margin-top: 1em;
	font-size: 1.3rem;
	line-height: 1.3;
}

.section-title {
	font-family: var(--font-family);
	font-style: normal;
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 600;
	position: relative;
	color: #000;
	letter-spacing: -1px;
}

.dark-bg .section-title {
	color: #000;
	font-family: var(--font-family);
	font-weight: 200;
	font-style: normal;
}

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

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

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

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

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

	.section-title {
		font-size: 1.75rem;
		line-height: 2rem;
		margin-bottom: 0.5rem;
	}

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

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

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

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

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

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

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

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

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

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

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

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

@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: var(--theme-secondary); */
	/* color: var(--theme-secondary-alt); */
	background-color: #fff;
}

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


.social-links {
	display: flex;
	gap: 0.5rem;
	/*padding-block: 0.6rem;*/
}

.main-header {
	position: sticky;
	top: 0;
	z-index: 50;
	/* background-color: #fff; */
	background-image: linear-gradient(135deg, rgb(8, 70, 170) 0%, rgb(10, 90, 219) 50%, rgb(33, 196, 93) 100%);
}

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

.main-header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-height);
	position: relative;
}

.header-logo {
	width: var(--logo-width);
	height: calc(var(--header-height));
	padding: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: ease 0.3s;
	gap: 1rem;
}

.header-logo figure {
	max-width: calc(var(--header-height) - 2rem);
	max-height: calc(var(--header-height) - 2rem);
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	padding: 0.25rem;
	background-color: #fff;
}

.bell-icon i {
	font-size: 1.33rem;
	line-height: 1.875rem;
	animation: blink 2s infinite;
	vertical-align: middle;
}

.swiper-pagination .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
	padding: 0.4rem;
	border-radius: 1rem;
	transition: 0.3s ease-in-out;
}

.swiper-button-prev,
.swiper-button-next {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 50px;
	max-height: 50px;
	width: 100%;
	height: 100%;
	background-color: #ffffff7e;
	color: #fff;
	overflow: hidden;
	transition: 0.3s ease-in-out;
}

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

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: #ffffff59;
	transform: scale(1.025);
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	padding: 0.4rem 1rem;
}

section {
	background: linear-gradient(rgb(255, 255, 255), rgb(248, 250, 252));
}

.trusted-section .big-section-title {
	font-size: 3.5rem;
	line-height: 4rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.description {
	font-size: 1.05rem;
	line-height: 1.875rem;
	color: rgb(98, 109, 132);
	margin-bottom: 1rem;
	letter-spacing: -0.25px;
}

.big.description {
	font-size: 1.375rem;
	line-height: 2rem;
}

.trusted-section .cards {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}

.trusted-section .cards .card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 10px 15px -3px, rgba(8, 70, 170, 0.05) 0px 4px 6px -2px;
	border: none;
	padding: 1rem 1.75rem;
	border-radius: 0.75rem;
}

.trusted-section .cards .card .icon {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 3rem;
	width: 100%;
	max-height: 3rem;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	padding: 0.75rem;
}

.trusted-section .cards .card .data {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
}

.trusted-section .cards .card .data .number {
	font-size: 1.75rem;
	line-height: 2rem;
	font-weight: 700;
}

.trusted-section .cards .card .data .text {
	font-size: 0.75rem;
	line-height: 1.25rem;
	white-space: nowrap;
	text-wrap: nowrap;
	color: rgb(98, 109, 132);
}

.trusted-section .cards .card.a .icon {
	background-color: #E6ECF6;
	color: #0846AA;
}

.trusted-section .cards .card.a .data .number {
	color: #0846AA;
}

.trusted-section .cards .card.b .icon {
	background-color: #E8F9EE;
	color: #21C45D;
}

.trusted-section .cards .card.b .data .number {
	color: #21C45D;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.65;
	}
}

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

.header-logo .title {
	color: #fff;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
}

.header-nav {
	position: relative;
	/*margin-inline: auto;*/
	height: 100%;
	display: flex;
	gap: 0 2rem;
	align-items: center;
	flex: auto;
	justify-content: flex-end;
}

.header-nav::before {
	content: "";
	top: calc(-0.5rem - 1px);
	top: -1px;
	left: 0;
	width: 100%;
	height: 0;
	position: absolute;
	border-top: 1px solid #dadada;
}

.header-nav-list {
	display: flex;
	align-items: center;
	position: relative;
	/* text-transform: uppercase; */
	font-weight: 500;
	gap: 1.5rem;
	height: 100%;
	font-size: 1rem;
	color: var(--theme-primary-dark);
}

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

.header-nav-list>li>a {
	display: grid;
	height: 100%;
	place-content: center;
	color: #fff;
	font-family: var(--font-family);
	font-style: normal;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.nav-active>a,
.header-nav-list>li:hover>a {
	color: #ffffffad !important;
}

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

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

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

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

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

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

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

.header-nav-dropdown-list li a {
	padding: 0.7rem 1rem;
}

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

.header-nav-dropdown-list li:hover a {
	/* background-color: var(--theme-primary); */
	color: var(--theme-secondary);
	transform: translateX(0.5rem);
	font-weight: 500;
}

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

.header-nav-contact {
	display: grid;
	place-content: center;
	height: 100%;
	padding-left: var(--header-spacing);
	color: #fff;
}

.header-contact-item {
	/* margin-left: 2rem; */
	padding: 0.5rem 1.5rem;
	line-height: 2;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid var(--theme-secondary);
	color: var(--theme-secondary-alt);
	background-color: var(--theme-secondary);
	font-size: 1rem;
	border-radius: 5rem;
}

.header-contact-item:hover {
	color: var(--theme-secondary);
	background-color: var(--theme-secondary-alt);
}

@media (min-width: 1200px) {

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

	.header-nav-item {
		/* padding-right: 2rem; */
		/* border-right: 1px solid #eaeaea; */
		/* color: #666; */
		color: #000;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 30rem;
	}

	.header-nav-item a {
		/* color: #000; */
	}

	.scroll-down .header-logo {
		/* width: auto; */
		/* height: 100%; */
		height: calc(var(--header-height));
		padding-block: 0.5rem;
		/* bottom: 0; */
	}
}

@media (max-width: 1200px) {

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

	.home-about-desc {
		font-size: 1.05rem !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.75rem;
		width: calc(100% - 5rem);
		height: 100%;
		position: static;
	}

	.header-resp-action {
		/* margin-left: auto; */
		/* margin-right: 1rem; */
		/* width: 2.5rem; */
		flex: auto;
	}

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

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

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

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

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

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

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

	.header-resp-nav .social-links {
		padding: 0;
	}

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

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

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

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

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

/* #endregion header */

/* #region banner */
.home-mobile-banner-bg {
	display: none;
}

.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: 40%;
	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: 750px;
	width: 100%;
	position: relative;
	color: #fff;
	/* padding: 4rem; */
}

.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: 3rem;
	font-weight: 400;
	line-height: 1.2;
	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: var(--button-bg);
	border: 2px solid var(--button-bg);
	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: 0.5rem;
}

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

@media only screen and (min-width: 992px) {
	.lg-hide {
		display: none;
	}
}

@media only screen and (max-width: 991px) {
	.resp-hide {
		display: none;
	}

	.home-about-img {
		margin: 2rem 0 3rem;
	}

}

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

	.home-mobile-banner-bg {
		display: block;
	}

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

	.home-banner-slide img {
		aspect-ratio: 0.75 / 1;
	}

	.home-banner-slide img,
	.home-banner-wrapper {
		position: relative;
	}

	.home-banner-wrapper {
		min-height: 220px;
		text-align: center;
		padding: 3rem 1rem;
		background-color: var(--theme-secondary);
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.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 */
.aboutCard {
	padding: 3rem;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.15) 0px 20px 25px -5px, rgba(8, 70, 170, 0.04) 0px 10px 10px -5px;
	border-radius: 1rem;
	margin-bottom: 2rem;
}

.aboutCard .md-info {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.aboutCard .md-info figure {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	max-width: 180px;
	max-height: 180px;
	border: 4px solid rgba(8, 70, 170, 0.2);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 10px 15px -3px, rgba(8, 70, 170, 0.05) 0px 4px 6px -2px
}

.aboutCard .md-info figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aboutCard .md-info article .name {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.875rem;
	margin-bottom: 0;
}

.aboutCard .md-info article .position {
	color: #0846AA;
	font-size: 0.9rem;
	line-height: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.aboutCard .md-info article .description {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.aboutCard article {
	font-size: 1rem;
	line-height: 1.5rem;
	color: rgb(31, 36, 46);
}

.aboutCard article p {
	margin-bottom: 1.5rem;
}

.aboutCard article p:last-child {
	margin-bottom: 0;
}

.aboutCard article p span {
	color: #21C45D;
	font-weight: 600;
}

.aboutCard article p span.a {
	color: #0846AA;
}

.aboutInfoCard {
	padding: 1.5rem;
	text-align: center;
	background-color: rgba(8, 70, 170, 0.05);
	color: rgb(8, 70, 170);
	border-radius: 0.5rem;
}

.aboutInfoCard.a {
	background-color: rgba(33, 196, 93, 0.05);
	color: rgb(33, 196, 93);
}

.careerCard {
	border: 1px solid rgb(225, 231, 239);
	border-radius: 0.75rem;
	padding: 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.careerCard .header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.careerCard .header .icon {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	max-width: 3rem;
	max-height: 3rem;
	width: 100%;
	height: 100%;
	background-color: #E6ECF6;
	color: #0846AA;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.33rem;
}

.careerCard .header .brief {
	display: flex;
	flex-direction: column;
}

.careerCard .header .brief .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.careerCard .header .brief .infos {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.125rem;
	color: rgb(98, 109, 132);
}

.careerCard .content .description {
	font-size: 0.85rem;
	line-height: 1.25rem;
}

.careerCard .content .head {
	font-size: 0.85rem;
	line-height: 1.25rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.careerCard .content .requirements {
	list-style: disc;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: rgb(98, 109, 132);
	padding: 0;
	margin-bottom: 1.5rem;
}

.careerCard .content .requirements li {
	margin-bottom: 0.5rem;
	margin-left: 1rem;
}

.aboutInfoCard .icon {
	aspect-ratio: 1 / 1;
	max-width: 4rem;
	margin: 0 auto 1rem;
	max-height: 4rem;
	padding: 1rem;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	overflow: hidden;
	background-color: rgba(8, 70, 170, 0.1);
	font-size: 1.875rem;
	line-height: 1;
}

.aboutInfoCard.a .icon {
	background-color: rgba(33, 196, 93, 0.1);
}

.aboutInfoCard .number {
	font-size: 1.75rem;
	line-height: 2rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.aboutInfoCard .text {
	font-size: 0.875rem;
	line-height: 1.125rem;
	color: rgb(98, 109, 132);
}

.home-about {
	position: relative;
}

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

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

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

.home-about .section-title {
	color: #000;
}

.home-about-desc {
	margin-bottom: 2rem;
	font-size: 1rem;
	color: #000;
	font-family: var(--font-family);
	font-style: normal;
}

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

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

.home-about-cta {
	/* margin-top: 1rem; */
}

.home-about-img {
	/* height: 30rem; */
	position: relative;
	padding-inline: 4rem;
}

.home-about-img img {
	height: 100%;
	width: auto;
	object-fit: cover;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.home-about-img::before {
	content: "";
	position: absolute;
	top: -2rem;
	bottom: -2rem;
	right: 0rem;
	width: 9rem;
	background-color: #039775;
	border-radius: 0 1rem 1rem 0;
	border-radius: 1rem;
	z-index: -1;
}

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

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

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

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

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

	50% {
		transform: translateY(0);
	}

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

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

	.home-about-img {
		height: auto;
		padding-inline: 1rem;
		/* 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 services */

.services-section {
	position: relative;
}

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

.serviceCard {
	position: relative;
	height: 100%;
	border-radius: 1rem;
	padding: 12rem 2rem 1.5rem;
	color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.serviceCard .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.serviceCard.a .overlay {
	background: linear-gradient(to top, rgba(8, 70, 170, 0.95), rgba(8, 70, 170, 0.7), rgba(0, 0, 0, 0));
}

.serviceCard.b .overlay {
	background: linear-gradient(to top, rgb(21 131 61 / 95%), rgb(25 153 72 / 70%), rgba(0, 0, 0, 0));
}

.serviceCard.a:hover {
	cursor: pointer;
	box-shadow: rgba(60, 131, 246, 0.3) 0px 0px 40px 0px;
}

.serviceCard.b:hover {
	cursor: pointer;
	box-shadow: rgba(165, 246, 60, 0.3) 0px 0px 40px 0px;
}

.serviceCard figure {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

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

.serviceCard:hover img {
	transform: scale(1.1);
}

.serviceCard .card-content {
	position: relative;
	z-index: 2;
}

.serviceCard .card-content .title {
	font-size: 1.75rem;
	line-height: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.serviceCard .card-content .para {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.serviceCard .card-content .quick-points {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.serviceCard .card-content .quick-points .point {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	line-height: 1.5rem;
	position: relative;
}

.serviceCard .card-content .quick-points .point::before {
	content: '\f111';
	font-family: "FONT AWESOME 7 FREE";
	font-size: 0.25rem;
	line-height: 1rem;
	position: absolute;
	right: -0.5rem;
	top: 50%;
	transform: translate(50%, -50%);
	font-weight: 900;
}

.serviceCard .card-content .quick-points .point:last-child::before {
	content: unset;
}

.serviceCard .card-content .info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 2rem;
}

.serviceCard .card-content .info span {
	font-size: 0.8rem;
	line-height: 1.25rem;
}

.serviceCard .card-content .info .amount {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 600;
}

.serviceCard .card-content .action {
	display: block;
	text-align: center;
	width: 100%;
	padding: 0.5rem 1.25rem;
	border-radius: 0.5rem;
	transition: 0.3s ease-in-out;
}

.serviceCard.a .card-content .action:hover {
	box-shadow: rgba(60, 131, 246, 0.3) 0px 0px 40px 0px;
}

.serviceCard.b .card-content .action:hover {
	box-shadow: rgba(60, 246, 122, 0.3) 0px 0px 40px 0px;
}

.serviceCard.a .card-content .action {
	background-image: linear-gradient(135deg, rgb(8, 70, 170), rgb(10, 90, 219));
}

.serviceCard.b .card-content .action {
	background-image: linear-gradient(135deg, rgb(33, 196, 93), rgb(59, 222, 119));
}

.serviceCard .card-content .action i {
	margin-left: 0.5rem;
}

.serviceCard .detailed-points {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.serviceCard .detailed-points .head {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.serviceCard .detailed-points .points {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-evenly;
}

.serviceCard .detailed-points .points .point {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.serviceCard .detailed-points .points .point .number {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 700;
}

.serviceCard .detailed-points .points .point .text {
	font-size: 0.75rem;
	line-height: 1rem;
}

.home-services-card {
	position: relative;
	/* background-color: #fff; */
	/* color: var(--theme-primary-dark); */
	/* box-shadow: 0px 4px 50px 0px rgb(0 0 0 / 5%); */
	border: 1px solid var(--theme-secondary);
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	overflow: hidden;
}

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

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

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

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

.home-services-header .home-services-img {
	flex: 0 0 15rem;
	/* border-radius: 5rem; */
	overflow: hidden;
}

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

.home-services-title {
	font-size: 1.3rem;
	/* white-space: nowrap; */
	font-weight: 400;
	line-height: 1.1;
	max-height: 3lh;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-transform: uppercase;
	padding: 0 2rem 10px;
	/* margin-bottom: 1rem; */
	/* text-align: center; */
}

/*.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.3;
	opacity: 0.7;
	padding: 0 2rem;
	font-family: var(--font-family);
	font-style: normal;
}

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

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

.home-gallery-item {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}

.home-gallery-img {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.19 / 1;
	height: 100%;
	border-radius: 1rem;
	overflow: hidden;
}

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

.home-gallery-body {
	position: absolute;
	inset: 0;
	padding: 1.5rem;
	color: var(--theme-primary-alt);
	display: flex;
	justify-items: flex-start;
	align-items: flex-end;
	gap: 1rem;
	z-index: 2;
	opacity: 0;
}

.home-gallery-body::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	z-index: -1;
	opacity: 0;
	border-radius: 1rem;
}

.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-img {
	transition: 0.3s ease-in-out;
}

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

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

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

.home-gallery-caption:hover {
	opacity: 0.9;
	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 why-us */

.home-whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	gap: 2rem;
	/* text-align: center; */
	/* margin-top: 3rem; */
	color: var(--theme-primary-dark);
}

.home-whyus-card {
	position: relative;
	/* padding-top: 4rem; */
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	gap: 1rem;
}

.home-whyus-img {
	/* position: absolute; */
	top: 0;
	left: 50%;
	/* transform: translateX(-50%); */
	z-index: 1;
	width: 4rem;
	height: 4rem;
	/* padding: 1.2rem; */
	flex-shrink: 0;
	border-radius: 50%;
	/* box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 20%); */
	/* background-color: #fff; */
}

.home-whyus-img img {
	width: 100%;
	height: 100%;
	filter: var(--primary-filter);
}

.home-whyus-content {
	/* padding: 2rem; */
	/* padding-top: 6rem; */
	/* background-color: var(--theme-primary-bg-lighter); */
	position: relative;
	z-index: 0;
	flex: auto;
}

.home-whyus-title {
	font-size: 2.2rem;
	color: #000;
	/* margin-bottom: 0.5rem; */
	line-height: 1;
	font-family: var(--font-family);
	font-weight: 200;
	font-style: normal;
}

.home-whyus-desc {
	font-size: 1.2rem;
	color: #000;
	font-family: var(--font-family);
	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;
}

.clientImages .section-header {
	max-width: 768px;
	margin-inline: auto;
}

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

/* #endregion delivery */

/* #region clients */

.home-clients {
	border-bottom: 1px solid #dadada;
}

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

.clientImageFigure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgb(225, 231, 239);
	padding: 1.5rem;
	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, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
	margin-block: 2rem;
}

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

.clientImageFigure:hover {
	transform: scale(0.95);
	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;
}

.home-client-img {
	/* flex: 1 1 100%; */
}

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

.home-client-img img {
	padding: 0.5rem 1rem;
	object-fit: contain;
	/* filter: grayscale(1); */
}

@media (max-width: 768px) {
	.clientImageFigure {
		margin: 0;
		padding: 0.75rem 0;
	}
}

/* #endregion clients */

/* #region testimonials */

.home-testimonials {
	position: relative;
}

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

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

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

#testimonials-swiper .swiper-slide {
	height: auto;
}

#services-swiper,
#services-swiper .swiper-wrapper,
.swiper-slide {
	height: auto;
}

.testimonialCard {
	border: 1px solid #dadada;
	background-color: #fff;
	border-radius: 0.75rem;
	padding: 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonialCard .quote {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 32px;
	max-height: 32px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	color: rgb(8, 70, 170);
	background-color: rgba(8, 70, 170, 0.1);
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.testimonialCard .testimonial {
	display: block;
	font-size: 0.85rem;
	line-height: 1.425rem;
	font-style: italic;
	color: rgb(98, 109, 132);
	margin-bottom: 0.75rem;
}

.testimonialCard .author {
	border-top: 1px solid #dadada;
	padding-top: 1rem;
}

.testimonialCard .author .name {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 600;
	margin: 0;
}

.testimonialCard .author .position {
	font-size: 0.8rem;
	line-height: 1.25rem;
	color: rgb(98, 109, 132);
}

/* #endregion testimonials */

/* #region blogs */

.blogs-section {
	position: relative;
}

.blogCard {
	padding: 1.5rem;
	border-radius: 0.5rem;
	border: 1px solid #dadada;
	background: #fff;
}

.blogCard .category {
	display: inline-block;
	padding: 0.25rem 0.66rem;
	border-radius: 5rem;
	background-color: #E6ECF6;
	color: #0846AA;
	font-size: 0.8rem;
	line-height: 1rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.blogCard .title {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 2lh;
	overflow: hidden;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.blogCard .description {
	font-size: 0.9rem;
	line-height: 1.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	min-height: 4lh;
	overflow: hidden;
	margin-bottom: 1rem;
}

.blogCard .action {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #dadada;
}

.blogCard .action .date {
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgb(98, 109, 132);
}

.blogCard .action .date i {
	margin-right: 0.25rem;
}

.blogCard .action .readMore {
	color: #000;
	font-size: 0.875rem;
	line-height: 1rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	transition: 0.3s ease-in-out;
}

.blogCard .action .readMore i {
	margin-left: 0.25rem;
}

.blogCard .action .readMore:hover {
	background-color: rgb(230, 242, 255);
	color: #0846AA;
}

.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 {
	/* overflow: visible; */
	--swiper-navigation-sides-offset: -3rem;
	--swiper-navigation-size: 2rem;
	position: relative;
}

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

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

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

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

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

.blog-slide {
	/* padding-inline: 1.2rem; */
	border: 1px solid #dadada;
	border-radius: 1rem;
	overflow: hidden;
	background-color: #fff;
}

.blog-img {
	overflow: hidden;
	display: block;
	margin: -1px;
	/* margin-bottom: 2rem; */
	/* border-radius: 1rem; */
	position: relative;
	z-index: 2;
	transition: ease 0.5s;
}

.blog-img::before {
	padding-top: 66.6%;
}

.blog-img img {
	transition: ease 0.7s;
}

.blog-slide:hover .blog-img {
	/* transform: scale(0.97); */
}

.blog-slide:hover .blog-img img {
	/* transform: scale(1.1); */
}

.blog-content {
	position: relative;
	z-index: 1;
	padding: 2rem;
	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-slide:hover .blog-content::before {
	height: 12rem;
}

.blog-date {
	line-height: 1;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

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

.blog-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 400;
}

.blog-category {
	color: var(--theme-primary);
	/* font-weight: 500; */
}

.blog-link {
	/* font-weight: 500; */
	/* font-size: 1.1rem; */
	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);
}

.infoCard {
	border-radius: 0.5rem;
	border: 1px solid rgb(225, 231, 239);
	padding: 1rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.infoCard .icon {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	max-width: 50px;
	max-height: 50px;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(8, 70, 170, 0.1);
	color: #0846AA;
	font-size: 1.25rem;
	line-height: 1.875rem;
}

.infoCard .info {
	display: flex;
	flex-direction: column;
}

.infoCard .info .title {
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 500;
}

.infoCard .info .description {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.125rem;
}

.home-contact .iframe {
	width: 100%;
	max-width: 100%;
	height: 250px;
	border-radius: 0.5rem;
	overflow: hidden;
}

.home-contact .iframe iframe {
	width: 100%;
	height: 100%;
}

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

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

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

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

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

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

	.blog-img {
		margin-bottom: 1.7rem;
	}

	.blog-slide.swiper-slide-active .blog-img {
		transform: scale(0.95);
	}

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

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

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

/* #endregion blogs */

/* #region contact */

.home-contact {
	position: relative;
}

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

@keyframes contact-img {

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-contact-map {
	/* 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: auto;
}

.contact-form {
	height: 100%;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border: 1px solid rgb(225, 231, 239);
	border-radius: 0.5rem;
}

.contact-form .title {
	font-size: 1.5rem;
	line-height: 1.75rem;
	font-weight: 600;
}

.login-form .form-group {
	margin-bottom: 1rem;
}

.contact-form .form-group label,
.login-form .form-group label {
	font-size: 0.85rem;
	line-height: 1.25rem;
	font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.login-form .form-group input,
.login-form .form-group textarea {
	border: 1px solid rgb(225, 231, 239);
	border-radius: 0.5rem;
}

.contact-form .form-group .form-control:active,
.contact-form .form-group .form-control:focus,
.login-form .form-group .form-control:active,
.login-form .form-group .form-control:focus {
	box-shadow: none;
	outline-color: #0846AA;
	border-color: #0846AA;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder,
.login-form .form-group input::placeholder,
.login-form .form-group textarea::placeholder {
	font-size: 0.8rem;
}

.login-form .cta-btn {
	width: 100%;
	font-size: 0.875rem;
	line-height: 1.125rem;
	font-weight: 400;
	background-color: #0846AA;
}

.contact-form-container {
	/* padding: 2.5rem; */
	/* margin-top: 2rem; */
	/* background-color: #fff; */
	border-radius: 1rem;
	/* box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%); */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1rem;
}

.home-contact-form-field {
	/* margin-bottom: 1.5rem; */
	position: relative;
}

.home-contact-form-input {
	padding-block: 1.4rem 0.5rem;
	padding-inline: 1rem;
	border-bottom: 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;
	}
}

@media (max-width: 768px) {
	.home-contact .dark-bg {
		padding-block: 1.5rem;
		border-radius: 1rem;
	}

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

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

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

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

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

/* #endregion contact */

/* #region footer */

.page-footer {
	padding-block: 0.5rem;
	background: linear-gradient(135deg, rgb(8, 70, 170) 0%, rgb(10, 90, 219) 50%, rgb(33, 196, 93) 100%);
	color: #fff;
	font-weight: 400;
}

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

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

.footer-col a {
	display: inline-block;
}

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

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

.footer-logo img {
	width: 7rem;
}

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

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

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

.social-links a {
	display: grid;
	place-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 5rem;
	border: 1px solid var(--theme-secondary);
}

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

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

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

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

.career-option {
	min-height: 270px;
	padding: 1rem;
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	border-radius: 0.5rem;
	background-color: #fff;
	position: relative;
}

@media (max-width: 768px) {
	.page-footer-row {
		flex-wrap: wrap;
	}

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

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

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

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

	.career-option {
		min-height: unset;
		height: 100%;
	}

	.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: var(--font-family);
	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;
	min-height: 68px;
	margin-bottom: 0.7rem;
}

.career-option-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 0.5rem;
}

.career-option-category {
	margin-top: 0.3rem;
	font-weight: 600;
	color: var(--theme-primary);
}

.career-option-desc {
	line-height: 1.5;
	font-weight: 300;
}

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

.career-select-btn {
	width: 100%;
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	line-height: 1.25rem;
	font-weight: 500;
	background-color: #0846AA;
	color: #fff;
	transition: 0.3s ease-in-out;
	border-radius: 0.25rem;
}

.career-select-btn:hover {
	transform: scale(0.985);
	box-shadow: 0px 0px 10px 0.1px rgba(156, 199, 248, 0.5);
}

.career-nav-btn,
.sb2 {
	position: absolute;
	inset: 0;
	top: 50%;
	max-width: 2rem;
	max-height: 2rem;
	background-color: #fff;
	border: 1px solid rgb(225, 231, 239);
	color: #000
}

.career-nav-btn:hover,
.sb2:hover {
	background-color: rgb(230, 242, 255);
	color: rgb(8, 70, 170);
}

.swiper-button-prev.career-nav-btn,
.sb2.swiper-button-prev {
	left: -3rem;
}

.swiper-button-next.career-nav-btn,
.sb2.swiper-button-next {
	left: unset;
	right: -3rem;
}

.swiper-button-next.career-nav-btn::after,
.swiper-button-prev.career-nav-btn::after,
.sb2.swiper-button-next::after,
.sb2.swiper-button-prev::after {
	content: '\f060';
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	font-size: 0.7rem;
}

.swiper-button-next.career-nav-btn::after,
.swiper-button-next.sb2::after {
	content: '\f061';
}

.career-modal .career-modal-body {
	width: 60rem;
	height: 100%;
	max-height: 80dvh;
	display: flex;
	flex-direction: column;
}

.career-modal-header {
	margin-bottom: 1rem;
}

.career-modal-container {
	display: flex;
	gap: 1.5rem;
	height: 100%;
	overflow: auto;
}

.career-modal-info,
.career-modal-form {
	width: 50%;
	overflow: auto;
}

.career-modal-form {
	scrollbar-width: none;
}

.career-modal-info {
	padding-right: 1.5rem;
}

.career-modal-title {
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.contact-form-wide-col {
	grid-column: 1 / -1;
}

.contact-form-label {
	font-weight: 500;
	font-size: 0.9rem;
}

.contact-form-input {
	border: 1px solid #dadada;
	border-radius: 0.3rem;
	padding: 0.4rem 0.8rem;
}

/* #endreion */

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

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

.marquee-section {
	background: #0846AA;
	color: #fff;
	padding: 0.5rem 0;
}

.marquee {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	display: flex;
	align-items: center;
}

.marquee-section .fav {
	aspect-ratio: 1 / 1;
	max-width: 20px;
	width: 100%;
	overflow: hidden;
	margin-right: 0.5rem;
	vertical-align: middle;
}

.marquee-section .fav img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.marquee-section span {
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-right: 2rem;
	/* spacing between items */
	display: inline-block;
}

.stepCard {
	position: relative;
	z-index: 1;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 10px 15px -3px, rgba(8, 70, 170, 0.05) 0px 4px 6px -2px;
	padding: 1.5rem;
	height: 100%;
	background: #fff;
	transition: 0.3s ease-in-out;
}

.stepCard:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.15) 0px 20px 25px -5px, rgba(8, 70, 170, 0.04) 0px 10px 10px -5px;
}

.stepCard .icon {
	aspect-ratio: 1 / 1;
	max-width: 4rem;
	max-height: 4rem;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	overflow: hidden;
	border-radius: 50%;
}

.stepCard .icon i {
	font-size: 1.75rem;
	line-height: 1;
}

.stepCard.a .icon {
	background-color: rgba(8, 70, 170, 0.1);
	color: rgb(8, 70, 170);
}

.stepCard.b .icon {
	background-color: rgba(33, 196, 93, 0.1);
	color: rgb(33, 196, 93);
}

.stepCard.c .icon {
	background-color: rgba(8, 70, 170, 0.1);
	color: rgb(8, 70, 170);
}

.stepCard .number {
	color: rgba(98, 109, 132, 0.2);
	font-size: 3rem;
	line-height: 3.5rem;
	font-weight: 600;
}

.stepCard .title {
	font-size: 1.5rem;
	line-height: 1.875rem;
	font-weight: 600;
}

.stepCard .description {
	font-size: 1rem;
	line-height: 1.5rem;
	margin: 0;
}

.line {
	width: 95%;
	height: 2px;
	background-color: #0846AA;
	position: absolute;
	left: 50%;
	top: 4rem;
	transform: translateX(-50%);
	z-index: 0;
}

#career-swiper {
	height: auto;
	flex-direction: column;
}

#career-swiper .swiper-wrapper {
	height: auto;
}

#career-swiper .swiper-wrapper .swiper-slide {
	height: auto;
}

.career-modal-description .head {
	margin: 0.5rem 0;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
}

.career-modal-description .requirements {
	list-style-type: disc;
}

.markup-content ul {
	list-style-type: disc;
}

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

@media only screen and (max-width: 768px) {
	.career-modal-container {
		flex-direction: column;
		overflow: auto;
	}

	.career-modal-info,
	.career-modal-form {
		width: 100%;
	}

	.home-whyus-card {
		flex-direction: column;
	}

	.home-whyus-content {
		text-align: center;
	}

	#blogs-swiper .blog-slide {
		padding: 0;
	}

	.career-option-actions {
		position: relative;
		margin-top: 2rem;
	}

	#career-swiper .swiper-slide {
		height: auto;
	}

	.home-services-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.trusted-section .big-section-title {
		font-size: 2rem;
		line-height: 2.25rem;
	}

	.big.description {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.description {
		font-size: 1rem;
		line-height: 1.5rem;
	}

	.line {
		padding: 2px;
		width: 2px;
		height: 95%;
		top: 50%;
		transform: translateY(-50%);
	}

	.aboutCard {
		padding: 2rem;
	}

	.aboutCard .md-info {
		flex-direction: column;
		margin-bottom: 1rem;
	}

	.aboutCard .md-info article .name,
	.aboutCard .md-info article .position {
		text-align: center;
	}

	.careerCard .header .brief .infos {
		flex-direction: column;
		align-items: flex-start;
	}

	.careerCard .header .brief .title {
		font-size: 1.125rem;
		line-height: 1.25rem;
		margin-bottom: 0.5rem;
	}

	.careerCard .header .brief .infos {
		gap: 0.25rem;
	}

	.contact-form-row {
		grid-template-columns: repeat(1, 1fr);
	}

	.header-nav-list>li>a {
		color: #000;
	}

	.header-nav-list {
		padding: 0;
		margin-bottom: 1rem;
	}

	.career-modal-info,
	.career-modal-form {
		height: auto;
		flex: auto;
		overflow: unset;
	}

	.marquee-inner {
		padding-right: 50px;
	}

}

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

	.swiper-button-prev.career-nav-btn,
	.sb2.swiper-button-prev {
		left: 0.5rem;
	}

	.swiper-button-next.career-nav-btn,
	.sb2.swiper-button-next {
		right: 0.5rem;
	}
}