/* #test region */
:root {
	--gradient-width: 30rem;
	--theme-secondary-dark: #cbf3b7;
	--theme-secondary-light: #cbf3b7;
	--theme-secondary-bg-light: #e2fffd;
}

/* body {
	background: repeating-linear-gradient(
			45deg,
			var(--theme-primary-bg-light) calc(var(--gradient-width) * 1),
			var(--gradient-split-color) calc(var(--gradient-width) * 2),
			var(--theme-secondary-bg-light) calc(var(--gradient-width) * 3),
			var(--gradient-split-color) calc(var(--gradient-width) * 4),
			var(--theme-primary-bg-light) calc(var(--gradient-width) * 5)
		),
		repeating-linear-gradient(
			135deg,
			var(--theme-primary-bg-light) calc(var(--gradient-width) * 1),
			var(--gradient-split-color) calc(var(--gradient-width) * 2),
			var(--theme-secondary-bg-light) calc(var(--gradient-width) * 3),
			var(--gradient-split-color) calc(var(--gradient-width) * 4),
			var(--theme-primary-bg-light) calc(var(--gradient-width) * 5)
		);
} */
/* #end region */
/* #region setup */
:root {
	--theme-primary-rgb: 83, 169, 44;
	--gradient-split-color: transparent;
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #006cb5;
	--theme-color-2: #cbf3b7;
	--theme-primary-dark: #004b7c;
	--theme-primary-light: #7ad3ff;
	--theme-primary-light-alt: #dcf0fa;
	--theme-primary-bg-light: #dff2ff;
	--theme-primary-bg-lighter: #f6fbff;
	--theme-primary-fade: rgba(0, 109, 181, 0.3);
	--theme-primary-alt: #fff;
	--theme-secondary: #adab1b;
	--theme-secondary-alt: #fff;
	--special-container-width: 1270px;
	--container-width: 1600px;
	/* 1400px original */
	--container-md-width: 1100px;
	--container-sm-width: 1020px;
	--container-lg-width: 1440px;
	--column-gutter: 15px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	/* --primary-filter: brightness(0) saturate(100%) invert(20%) sepia(99%) saturate(2341%) hue-rotate(184deg) brightness(95%) contrast(101%);
	--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: 100px;
	--logo-width: 100px;
	--section-gap: 3rem;
	--swiper-theme-color: var(--theme-primary);
	--nav-hover-color: var(--theme-primary);
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

ol,
ul,
p {
	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: 500; */
	/* padding-top: var(--header-height); */
	/* background-color: var(--theme-primary-bg-lighter); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-alt);
	line-height: 1.3;
}

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: 60px;
		--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%;
}

.special-container {
	width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--column-gutter);
	max-width: 100%;
}

.container-md {
	width: var(--container-md-width);
}

.container-sm {
	width: var(--container-sm-width);
}

.container-lg {
	width: var(--container-lg-width);
}

.light-bg {
	position: relative;
	background-color: var(--theme-primary-bg-light);
}

.section-gap {
	padding-block: var(--section-gap);
}

.section-subtitle {
	font-weight: 500;
	/* letter-spacing: 2px; */
	font-size: 1.3rem;
	font-family: var(--font-family);
	/* opacity: 0.3; */
	line-height: 1.3;
	/* text-transform: uppercase; */
	color: var(--theme-primary);
	/* margin-top: 1.5rem; */
}

.section-title {
	font-weight: 300;
	font-size: 2.2rem;
	line-height: 1.3;
}

.section-desc {
	font-size: 1.1rem;
	line-height: 1.6;
	font-weight: 400;
	/* opacity: 0.6; */
}

.center-header .section-desc {
	margin-inline: auto;
	text-align: start;
}

.section-title+.section-desc {
	margin-top: 1rem;
}

.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-block: 1rem;
	background-color: var(--theme-primary-bg-light);
	color: #000;
	text-align: center;
	position: relative;
}

.header-banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.section-header-crumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
}

.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;
}

.cta-btn {
	display: inline-block;
	padding: 1rem 5rem;
	font-size: 1.25rem;
	line-height: 1.4;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	padding-right: 8rem;
	overflow: hidden;
}

.cta-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary-bg-lighter); */
}

.cta-btn::before,
.cta-btn::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	width: 4rem;
}

.cta-btn::after {
	content: "\f061";
	font: var(--icon-font);
	font-size: 1.75rem;
	display: grid;
	place-content: center;
}

.cta-btn::before {
	content: "";
	background-color: #fff;
	opacity: 0.5;
}

.cta-btn:hover::after {
	animation: cta-spin 1s ease-in-out alternate;
	/* animation-iteration-count: 2; */
}

@keyframes cta-spin {
	0% {
		transform: rotateX(0deg);
	}

	100% {
		transform: rotateX(720deg);
	}
}

.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-alt);
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.glightbox-container.glightbox-default .gslide-desc {
	font-family: var(--font-family);
	font-size: 1rem;
}

.popup-container,
.popup-slide-in .popup-container {
	padding: 2rem;
}

.popup-container .popup-close {
	top: 2.5rem;
	right: 2.5rem;
}

.popup-title {
	font-size: 1.5rem;
	font-family: var(--font-family);
	font-weight: 400;
}

.hlt {
	color: var(--theme-primary);
}

.hlt-alt {
	color: var(--theme-secondary);
}

.section-header {
	/* text-align: center; */
	position: relative;
	margin-bottom: 1rem;
}

.section-header-row {
	display: flex;
	gap: 1rem 4rem;
}

.section-header-row .section-header-col {
	flex: 1 1 auto;
}

.section-header.left-header {
	text-align: left;
}

.section-title-sm {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	color: #7f7f7f;
	/* color: var(--theme-primary); */
	/* margin-top: 1em; */
	font-size: 0.9rem;
	line-height: 1.3;
	/* opacity: 0.5; */
	margin-bottom: 0.3rem;
}

.section-title {
	font-weight: 300;
	font-size: 2.3rem;
	line-height: 1.2;
	/* padding-bottom: 3.5rem; */
	position: relative;
}

.section-header-desc {
	font-weight: 400;
	/* opacity: 0.6; */
}

.section-header-row .section-title {
	max-width: 470px;
}

.section-header-row .section-header-desc {
	max-width: 600px;
	text-align: justify;
}

.section-header.center-header {
	text-align: center;
}

[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: 70%;
}

.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-block: calc(var(--column-gutter) * -1);
}

.section-bg-img {
	position: relative;
}

.section-bg-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--bg-img);
	background-size: cover;
	background-position: center;
	opacity: 0.3;
}

@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: 0.85rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.banner-swiper-nav {
		--swiper-navigation-size: 20px;
		padding: 30px 10px;
	}

	.header-banner {
		padding-block: 1px;
	}

	.header-banner .section-header {}

	.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;
	}

	.section-header-row {
		flex-direction: column;
	}
}

@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: #fff;
	color: var(--text-color);
	font-size: 0.88rem;
	position: relative;
	z-index: 11;
	padding-top: 1rem;
}

.super-top-header {
	background-color: #004b7c;
	padding: 1rem 0;
}

.super-top-header .header-social-links {
	width: 100%;
	justify-content: center;
	color: #fff;
	padding: 0;
	font-size: 1rem;
}

.top-header-row {
	display: flex;
	justify-content: center;
	/* align-items: center; */
	gap: 1.5rem;
}

.header-contact-links {
	display: flex;
	padding-block: 0.6rem;
	gap: 1rem;
}

.header-social-links {
	height: auto;
	display: flex;
	align-items: center;
	/* background-color: var(--theme-primary-alt); */
	color: var(--theme-primary);
	font-size: 1.2rem;
	gap: 0.7rem;
	padding: 0.5rem 1rem 0rem;
	width: 11rem;
	justify-content: flex-end;
	line-height: 1;
}

.header-language-select {
	padding: 0.5rem 1rem 0rem;
	color: #000;
}

.header-language-select option {
	color: #000;
}

.main-header {
	position: sticky;
	/* position: relative; */
	top: 0;
	z-index: 150;
	width: 100%;
	background-color: #fff;
	/* box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15); */
	/* border-bottom: 1px solid #dadada; */
	/* border-top: 1px solid #dadada; */
}

.main-header-row {
	display: flex;
	height: var(--header-height);
	align-items: center;
}

.header-logo {
	height: 6rem;
	padding-block: 0.1rem;
	transform: translateY(-25%);
	transition: 0.2s;
}

.header-right-logo {
	height: 5rem;
}

.header-logo img {
	width: auto;
	height: 100%;
}

.header-nav {
	margin: 0 auto;
	height: 100%;
}

.header-nav-links {
	display: flex;
	gap: 2rem;
	height: 100%;
	font-size: 0.9rem;
	margin-bottom: 0;
}

.header-nav-links>li {
	display: grid;
	place-content: center;
	color: #000;
}

.header-nav-links li:hover>a,
.header-nav-links .nav-active>a {
	color: #0069AE;
}

.header-nav-links .nav-active>a {
	font-weight: 700;
}

.header-dropdown {
	position: relative;
}

.header-dropdown>a::after {
	content: "\f107";
	font: var(--icon-font);
	font-size: 0.9rem;
	margin-left: 0.5rem;
}

.header-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 15rem;
	max-width: max-content;
	background-color: #fff;
	color: #000;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
	padding-block: 0.5rem;
	opacity: 0;
	pointer-events: none;
	transition: ease 0.25s;
	transition-property: opacity;
	z-index: 9;
}

.header-dropdown:hover>.header-dropdown-menu {
	opacity: 1;
	pointer-events: all;
}

.header-dropdown-menu a {
	display: block;
	padding: 0.3rem 1.5rem;
	white-space: nowrap;
}

.header-nav-cta {
	position: relative;
	align-self: center;
	margin-left: 1rem;
}

.header-nav-cta-btn {
	position: relative;
}

.header-nav-search {
	display: inline-block;
	width: 11rem;
	padding: 0.5rem 1rem;
	padding-left: 2.5rem;
	background-color: var(--theme-primary-alt);
	color: #888;
	border: 2px solid #888;
	/* text-align: center; */
	font-weight: 500;
	border-radius: 1.5rem;
	align-items: center;
	gap: 0.3rem;
	transition: ease 0.25s;
}

.header-nav-cta-btn i {
	font-size: 1.3rem;
	/* vertical-align: middle; */
	/* margin-right: 0.2rem; */
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
}

.header-nav-search:hover,
.header-nav-search:focus {
	/* background-color: var(--theme-primary); */
	border-color: var(--theme-primary);
	/* color: var(--theme-primary-alt); */
}

.header-nav-search:focus {
	width: 16rem;
}

.search-results {
	position: absolute;
	margin-top: 0.5rem;
	top: 100%;
	right: 0;
	z-index: 10;
	width: 24rem;
	background-color: #fff;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
	padding: 0.5rem;
	display: flex;
	gap: 0.5rem;
	flex-direction: column;
	max-height: calc(80vh - (var(--header-height) + 3rem));
	overflow-y: auto;
}

.search-result-item {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	width: 100%;
}

.search-result-item-img {
	flex: 0 0 5rem;
	overflow: hidden;
}

.search-result-item-img img {
	border: 1px solid #dadada;
}

.search-result-type-product .search-result-item-img img {
	object-fit: contain;
	padding: 0.3rem;
}

.search-result-item-info {
	line-height: 1.2;
	flex: 0 1 100%;
	/* width: 100%; */
	min-width: 0;
}

.search-result-item-name {
	font-size: 1.1rem;
	font-weight: 500;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-result-item-description {
	font-size: 0.9rem;
	/* clamp 3 lines */
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	box-orient: vertical;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.search-result-item-description * {
	font: inherit;
}

@media (min-width: 1024px) {

	.header-resp-action,
	.header-resp-nav {
		display: none;
	}
}

@media (max-width: 1024px) {
	.top-header {
		display: none;
	}

	.main-header-row {
		height: var(--header-height);
		align-items: center;
	}

	.header-logo {
		height: 100%;
	}

	.header-resp-action {
		margin-left: auto;
	}

	.resp-menu-btn {
		padding: 0.5rem 0;
		line-height: 1;
		font-size: 1.7rem;
	}

	.header-menu-close-icon {
		display: none;
	}

	.header-nav {
		position: fixed;
		top: calc(var(--header-height) + 39px);
		left: 0;
		width: 100%;
		height: calc(100dvh - (var(--header-height) + 39px));
		background-color: #fff;
		color: #000;
		padding: 2rem;
		transform: translateX(100%);
		transition: ease 0.3s;
		transition-property: transform;
		display: flex;
		flex-direction: column;
		overflow: auto;
	}

	.scroll-down .header-nav {
		height: calc(100dvh - var(--header-height));
		top: var(--header-height);
	}

	.menu-active .header-nav {
		transform: translateX(0);
	}
}

/* #endregion header */

/* #region banners */

/* .home-banners {
	background: url("../images/banner/banner.mp4") no-repeat;	
	background-size: cover;
	background-position: right bottom;
} */
.home-banners {
	position: relative;
	width: 100%;
	/* height: 100vh; */
	overflow: hidden;
	padding: 50px 0;
}

.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}

.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.1);
	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;
}

.banner-swiper {
	height: 100%;
}

.banner-swiper .banner-slide {
	border-radius: 50px;
	height: auto;
	overflow: hidden;
}

.banner-slide::before {
	padding-top: 30%;
}

/* .banner-slide-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
} */

.banner-slide-container {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.banner-slide-content {
	position: absolute;
	top: 50%;
	left: 10%;
	width: 500px;
	max-width: calc(100% - (var(--column-gutter) * 2));
	transform: translateY(-50%);
	background-color: rgb(253 254 35 / 78%);
	padding: 2rem;
}

.banner-slide-title {
	font-size: 2rem;
	margin-bottom: 0.2em;
	font-weight: 300;
}

.banner-slide-text {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.banner-slide-actions {
	margin-top: 2rem;
	display: flex;
	justify-content: flex-start;
	gap: 0.5rem;
}

.banner-slide-link {
	font-size: 0.85rem;
	padding: 0.5rem 1.5rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	font-weight: 500;
}

.banner-slide-link-alt {
	background-color: #fff;
	color: #000;
	text-decoration: underline;
	text-underline-offset: 0.5rem;
	text-decoration-color: #555;
}

@media (max-width: 768px) {
	.banner-slide-content {
		padding: 1rem;
		background-color: rgb(255 255 255 / 70%);
	}

	.banner-slide-title {
		font-size: 1.4rem;
		margin-bottom: 0.2rem;
	}

	.banner-slide-text {
		margin-bottom: 0.5rem;
	}

	.banner-slide-actions {
		margin-top: 0.5rem;
	}
}

/* #endregion banners */

/* #region counter */

.home-counter {
	--section-gap: 2rem;
}

.home-counter-row {
	display: flex;
	justify-content: center;
	text-align: center;
	gap: 2rem 3rem;
	flex-wrap: wrap;
}

.home-counter-item {
	flex: 1 1 auto;
	width: 15rem;
}

.home-counter-icon {
	color: var(--theme-secondary);
	font-size: 3.5rem;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.home-counter-value {
	font-size: 2.5rem;
	font-weight: 500;
	color: var(--theme-primary);
}

.home-counter-text {
	font-size: 1.2rem;
	line-height: 1.3;
}

@media (max-width: 768px) {}

/* #endregion counter */

/* #region stats */

.home-stats {
	padding-top: 0;
}

.home-stats-row {
	display: flex;
	justify-content: space-evenly;
	text-align: center;
	gap: 2rem 0;
}

.home-stats-col {
	padding-inline: 1.5rem;
	flex: 1 1 100%;
	position: relative;
}

.home-stats-icon {
	line-height: 1;
	font-size: 6rem;
	color: var(--theme-primary);
	margin-bottom: 1.5rem;
}

.home-stats-icon::before {
	padding-top: 70%;
}

.home-stats-icon img {
	/* height: 200px; */
	/* width: 100%; */
	object-fit: cover;
	border-radius: 2rem;
}

.home-stats-content {
	position: relative;
}

.home-stats-title {
	font-size: 1.7rem;
	color: var(--theme-secondary);
	line-height: 1;
	margin-bottom: 1rem;
	font-weight: 300;
}

.home-stats-title-desc {
	font-size: 1.8rem;
	vertical-align: super;
}

.home-stats-text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.home-stats-col:not(:last-child)::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		height: 50%;
		width: 2px;
		background-color: #000;
		opacity: 0.1;
		transform: translateY(-50%);
	}
}

@media (max-width: 768px) {
	.home-stats-row {
		flex-direction: column;
	}

	.home-stats-text {
		max-width: 20rem;
		margin-inline: auto;
	}
}

/* #endregion stats */

/* #region products */

.home-products-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.product-tabs-container {
	position: relative;
	text-align: center;
	margin-top: 1rem;
}

.product-tab-heads {
	display: inline-flex;
	margin-inline: auto;
	justify-content: center;
	gap: 0.5rem;
	background-color: var(--theme-primary-alt);
	padding: 0.3rem;
	border-radius: 5rem;
	line-height: 1.3;
	margin-bottom: 2rem;
}

.product-tab-head {
	position: relative;
	border-radius: inherit;
}

.product-tab-link {
	display: block;
	padding: 0.5rem 1.5rem;
	border-radius: inherit;
	background-color: var(--theme-primary-bg-light);
}

.tab-active .product-tab-link {
	background-color: var(--theme-primary-light);
	/* color: var(--theme-primary-alt); */
}

.home-products-swiper {
	margin-inline: -1rem;
	padding: 1rem;
	padding-bottom: 3rem;
	position: relative;
}

.home-products-item {
	position: relative;
	background-color: #fff;
	/* box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1); */
	text-align: center;
	height: auto;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	overflow: hidden;
	transition-property: unset !important;
	transition: all 0.5s ease;
	border: 1px solid #dce3e6;
}

.home-products-item:hover {
	border: 1px solid #26658c;
}

.product-tab-view.swiper-slide-visible .home-products-item {
	pointer-events: all;
}

.home-products-img img {
	object-fit: cover;
	padding: 1rem;
	background-color: #fff;
	max-height: 350px;
}

.home-products-content {
	padding: 1rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home-products-title {
	font-size: 1.15rem;
	margin-bottom: auto;
	font-weight: 500;
}

.home-products-category {
	color: var(--theme-primary);
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 0;
}

.home-products-link {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	line-height: 1.2rem;
	font-weight: 500;
	border: 1px solid #DFF2FF;
	margin-top: 1rem;
	transition-property: color, border-color;
	background-color: #DFF2FF;
}

.home-products-link:hover {
	color: var(--theme-primary);
	border-color: var(--theme-primary);
}

.home-products-nav {
	--swiper-navigation-sides-offset: 1rem;
	--swiper-navigation-size: 1.5rem;
}

.home-products-nav .products-nav-btn {
	background-color: #fff;
	padding: 0.5rem;
	margin: 0;
	top: 50%;
	transform: translateY(-50%);
	box-sizing: border-box;
	width: 3rem;
	height: 4rem;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
	border-radius: 0.5rem;
}

.home-products-nav .swiper-button-prev {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.home-products-nav .swiper-button-next {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.home-products-pagination {}

@media (max-width: 768px) {}

/* #endregion products */

/* #region mission-vision */

.home-mission {
	/* min-height: 700px; */
	padding-bottom: calc(var(--section-gap) * 3);
}

@media (max-width: 768px) {}

/* #endregion mission-vision */

/* #region timeline */

.home-timeline-row {
	/* min-height: 500px; */
	margin-top: calc(var(--section-gap) * -2);
	margin-bottom: var(--section-gap);
	background-color: var(--theme-primary-bg-lighter);
	/* position: relative; */
	/* background-color: #fff; */
	z-index: 1;
	/* box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1); */
	border: 1px solid #dadada;
	border-radius: 1rem;
	/* overflow-x: auto; */
	/* overflow-y: hidden; */
}

.home-timeline-row::before {
	content: "";
	position: sticky;
	display: block;
	left: -2rem;
	right: -2rem;
	width: calc(100% + 4rem);
	margin-left: -2rem;
	margin-right: -2rem;
	top: 50%;
	/* margin-top: 200px; */
	height: 1px;
	border: 1px solid #dedede;
}

.aos-animate .home-timeline-row {
	padding: 2rem;
}

.home-timeline-container {
	--timeline-item-height: 25.5%;
	--timeline-item-width: 30%;
	--timeline-item-space: 3rem;
	/* display: flex; */
	/* align-items: flex-start; */
	/* height: var(--timeline-item-height); */
	/* overflow-y: hidden; */
	/* overflow-x: visible; */
	--swiper-wrapper-transition-timing-function: linear;
}

.home-timeline-row:active .home-timeline-container {
	transition-duration: 0s !important;
}

.home-timeline-row .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
	left: 0.5rem;
	right: 0.5rem;
}

.home-timeline-row .simplebar-track.simplebar-horizontal {
	height: 0.8rem;
}

.home-timeline-container::after {
	content: "";
	display: block;
	width: 2rem;
	height: 1px;
	margin: auto;
	flex-shrink: 0;
}

.home-timeline-card {
	/* flex: 0 0 auto; */
	position: relative;
	/* padding: 20px; */
	width: 350px;
	height: auto;
	/* background: #fff; */
	/* border: 1px solid #dedede; */
	/* background-color: var(--theme-primary-bg-lighter); */
	/* margin-block: auto; */
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
}

.home-timeline-card:not(:first-child) {
	/* margin-left: -150px; */
}

.home-timeline-card:nth-of-type(even) {
	/* margin-top: var(--timeline-item-height); */
	/* margin-bottom: auto; */
}

.home-timeline-card:nth-of-type(odd) {
	/* margin-bottom: var(--timeline-item-height); */
	/* margin-top: auto; */
}

.home-timeline-card-svg:nth-of-type(odd),
.home-timeline-card-svg:nth-of-type(even) {
	position: absolute;
	width: 13px;
	height: 49px;
	left: 50%;
	bottom: -63px;
	transform: translate(-50%);
}

.home-timeline-card:nth-of-type(even) .home-timeline-card-svg {
	top: -12px;
	margin-top: -49px;
	transform: scaleY(-1) translate(-50%);
}

.home-timeline-card::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.8rem;
	width: 1em;
	height: 1em;
	box-sizing: content-box;
	background-color: var(--theme-primary);
	border: 0.5em solid var(--theme-primary-bg-light);
	outline: 1px solid var(--theme-primary);
	border-radius: 50%;
}

.home-timeline-card-svg path {
	fill: #dedede;
}

.home-timeline-img {
	display: inline-block;
	width: 10rem;
	height: 5rem;
	/* margin-right: 0.5rem; */
	margin-bottom: 4rem;
	margin-top: 4rem;
	padding: 0.5rem;
	object-fit: contain;
	vertical-align: middle;
}

.home-timeline-year {
	display: inline-block;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--theme-primary);
	/* margin-left: auto; */
}

.home-timeline-desc {
	line-height: 1.5;
	clear: both;
	text-align: center;
}

.timelineSwiper {
	position: relative;
}

.timelineSwiper::before {
	content: '';
	position: absolute;
	left: 0;
	top: 355px;
	/* transform: translateY(-50%); */
	width: 100%;
	height: 2px;
	background-color: #ED3237;
}

.timelineSwiper .swiper-wrapper {
	--swiper-wrapper-transition-timing-function: linear;
}

.timelineBox {
	text-align: center;
	position: relative;
}

.timelineBox::before {
	content: '';
	width: 2px;
	height: 355px;
	background-color: #ED3237;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}

.timelineBox figure {
	margin: auto;
	max-width: 200px;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 5rem;
	position: relative;
	z-index: 1;
	background-color: #fff;
}

.timelineBox figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.timelineBox .year {
	max-width: 150px;
	width: 100%;
	aspect-ratio: 1 / 1;
	color: #ED3237;
	background-color: #fff;
	border: 2px solid #ED3237;
	border-radius: 50%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.timelineBox .description {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 500;
	max-width: 320px;
	margin: auto;
}

@media (max-width: 768px) {
	.home-timeline-container {
		/* flex-direction: column; */
		/* gap: 1rem; */
	}

	.home-timeline-row {
		padding-left: 0;
	}

	.home-timeline-container .home-timeline-card {
		/* width: calc(100% - 3rem); */
		/* margin: 0; */
		/* margin-left: 3rem; */
	}

	.home-timeline-container::after {
		/* margin-top: 0; */
		/* left: 2rem; */
		/* top: 0; */
		/* height: 100%; */
		/* width: 0px; */
		/* border-right: 0; */
	}

	.home-timeline-container .home-timeline-card .home-timeline-card-svg {
		left: -2.3rem;
		top: 50%;
		height: 3rem;
		bottom: auto;
		transform: translate(0, -50%) rotate(90deg);
	}
}

/* #endregion timeline */

/* #region blogs */

.home-blogs {}

.blog-preview {
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	min-height: 3lh;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;

}

.blogs-section {
	background-color: var(--logo-color-3);
}

.blog-swiper-container {
	/* overflow: visible; */
	--swiper-navigation-sides-offset: -3rem;
	--swiper-navigation-size: 2rem;
	position: relative;
	margin-top: 1rem;
}

.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 {
	left: 30px;
}

.blog-nav-btn.swiper-button-prev::after {
	content: "\f104";
}

.blog-nav-btn.swiper-button-next {
	right: 30px;
}

.blog-nav-btn.swiper-button-next::after {
	content: "\f105";
}

.blogs-section .section-header {
	margin-bottom: 2rem;
	/* color: var(--theme-primary); */
}

.blog-img {
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 2;
	transition: ease 0.5s;
}

.blog-img::before {
	padding-top: 66.6%;
}

.blog-img img {
	transition: ease 0.7s;
}

.blog-content {
	position: relative;
	z-index: 1;
}

.blog-title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 500;
}

.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);
}

@media (min-width: 768px) {}

@media (max-width: 768px) {
	.blog-swiper-container {
		--swiper-navigation-sides-offset: 0.5rem;
	}

	.blog-slide {
		padding-inline: 2rem;
	}

	.blog-img {
		margin-bottom: 1.7rem;
	}

	.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 {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.home-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
}

.home-contact-detials-col {
	width: 50%;
}

.home-contact-links {
	margin-top: 1rem;
}

.home-contact-links li {
	display: flex;
	gap: 0.5rem;
	line-height: 1.4;
	margin-bottom: 0.7rem;
}

.home-contact-links i {
	font-size: 1.3rem;
}

.home-contact-links a {
	color: var(--theme-primary);
}

.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%); */
	background-color: #fff;
}

.home-contact-map::before {
	padding-top: 56.5%;
}

.home-contact-form-col {
	flex: auto;
}

.contact-form-container {
	padding: 2.5rem;
	margin-top: 5rem;
	background-color: #fff;
	border-radius: 1rem;
	/* box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%); */
	border: 1px solid #dadada;
}

.home-contact-form-field {
	margin-bottom: 1.5rem;
	position: relative;
}

.home-contact-form-input {
	padding-block: 1rem 0.3rem;
	border-bottom: 1px solid #eaeaea;
	font-size: 1rem;
	transition: ease 0.25s;
	transition-property: color, border-color;
}

.home-contact-form-input::placeholder {
	color: transparent;
	opacity: 0;
}

.home-contact-form-label {
	position: absolute;
	top: 0.5rem;
	left: 0;
	font-size: 0.9rem;
	pointer-events: none;
	transition: ease 0.25s;
	transform-origin: left;
	opacity: 0.8;
	font-weight: 500;
}

.home-contact-form-input:focus,
.home-contact-form-input[required]:valid,
.home-contact-form-input:not([required]):not(:placeholder-shown) {
	border-color: var(--theme-primary);
}

.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus):not(select) {
	border-color: red;
}

.home-contact-form-input:not(:placeholder-shown):is(input, textarea)~.home-contact-form-label,
.home-contact-form-input:valid:is(select)~.home-contact-form-label,
.home-contact-form-input:focus:is(input, textarea)~.home-contact-form-label {
	transform: translateY(-1rem) scale(0.8);
	opacity: 1;
}

.home-contact-btn {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border: 2px solid var(--theme-primary);
	padding: 0.5rem 1.5rem;
	border-radius: 5rem;
	font-size: 1rem;
	font-weight: 500;
	transition: ease 0.3s;
}

.home-contact-btn:hover {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
}

@media (max-width: 768px) {
	.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 {
	/* width: var(--container-lg-width); */
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	z-index: 2;
	border-radius: 3rem;
	/* margin-inline: var(--column-gutter); */
	/* max-width: calc(100% - var(--column-gutter) * 2); */
	display: none;
}

.footer-container {
	padding-block: calc(var(--section-gap) / 2);
}

.footer-row {
	display: flex;
	gap: 2rem 4rem;
	flex-wrap: wrap;
}

.footer-col {
	padding-right: 2rem;
	flex: auto;
}

.footer-brand-col {
	width: 100%;
}

.footer-brand {
	margin-bottom: 2rem;
	display: inline-block;
}

.footer-col-icon {
	font-size: 3rem;
	line-height: 1.3;
	color: var(--theme-primary);
}

.footer-col-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.footer-col-title img {
	display: inline-block;
	vertical-align: middle;
	filter: var(--white-filter);
}

.footer-col-item {
	font-size: 0.9rem;
	font-weight: 400;
}

.footer-item-icon {
	vertical-align: top;
}

.footer-item-icon,
.footer-item-text {
	display: inline-block;
}

.footer-item {
	line-height: 1.3;
	margin-bottom: 0.7rem;
}

.footer-address-item {
	margin-bottom: 1.5rem;
}

.footer-address-item .footer-item {
	margin-bottom: 0.5rem;
	display: flex;
}

.footer-address-item .footer-item-icon,
.footer-col-title img {
	width: 25px;
	margin-right: 0.7rem;
	flex-shrink: 0;
}

.footer-item-text a {
	position: relative;
}

.footer-item-text a::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	transform-origin: left;
	transform: scaleX(0);
	transition: ease 0.3s;
	transition-property: transform;
	background-color: currentColor;
}

.footer-item-text a:hover::after {
	transform: scaleX(1);
}

.footer-col .home-contact-links a {
	color: inherit;
	text-decoration: none;
}

.footer-col .home-contact-links {
	margin-top: 0;
}

.copy-footer {
	background-color: #0069AE;
	color: #fff;
}

.copy-footer-row {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem 3rem;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-block: 1rem;
	/* padding-top: 1rem; */
	/* border-top: 1px solid #dadada; */
}

.copy-footer-col {
	flex: 0 0 auto;
}

.footer-social-links {
	display: flex;
	gap: 1rem;
	/* justify-content: flex-end; */
	/* justify-content: center; */
}

.footer-social-links a {
	display: block;
	/* width: 3rem;
	height: 3rem; */
	display: grid;
	font-size: 1.3rem;
	place-content: center;
	/* border-radius: 5rem; */
}

.footer-social-links a:hover {
	color: var(--theme-primary-dark);
}

.footer-col-text {
	font-size: 0.85rem;
}

.footer-col-text img {
	display: inline-block;
	vertical-align: middle;
}

@media (max-width: 768px) {
	.footer-col-title {
		margin-bottom: 0.3rem;
	}

	.header-nav-links-group {
		width: 100%;
	}

	.header-nav-links-items {
		padding-left: 1rem;
		font-size: 1rem;
		font-weight: 500;
		color: var(--dark-color);
	}

	.header-nav-social-links {
		display: flex;
		gap: 1rem;
		font-size: 1.2rem;
		margin-top: 0.5rem;
	}
}

/* #endregion footer */
.banners-nav-btn {
	background-color: rgb(253 254 35 / 100%);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
}

.banners-nav-btn::after {
	font-size: 1rem;
	font-weight: 900;
}

.language option {
	color: var(--text-color);
}

.header-contact-item {
	margin-bottom: 0;
}

/* Core VALUES CSS */
.section-title {
	color: var(--Text-Color, #0d0e10);
	text-align: center;
	font-family: var(--font-family-alt);
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
}

.service-inner-boxarea {
	position: relative;
	height: 100%;
	background: var(--white-100, #fff);
	padding: 32px 16px 0px;
	border-radius: 4px;
	box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease-in-out;
	z-index: 1;
	margin-bottom: 30px;
}

.service-inner-section-area .service-inner-boxarea .icons {
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	background: #f8f4ff;
	display: inline-block;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	margin-bottom: 24px;
}

.service-inner-boxarea .icons img {
	display: inline;
}

.service-inner-boxarea .content a {
	font-family: var(--font-family-alt);
	font-weight: 700;
}

.service-inner-boxarea .content p {
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 26px;
	transition: all 0.4s ease-in-out;
	margin-top: 1rem;
}

/* ends*/
#blogs-swiper .swiper-wrapper {
	padding: 30px 0;
}

.products-nav-btn div {
	background-color: var(--theme-color-2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 60px;
}

.products-nav-btn div::after {
	font-size: 0.7rem;
	font-weight: 900;
	color: var(--text-color);
}

.products-nav-btn .swiper-button-prev {
	left: unset;
	right: 50px;
}

.products-nav-btn .swiper-button-next {
	left: unset;
	right: 0;
}

.home-testimonial-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	max-width: 70%;
	margin: auto;
	height: 100%;
	border: 1px solid #dadada;
	transition: ease 0.3s;
	padding: 4rem 2rem;
}

.home-testimonial-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	z-index: 0;
}

.home-testimonial-img {
	border-radius: 1rem;
	position: relative;
	border: 1px solid #ccc;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.home-testimonial-img {
	flex: 4;
}

.home-testimonial-content {
	flex: 12;
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0;
	margin-bottom: auto;
}

.bb-blue {
	border-bottom: 1px solid #32c3ff;
}

.home-testimonial-desc {
	font-size: 1.125rem;
	line-height: 1.5;
	color: #333;
	font-family: var(--font-family-alt);
	font-weight: 400;
	font-style: normal;
	margin-bottom: 10px;
}

.home-testimonial-author {
	/* margin-top: 2rem; */
	padding-top: 1rem;
	/* border-left: 0.3rem solid currentColor; */
	position: relative;
	text-align: center;
}

.home-testimonial-name {
	font-size: 1.125rem;
	margin-bottom: 3px;
	font-weight: 700;
}

.home-testimonial-position {
	line-height: 1.2;
	font-weight: 500;
	color: #e4573d;
	font-size: 14px;
	margin: 0;
	margin-bottom: 10px;
	/* text-transform: uppercase; */
	/* font-weight: 900; */
	/* opacity: 0.5; */
	/* font-size: 0.9rem;*/
}

.pagination-box {
	position: absolute;
	/* border: 2px dotted var(--theme-secondary); */
	margin-left: auto;
	padding: 22px;
	bottom: 15px;
	right: 50%;
	z-index: 1;
	border-radius: 25px;
	display: inline-block;
	min-width: 150px;
	transform: translateX(50%);
}

.testimonials-pagination {
	display: inline-block;
	margin: 0 auto;
	width: auto;
}

.home-testimonial-img img {
	margin: auto;
	height: auto;
	padding: 1rem;
}

.home-testimonial-slide {
	height: auto;
}

.home-testimonial-video {
	text-align: center;
}

.blog-img::after {
	background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -120%, 0px);
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -120%, 0px);
	width: 100%;
	z-index: 2;
	transition: 1s;
}

.blog-slide:hover .blog-img::after {
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 120%, 0px);
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 120%, 0px);
}

.blog-content {
	position: relative;
	z-index: 1;
	padding: 2rem 0rem 1rem;
	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-details {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--theme-primary-rgb), 0.8);
	opacity: 0;
	top: 0;
	left: 0;
	transition: ease 0.5s;
}

.blog-slide:hover .blog-details {
	opacity: 0.8;
}

.blog-date {
	line-height: 1;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 15px;
	color: #666;
	font-weight: 400;
}

.blog-date i {
	font-size: 20px;
}

.blog-title {
	font-size: 20px;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 500;
	line-height: 22px;
	text-transform: capitalize;
	min-height: 56px;
	display: flex;
}

.blog-title a {
	line-height: 28px;
}

.blog-title:hover a {
	color: var(--theme-primary);
}

.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;
	border-bottom: 2px solid #666;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 15px;
}

.blog-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	transform-origin: left;
	transform: scaleX(0);
	transition: ease 0.25s;
	transition-property: transform;
	background-color: var(--theme-primary);
}

.blog-link:hover::after {
	transform: scaleX(1);
}

.product:hover .product-background {
	background-color: rgba(var(--theme-primary-rgb), 0.3);
}

.blog-details button {
	color: white;
	border: 2px solid white;
	padding: 5px 25px;
	background-color: transparent;
	transition: 0.3s;
	text-transform: uppercase;
}

.blog-details button:hover {
	background-color: white;
	color: var(--theme-primary);
}

.br-gray {
	border-right: 3px solid #dbdbdb;
}

.primary-color {
	color: var(--theme-primary);
}

.blog-nav-btn {
	background-color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
}

.blog-nav-btn::after {
	font-size: 1.3rem;
	font-weight: 900;
}

.contact-us-banner {
	border-radius: 25px;
	background-color: var(--theme-primary-light-alt);
	padding: 30px 0;
}

.home-contact-heading {
	color: var(--theme-primary);
}

.home-contact-button {
	background-color: var(--theme-primary-light);
	border-color: var(--theme-primary-light);
	color: #000;
	transition: 0.3s;
}

.home-contact-button:hover {
	background-color: var(--theme-primary);
	color: #fff;
	scale: 1.03;
}

.home-testimonial-video iframe {
	width: auto;
	height: auto;
	max-width: 100%;
	min-height: 200px;
	max-height: 400px;
	margin: auto;
}

.blog-title .main-title {
	line-height: 1.5;
	min-height: 3lh;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	overflow: hidden;
}

.small-container {
	max-width: 400px;
	margin: auto;
}

.popup-box {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 0;
	/* transform: scale(0); */
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
}

.blog-pagination {
	bottom: -7px !important;
}

#newsletter-popup #popup-overlay:hover {
	cursor: pointer;
}

#newsletter-popup .popup-overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#newsletter-popup .popup-content {
	background-color: #fff;
	position: absolute;
	width: 600px;
	height: auto;
	max-width: 95%;
	max-height: 95%;
	margin: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* border-radius: 5px; */
	z-index: 0;
	overflow: hidden;
}

#newsletter-popup .popup-content {
	background-color: transparent;
}

#newsletter-popup .popup-h3,
#newsletter-popup .popup-h5 {
	max-width: 90%;
	margin: auto;
	font-family: var(--font-family);
	/* margin-top: 10px; */
}

#newsletter-popup .popup-icon {
	text-align: center;
	font-size: 5rem;
	color: #77BF53;
}

#newsletter-popup .popup-header {
	/* margin-top: 15px; */
	width: 100%;
	text-align: center;
	position: relative;
}

#newsletter-popup .popup-header h3 {
	font-size: 1.4rem;
	font-weight: 600;
}

#newsletter-popup .popup-header h5 {
	font-size: 1rem;
}

#newsletter-popup .popup-email:focus {
	outline: none;
	box-shadow: none;
}

#newsletter-popup .popup-content-body {
	padding: 30px 20px 10px;
	background-color: #FFF212;
	height: 100%;
}

#newsletter-popup .popup-content-body>.input-group {
	max-width: 90%;
	margin: auto;
}

#newsletter-popup .popup-close-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	background-color: #000;
	color: #fff;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#newsletter-popup #subscribe-email::placeholder {
	font-family: var(--font-family);
	color: #616161;
}

#newsletter-popup .popup-send-btn {
	color: #fff;
	background-color: #000;
}

#newsletter-popup .popup-close-btn i {
	font-size: 1.5rem;
}

#newsletter-popup .popup-footer small {
	color: #616161;
}

.map-frame {
	overflow: hidden;
}

.map-frame iframe {
	display: block;
	max-width: 100%;
	width: 100%;
	height: 500px;
	border: none;
	box-shadow: none;
}

.popup-image,
.popup-video {
	width: 100%;
	height: 100%;
	margin: 0;
}

.popup-image img,
.popup-video iframe {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.popup-video iframe {
	min-height: 400px;
}

.featuredLogo figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	margin: 0;
}

.featuredLogo figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
}

.featuredLogo article {
	padding: 0.5rem;
	text-align: center;
}

.featuredLogo article .title {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 500;
}

#featured_logo_swiper .swiper-wrapper {
	transition-timing-function: linear;
}

.news-section {
	background-color: #004b7c;
	padding: 0.5rem 0;
	color: #fff;
	height: 40px;
}

.newsMarquee a {
	margin-right: 1rem;
}

@media only screen and (max-width: 1024px) {
	.header-nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		height: auto;
		margin-bottom: 1rem;
	}

	.banner-nav-btn {
		display: none;
	}

	.home-testimonial-card {
		flex-direction: column;
	}

	.home-testimonial-img {
		flex: 2;
		margin: 0 5rem;
	}

	.home-testimonial-content {
		flex: 1;
		padding: 0 1rem;
	}

	.video-content {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.home-testimonial-video iframe {
		width: 100%;
		min-height: 300px;
		max-height: 500px;
	}

	.blog-content {
		padding: 0;
	}

	.blog-slide {
		padding-inline: 0;
	}

	.banner-slide-content {
		width: 300px;
	}

	.banner-slide-title {
		margin-bottom: 0.6rem;
	}

	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}

	.section-title {
		font-size: 2rem;
		line-height: 38px;
		margin-bottom: 1rem;
	}

	.header-resp-action {
		display: flex;
	}
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
	.header-nav-links>li {
		width: 100%;
		place-content: start;
	}

	.home-testimonial-card {
		max-width: 100%;
	}

	.scale-img>img,
	.scale-img>iframe,
	.scale-img>svg {
		position: static;
	}

	.banner-slide::before {
		padding-top: 0;
	}

	.banner-slide-container {
		position: static;
		text-align: center;
	}

	.banner-swiper {
		overflow-y: visible;
	}

	.banner-slide-content {
		position: static;
		transform: translateY(0);
		width: 100%;
		max-width: 100%;
		background-color: transparent;
	}

	.banner-slide {
		height: 100%;
	}

	.banner-slide-container>.container {
		padding: 0;
		width: 100%;
	}

	.section-gap {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.banner-slide-link {
		margin: auto;
	}

	.section-title {
		font-size: 1.3rem;
		line-height: 30px;
	}

	.service-inner-boxarea .content a {
		font-size: 16px;
	}

	.service-inner-section-area .service-inner-boxarea .icons {
		margin-bottom: 10px;
	}

	.home-products-nav-header {
		justify-content: center !important;
	}

	.scale-img::before {
		padding-top: 0;
	}

	.home-products-content {
		align-items: center;
	}

	.home-products-title {
		margin-bottom: 10px;
	}

	.home-products-item {
		height: 100%;
	}

	.home-testimonials {
		padding-top: 0;
	}

	.home-testimonial-img {
		flex: 1;
		margin: 0rem;
	}

	.home-testimonial-video iframe {
		min-height: 200px;
		max-height: 300px;
	}

	.blog-img img {
		height: 250px;
		object-fit: cover;
	}

	.blog-content {
		padding-bottom: 20px;
	}

	.contact-us-banner p {
		line-height: 1.5;
	}

	.footer-col-text {
		font-size: 0.7rem;
	}

	.copy-footer-row {
		gap: 1rem;
		justify-content: center;
	}

	.footer-social-links {
		padding-left: 0;
	}

	.header-nav {
		background-color: #fff;
	}

	.header-nav-social-links,
	.header-nav-copy,
	#languageSelect2 {
		color: #000;
	}

	#languageSelect2 option {
		color: #000;
	}

	.floating-whatsapp {
		width: 50px;
		height: 50px;
	}

	.floating-whatsapp .floating-box {
		font-size: 2rem;
	}

	.home-banners {
		padding: 20px 0;
		min-height: 70dvh;
	}

	.banner-slide .banner-slide-img {
		height: 200px;
	}

	.banner-swiper .banner-slide {
		background-color: rgb(253 254 35 / 100%);
	}

	.blog-title {
		min-height: unset;
		display: unset;
		-webkit-box-orient: unset;
		line-clamp: unset;
		-webkit-line-clamp: unset;
	}

	.blog-title .main-title {
		display: block;
		min-height: unset;
		line-clamp: unset;
		-webkit-line-clamp: unset;
		text-overflow: unset;
		overflow: unset;
	}

	.header-right-logo {
		display: none;
	}

	.mobile-right-logo a {
		display: inline-block;
		width: var(--logo-width);
	}

	.super-header-nav-links a {
		display: inline-block;
		line-height: 20px;
		margin-bottom: 5px;
	}

	#languageSelect2 {
		max-width: 35dvw;
		margin-right: 2vw;
	}

	.header-logo {
		transform: translateY(0) !important;
	}
}

@media only screen and (min-width: 576px) and (max-width: 768px) {
	:root {
		--section-gap: 2rem;
	}

	.product-tabs-container {
		margin-top: 0.5rem;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1400px) {
	.blog-nav-btn {
		display: none;
	}
}

#languageSelect,
#languageSelect2,
.header-language-select {
	display: none !important;
}