/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #1166b5;
	--theme-primary-dark: #293072;
	--theme-primary-light: #6cb6fb;
	--theme-primary-bg-light: #e5f4ff;
	--theme-primary-bg-lighter: #f3faff;
	--theme-primary-alt: #fff;
	--theme-secondary: #047168;
	--theme-secondary-dark: #18524d;
	--theme-secondary-light: #00d0bf;
	--theme-secondary-bg-light: #e2fffd;
	--theme-secondary-bg-lighter: #f5fffe;
	--theme-secondary-alt: #fff;
	--theme-tertiary: #cd0a1e;
	--theme-tertiary-dark: #780b14;
	--theme-tertiary-light: #d13141;
	--theme-tertiary-bg-light: #ffc4c9;
	--theme-tertiary-bg-lighter: #ffeeef;
	--theme-tertiary-alt: #fff;
	--container-width: 1320px;
	--container-sm-width: 1200px;
	--container-xs-width: 1020px;
	--container-lg-width: 1440px;
	--column-gutter: 10px;

	/* 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%);
	--top-header-height: 60px;
	--header-height: 90px;
	--logo-width: 300px;
	--logo-offset-width: calc(var(--logo-width) + 3rem);
	--logo-height: var(--header-height);
	--section-gap: 5rem;
	--font-family: "Exo", sans-serif;
	--font-family-alt: "Exo", sans-serif;
	--icon-font: 900 1.2em "Line Awesome Free";
	--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;
}

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

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

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

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

@media (max-width: 760px) {
	:root {
		--header-height: 60px;
		--logo-width: 130px;
		--column-gutter: 25px;
		--section-gap: 3rem;
	}

	html {
		font-size: 14px;
	}
}

/* #endregion setup */

/* #region layout */

body {
	--gradient-width: 30rem;
	--gradient-split-color: transparent;
	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)
		);
}

.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-xs {
	width: var(--container-xs-width);
}

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

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

/* .light-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-primary);
	opacity: 0.05;
	z-index: -1;
} */

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

.service-section-gap {
	/* --section-gap: 2.5rem; */
}

.section-header {
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
}

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

.section-subtitle {
	font-size: 1.125rem;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 0.2rem;
}

.section-title {
	color: inherit;
	line-height: 1.2;
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.section-desc {
	margin-top: 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
}

.section-desc-sm {
	margin-top: 1.5rem;
	font-size: 1.1rem;
	font-weight: 300;
}

.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); */
	/* color: var(--theme-primary-alt); */
	text-align: center;
	background-image: var(--bg-img);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}

.header-banner:not(.no-bg)::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #000;
	opacity: 0.55;
	z-index: 0;
}

.header-banner .section-header {
	margin-bottom: 2rem;
	margin-top: 2rem;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.header-banner .section-title {
	font-weight: 600;
}

.section-header-crumbs {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
	max-width: 100%;
	font-weight: 500;
}

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

.site-page > .header-banner + .page-section {
	/* padding-top: 3rem; */
	/* padding-bottom: 3rem; */
	padding-block: var(--section-gap);
}

.cta-btn {
	display: inline-block;
	padding: 1rem 2.3rem;
	font-size: 1rem;
	border: 2px solid var(--theme-primary);
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	font-weight: 500;
	border-radius: 5rem;
	line-height: 1.5;
	transition: ease 0.25s;
	transition-property: color, background-color, border-color;
	margin-top: 1rem;
}

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

.application-link {
	--content-width: 7rem;
	--icon-size: 2.2rem;
	--padding: 4px;
	--btn-width: calc(var(--content-width) + var(--icon-size) + (var(--padding) * 2));
	--btn-bg: var(--theme-primary);
	--btn-fg: var(--theme-primary-alt);
	--icon-bg: #fff;
	--icon-fg: #000;
	background-color: var(--btn-bg);
	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: var(--icon-bg);
	color: var(--icon-fg);
	line-height: 1;
	border-radius: 50%;
	pointer-events: none;
}

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

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

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

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

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

.application-link .hover-text {
	white-space: nowrap;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.3rem 0.8rem;
	font-size: 0.85rem;
	color: var(--btn-fg);
}

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

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

.section-bg {
	position: relative;
}

.section-bg-img {
	position: absolute;
	inset: 0;
	background-image: var(--bg-img);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	z-index: 0;
}

.section-bg-img ~ * {
	position: relative;
}

span.required {
	color: red;
	font-weight: bold;
}

@media (max-width: 760px) {
	.web-only {
		display: none;
	}

	.section-gap {
		/* padding-top: 3rem; */
		/* padding-bottom: 3rem; */
	}

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

	.section-header {
		margin-bottom: 1rem;
	}

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

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

	.header-banner .section-title {
		margin-bottom: 1rem;
	}

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

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

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

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

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

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

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

@media (min-width: 761px) {
	.resp-only {
		display: none;
	}

	.section-header-row {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}

	.section-header-col .section-desc {
		margin-top: 2.5rem;
	}

	.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,
	.main-header,
	.page-menu,
	.header-banner,
	.page-footer,
	.copy-footer,
	.o_livechat_button {
		display: none !important;
	}

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

	.container {
		padding-inline: 0;
	}

	main.section-gap {
		padding: 0;
	}

	body {
		background: none;
	}
}

/* #endregion layout */

/* #region header */

.main-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	/* background-color: #fff; */
	/* box-shadow: 1px 1px 1px #f0f0f0; */
	z-index: 45;
	/* color: #fff; */
	/* margin-bottom: calc(var(--header-height) * -1); */
	/* background-color: var(--theme-secondary-alt); */
	transition: ease 0.25s;
}

.scroll-down .main-header {
	box-shadow: 0px 0px 8px rgb(0 0 0 / 20%);
	background-color: rgb(255 255 255 / 100%);
	color: #000;
}

.main-header-row {
	display: flex;
	height: var(--header-height);
	/* padding-top: 10px; */
	/* padding-bottom: 10px; */
	align-items: center;
	/* color: var(--theme-secondary-alt); */
	align-items: center;
	/* justify-content: flex-end; */
	position: relative;
}

.header-logo a {
	/* height: calc(var(--header-height) + var(--small-header-height)); */
	width: auto;
	max-width: var(--logo-width);
	/* position: absolute; */
	display: block;
	left: 0;
	bottom: 0;
	transition: ease 0.05s height;
	margin-right: auto;
	height: var(--header-height);
}

.header-logo {
	margin-right: auto;
}

.scroll-down .header-logo {
}

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

.page-header-brand img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 0.5rem 0;
}

.header-nav {
	height: 100%;
	display: flex;
	/* margin-right: auto; */
	display: contents;
}

.header-nav-links {
	display: flex;
	height: 100%;
	gap: 2rem;
	/* color: var(--dark-color); */
	font-weight: 500;
	font-size: 1rem;
	/* margin-right: auto; */
}

.header-nav > ul > li {
	display: grid;
	place-content: center;
}

.header-nav .nav-active,
.header-nav a:hover,
.header-nav-links > li:hover > a {
	color: var(--theme-primary); 
}

.page-header-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.resp-menu-btn {
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.3rem;
}

.menu-active {
	overflow: hidden;
}

.header-dropdown {
	position: relative;
}

.header-dropdown > a::after {
	font: var(--icon-font);
	content: "\f107";
	margin-left: 0.5rem;
	font-size: 1em;
}

.header-dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	width: auto;
	white-space: nowrap;
	/* line-height: 1.5; */
	background-color: #fff;
	color: var(--text-color);
	z-index: 1;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	min-width: 15rem;
	transform: translateY(1rem);
	opacity: 0;
	transition: ease 0.25s;
	transition-property: transform, opacity;
	transform-origin: top left;
	padding: 0.5rem;
	border-radius: 0.5rem;
	border-top: 2px solid #000;
	pointer-events: none;
}

.header-dropdown:hover {
	z-index: 2;
}

.header-dropdown:hover .header-dropdown-list {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.header-dropdown-link {
	display: block;
	padding: 0.3rem 0.5rem;
}

.dropdown-active .header-dropdown-link {
	color: var(--theme-primary);
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu > .header-dropdown-link {
	position: relative;
	padding-right: 1.5rem;
}

.dropdown-submenu > .header-dropdown-link::after {
	content: "\f105";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	font: var(--icon-font);
	font-size: 1em;
}

.header-dropdown-submenu {
	position: absolute;
	top: 0;
	left: 100%;
	width: auto;
	background-color: #fff;
	color: var(--text-color);
	z-index: 1;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	min-width: 15rem;
	transform: translateY(-0.5rem);
	opacity: 0;
	transition: ease 0.25s;
	transition-property: transform, opacity;
	transform-origin: top left;
	padding: 0.5rem;
	border-radius: 0.5rem;
	border-top: 2px solid #000;
	pointer-events: none;
}

.dropdown-submenu:hover .header-dropdown-submenu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.header-nav-social-links {
	display: flex;
	gap: 1rem;
	font-size: 1.3rem;
	/* margin-left: auto; */
	/* width: var(--logo-width); */
	/* justify-content: flex-end; */
}

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

.header-nav-social-links a:hover {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

@media (min-width: 760px) {
	.header-resp-action,
	.header-resp-nav {
		display: none;
	}
}

@media (max-width: 760px) {
	.top-header {
		display: none;
	}

	.header-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		top: calc(var(--header-height) + 0px);
		height: calc(100vh - var(--header-height));
		border-top: 1px solid #eaeaea;
		width: 100%;
		background-color: #fff;
		padding: 2rem;
		z-index: 200;
		transform: translateX(100%);
		transition: ease 0.35s transform;
		font-weight: 500;
		overflow: auto;
		display: flex;
	}

	.header-logo {
		height: var(--header-height);
	}

	.header-nav-links {
		flex-direction: column;
		margin-bottom: 1rem;
		color: var(--dark-color);
		width: 100%;
		align-items: flex-start;
		gap: 1rem;
		height: auto;
	}

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

	.menu-active .header-nav {
		transform: translateX(0);
		flex-direction: column;
	}

	.header-resp-action .header-menu-open-icon {
		display: block;
	}

	.header-resp-action .header-menu-close-icon {
		display: none;
	}

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

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

	.header-nav-section {
		margin-top: 1.5rem;
		margin-bottom: 4rem;
	}

	.header-nav-info-section {
		opacity: 0.7;
	}

	.header-nav-title {
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}

	.header-nav-item {
		margin-bottom: 1rem;
		display: flex;
		gap: 0.5rem;
		/* align-items: baseline; */
	}

	.header-nav-item-icon {
		font-size: 1.4rem;
		color: var(--theme-primary);
		line-height: 1;
		/* padding: 3px; */
	}

	.header-nav-item-text {
		line-height: 1.4;
	}

	.header-dropdown-list,
	.header-dropdown-submenu {
		min-width: 12rem;
	}

	.header-dropdown > a {
		pointer-events: none;
	}
}

/* #endregion header */

/* #region banners */

.home-banners {
	/* padding-top: 0; */
}

.banner-swiper {
	--swiper-navigation-size: 2.5rem;
	border-radius: 1rem;
}

.banner-nav-btn {
	transition: ease 0.3s;
	transition-property: color;
}

.banner-nav-btn:hover {
	--swiper-theme-color: var(--theme-primary-light);
}

.home-banners::before {
	padding-top: 500px;
}

.banner-content {
	position: absolute;
	inset: 0;
	padding-top: 1rem;
	padding-bottom: 1rem;
	/* background: var(--theme-primary); */
	/* background-image: linear-gradient(to right, #298ded 0%, var(--theme-primary-fade-2) 80%); */
	display: grid;
	grid-template-columns: 1fr;
	color: var(--theme-primary);
	align-items: center;
	max-width: 100vw;
	width: 100%;
	/* background-color: rgba(0, 0, 0, 0.4); */
}

.banner-container {
	max-width: 650px;
	width: calc(100vw - var(--column-gutter) * 2);
}

.banner-content .container {
	position: relative;
	z-index: 2;
}

.banner-title {
	font-size: 2.6rem;
	margin-bottom: 0.7em;
	font-weight: 400;
	line-height: 1.1;
}

.banner-title-lg {
	font-weight: 700;
	font-size: 1.2em;
	display: block;
}

.banner-subtitle {
	font-size: 1.3rem;
	font-weight: 300;
	color: #000;
	margin-top: 0.5rem;
	line-height: 1.7;
}

.banner-desc {
	font-size: 1.1rem;
	margin-bottom: 2em;
}

.banner-link {
	/* --btn-bg: var(--theme-primary-dark); */
	--content-width: 8rem;
	margin-top: 1rem;
}

.banner-icon {
	position: absolute;
	right: var(--column-gutter);
	top: 50%;
	width: 30rem;
	transform: translateY(-50%);
	animation: slide 4s ease infinite alternate;
}

.banner-icon img {
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.15));
	width: 100%;
}

.banner-icon-rounded img {
	border-radius: 1rem;
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.1));
	margin: auto;
}

@keyframes slide {
	0% {
		transform: translateY(-48%);
	}
	100% {
		transform: translateY(-52%);
	}
}

.home-banners .banner-align-img {
	height: 100%;
	position: absolute;
	width: auto;
	left: auto;
	right: 1rem;
}

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

	.home-banners::before {
		padding-top: 0;
	}

	.banner-content {
		align-items: end;
		position: relative;
	}

	.banner-content .container {
		width: 100%;
		padding: 0;
	}

	.banner-container {
		/* width: 60%; */
	}

	.banner-title {
		font-size: 1.6rem;
		/* text-align: center; */
		line-height: 1.2;
	}

	.banner-subtitle {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.banner-icon {
		width: 25rem;
		right: 0;
		z-index: 0;
		animation-duration: 3s;
		position: relative;
		margin-top: 1rem;
		margin-inline: auto;
		max-width: 100%;
		top: 100%;
		padding-bottom: 1rem;
	}

	@keyframes slide {
		0% {
			transform: translateY(-2%);
		}
		100% {
			transform: translateY(+2%);
		}
	}
}

/* #endregion banners */

/* #region trust */

.home-trust {
	padding-block: 0;
}

.home-trust .section-header {
	margin-bottom: 0;
}

.home-trust .section-desc {
	margin-top: var(--section-gap);
	font-size: 2rem;
	font-weight: 400;
}

.trust-swiper {
	margin-top: 1rem;
}

.trust-item {
	height: auto;
}

.trust-item img {
	height: 100%;
	max-width: 140px;
	max-height: 60px;
	object-fit: contain;
	margin: auto;
}

@media (max-width: 768px) {
	.trust-swiper {
		margin-top: 1rem;
	}

	.trust-item img {
		max-width: 100px;
	}

	.home-trust .section-desc {
		font-size: 1.6rem;
		/* text-align: left; */
	}
}

/* #endregion trust */

/* #region about */

.home-about {
	--main-bg: var(--theme-primary-bg-light);
	/* background-color: var(--main-bg); */
	background-image: var(--bg-img);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right center;
}

.home-about-row {
	display: flex;
	gap: 2rem;
	/* color: var(--theme-primary-dark); */
	align-items: center;
}

.home-about-img-col,
.home-about-text-col,
.home-about-stats-col {
	width: 50%;
}

.home-about-img-col {
	position: relative;
	padding-right: 6rem;
	margin-bottom: 6rem;
}

.home-about-img-col .home-about-img {
	width: 35rem;
	max-width: 100%;
	border-radius: 50%;
	box-shadow: 0 0 1rem rgb(0 0 0 / 30%);
}

.home-about-img-info {
	position: absolute;
	bottom: -4rem;
	right: 4rem;
	width: 15rem;
	height: 15rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	display: grid;
	place-content: center;
	border: 0.5rem solid #fff;
	border-radius: 50rem;
	text-align: center;
	line-height: 1.2;
	padding: 3rem;
	animation: shift 1.5s ease infinite alternate-reverse;
}

@keyframes shift {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(0.5rem);
	}
}

.home-about-img-lg {
	font-size: 3rem;
	font-weight: 600;
}

.home-about-img-sm {
	font-size: 1.1rem;
}

.home-about-action {
	margin-top: 3.5rem;
}

.home-about-btn {
	font-size: 1.3rem;
	font-weight: 500;
	display: inline-block;
	border-radius: 5rem;
	border: 1px solid #fff;
	color: var(--theme-primary);
}

.home-about-btn::before {
	content: "\f30b";
	font: var(--icon-font);
	font-size: 1.3em;
	display: inline-block;
	vertical-align: middle;
	padding: 0.3rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	margin-right: 1rem;
	border-radius: 5rem;
}

.home-about-stats-col {
	display: flex;
	flex-wrap: wrap;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1.5rem;
	width: 100%;
	justify-content: space-between;
	margin-block: 2rem;
	/* background-color: rgba(224, 225, 235, 0.57); */
}

.home-about-stats-item {
	display: grid;
	place-content: center;
	text-align: center;
	/* background-color: var(--main-bg); */
	line-height: 1.2;
	padding-inline: 1rem;
}

.home-about-stats-value {
	font-size: 2.2rem;
	font-weight: 200;
}

.home-about-stats-title {
	font-size: 0.9rem;
	opacity: 0.7;
	font-weight: 500;
}

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

	.home-about-row {
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
		position: relative;
		padding-top: 5rem;
	}

	.home-about-text-col {
		width: 100%;
	}

	.home-about-header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	.home-about-img-col {
		padding-right: 3rem;
		width: calc(100% - 1rem);
		margin-inline: auto;
		margin-bottom: 4rem;
	}

	.home-about-img {
	}

	.home-about-img-info {
		right: 1rem;
		/* padding: 3rem; */
		width: 12rem;
		height: 12rem;
	}

	.home-about-img-lg {
	}

	.home-about-img-sm {
	}

	.home-about-action {
	}

	.home-about-btn {
	}

	.home-about-btn::before {
	}

	.home-about-stats-col {
		display: grid;
	}

	.home-about-stats-item {
		flex: 1 1 120px;
	}

	.home-about-stats-value {
	}

	.home-about-stats-title {
	}
}

/* #endregion about */

/* #region clients */

.clients-row {
	display: flex;
	gap: 5rem;
	align-items: center;
}

.clients-info-col,
.clients-img-col {
	width: 50%;
}

.home-clients-header {
	padding-right: 4rem;
}

.home-clients-header .section-title {
	max-width: 30rem;
}

.clients-swiper {
	margin-top: 1rem;
}

.client-slide::before {
	padding-top: 65%;
}

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

.clients-img {
	border-radius: 2rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
	width: 100%;
}

@media (max-width: 768px) {
	.clients-row {
		flex-direction: column-reverse;
		gap: 0;
		position: relative;
		padding-top: 3.5rem;
	}

	.clients-info-col,
	.clients-img-col {
		width: 100%;
	}

	.clients-img-col {
		padding-inline: 3rem;
	}

	.home-clients-header {
		padding-right: 0;
	}

	.home-clients-header .section-title {
	position: absolute;
	top: 0;
	}

	.clients-swiper {
	}

	.client-slide::before {
	}

	.client-slide img {
	}
}

/* #endregion clients */

/* #region services */

.home-services {
	/* color: var(--theme-primary-alt); */
}

.home-services .section-bg-img {
	background-size: 40%;
	background-size: contain;
	background-position: right top;
}

.home-services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.home-services-grid .section-header .cta-btn {
	margin-top: 1.5rem;
}

.home-services-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.home-services-col {
	padding: 3.5rem;
	position: relative;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	border-radius: 0.5rem;
	background: linear-gradient(45deg, var(--theme-primary-bg-light) 0%, var(--theme-secondary-bg-light) 35%, var(--theme-primary-bg-light) 100%);
	transition: ease 0.3s;
	flex: 1 1 100%;
	position: relative;
}

.home-services-col::after {
	content: "\f152";
	font: var(--icon-font);
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	font-size: 2.4rem;
	opacity: 0.5;
	color: var(--theme-secondary);
	transition: ease 0.25s;
	content: none;
}

.home-services-col:hover {
	background: #fff;
	box-shadow: 0px 60px 60px rgb(0 0 0 / 10%);
	z-index: 10;
	transform: translateY(-1rem);
	color: var(--theme-primary);
}

.home-service-icon {
	color: var(--theme-primary);
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 0.1rem;
}

.home-services-col:hover .home-service-icon {
	color: var(--theme-secondary);
}

.home-services-col:hover::after {
	color: var(--text-color);
	opacity: 1;
}

.home-service-title {
	font-size: 1.4rem;
	font-weight: 400;
	/* margin-bottom: 1.5rem; */
}

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

	.home-services .section-bg-img {
	}

	.home-services-grid {
		display: flex;
		gap: 1rem;
		flex-direction: column;
	}

	.home-services-row {
		/* grid-template-columns: 1fr; */
		grid-template-rows: 1fr 1fr;
		gap: 1rem;
	}

	.home-services-col {
		padding: 1.5rem 1.5rem;
		/* padding-bottom: 2rem; */
	}

	.home-services-col:hover {
	}

	.home-service-icon {
		font-size: 2.5rem;
	}

	.home-service-title {
	}
}

/* #endregion services */

/* #region testimonials */

.testimonial-swiper {
	margin-inline: -0.5rem;
	padding: 0.5rem;
}

.testimonial-slide {
	padding: 3rem;
	box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	background-color: #fff;
	text-align: center;
	height: auto;
	display: flex;
	flex-direction: column;
}

.testimonial-icon {
	display: inline-block;
	color: var(--theme-primary);
	/* background-color: var(--theme-primary); */
	/* padding: 0.5rem; */
	border-radius: 5rem;
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 1rem;
}

.testimonial-icon::before {
	content: "\f10d";
	font: var(--icon-font);
	display: block;
}

.testimonial-quote {
	font-style: italic;
	font-weight: 500;
	opacity: 0.6;
	margin-bottom: auto;
}

.testimonial-info {
	margin-top: 1rem;
}

.testimonial-name {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.5;
}

.testimonial-title {
	color: var(--theme-primary);
	font-weight: 500;
	font-size: 1.1rem;
}

.testimonial-nav {
	position: static;
	margin-top: 2rem;
	--swiper-pagination-bullet-width: 1rem;
	--swiper-pagination-bullet-border-radius: 0.5rem;
	--swiper-pagination-bullet-height: 0.2rem;
}

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

	.testimonial-slide {
	}

	.testimonial-icon {
	}

	.testimonial-icon::before {
	}

	.testimonial-quote {
	}

	.testimonial-info {
	}

	.testimonial-name {
	}

	.testimonial-title {
	}

	.testimonial-nav {
		margin-top: 1rem;
	}
}

/* #endregion testimonials */

/* #region contact */

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

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

.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) {
	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(-1rem) scale(0.8);
	opacity: 1;
}

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

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

.footer-col {
	flex: 0 0 auto;
}

.footer-copy-col {
	flex: 1 1 100%;
	text-align: center;
}

.footer-col-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

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

.footer-col-text {
	font-size: 0.85rem;
}

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

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

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

/* #endregion footer */

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


/* pricing menu hidden css */
nav.header-nav ul li:nth-child(4) {
    display: none;
}


.header-top {
    background-color: #2264a9;
    height: 40px;
}
p#promo-message {
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-top: 3px;
}
.custom-promobar-link {
    color: #fff; /* Set the link color */
    text-decoration: underline; /* Remove the default underline */
    margin-left: 10px; /* Add some space between the message and the link */
    transition: color 0.3s; /* Add transition effect on hover */
}

.custom-promobar-link:hover {
    color: #ccc; /* Darken the link color on hover */
    text-decoration: underline; /* Underline the link when hovered */
    text-decoration-color: #ccc
}



/* --------------------gpu css------------------------ */


/* Headings */
    h1 {
        font-family: "Exo", serif;
        margin-bottom: 20px;
        font-size: 2rem;  /* Adjust font size for h1 */
        font-weight: 400;
    }

    h2 {
        font-family: "Exo", serif;
        margin-bottom: 20px;
        font-size: 30px;  /* Adjust font size for h2 */
        font-weight: 400;
    }
h4 {
font-family: "Exo", serif;
        margin-bottom: 20px;
font-size: 25px;  /* Adjust font size for h4 */
        font-weight: 500;

}
.service-title {
    color: #1768b4;
}

    p {
        font-family: "Exo", serif;
        font-size: 1.1rem;  /* Adjust font size for paragraph */
        margin-bottom: 20px;
        font-weight: 300;
        color: #000;
        line-height: 1.7;
    }

    /* Banner Container */
    .banner-wrapper {
        background-image: url(/assets/images/services/cloud/gpu-cloud-banner.jpg);
        height: 420px;  /* Reduced height for smaller screens */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        align-content: center;
	border-radius: 15px;
    }
.banner_padding{
		padding:15px;
}
.list-style{
	list-style-type:circle;	
}

    /* Column styles */
    .col-6 {
        color: white;
        width: 80%;  /* Reduce width to fit better */
        padding-left: 20px;  /* Adjust padding */
    }

    /* Buttons */
    .button {
        padding: 10px 20px;
        border-radius: 25px;
        background-color: #007BFF;
        color: white;
        font-size: 16px;  /* Adjust font size */
    }

    /* Sections */
    .section .col-9 {
        align-content: flex-start;  /* Adjust alignment */
    }

    /* Services Box */
    .services {
        background-color: white;
        padding: 15px;  /* Adjust padding */
        border-radius: 15px;
    }
.banner-text{
color: #fff;
}

    /* Pricing and Plans */
.price {
background-color: #09203b;
        color: white;

}

    .plans {
        flex-direction: row;  /* Stack plans vertically */
        gap: 15px;  /* Adjust gap between elements */
    }

    .pricing {
        gap: 20px;  /* Adjust gap for pricing */
    }

    .pricing .col, .plans .col {
        padding: 20px;  /* Reduce padding inside columns */
    }

    /* Item Hover Effect */
    .item {
        border-radius: 12px;  /* Adjust border radius */
        transition: all 0.3s ease-in-out; /* Smooth transition */
        border: 1px solid #ddd; /* Initial border */
    }

    .item:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);  /* Reduced shadow effect */
        border: 1px solid #aaa; /* Slightly darker border */
    }

    .p_item {
        transition: transform 0.3s ease-in-out; /* Smooth zoom transition */
        border: 1px solid #ddd;  /* Initial border */
        border-radius: 12px;  /* Adjust border radius */
    }

    .p_item:hover {
        transform: scale(1.05);  /* Adjust zoom effect */
        border: 1px solid #aaa;  /* Slightly darker border */
    }

    /* Why Choose Us Section */
    .why_choose_us {
        flex-direction: row;  /* Stack columns vertically */
        gap: 20px;  /* Reduce gap between items */
        padding: 20px;
    }

    .why_choose_us .col {
        padding: 15px;  /* Reduce padding inside columns */
    }

    .why_choose_us div {
        border-radius: 12px;  /* Adjust border radius */
    }

    /* Custom Classes for Specific Styles */
    .get_mid {
        align-content: center;
    }

    .get_start {
        border-radius: 15px;
        background-color: #09203b;
        color: white;
    }

    /* Image Animation */
    .img_movable {
        animation: moveUpDown 10s ease-in-out infinite; /* Apply animation */
	object-fit:contain;
    }

    @keyframes moveUpDown {
        0% {
            transform: translateY(0); /* Start at normal position */
        }
        50% {
            transform: translateY(-20px); /* Move up 20px */
        }
        100% {
            transform: translateY(0); /* Return to original position */
        }
    }

@media (max-width: 768px) {

    /* Headings */
    h1 {
        font-size: 1.75rem;  /* Adjust font size for smaller screens */
    }

    h2 {
        font-size: 24px;  /* Adjust font size for h2 */
    }

    h4 {
        font-size: 22px;  /* Adjust font size for h4 */
    }


    /* Column styles */
    .col-6 {
        width: 90%;  /* Increase width to fill more space */
        padding-left: 10px;  /* Adjust padding */
    }

    /* Buttons */
    .button {
        font-size: 14px;  /* Adjust font size for buttons */
        padding: 8px 16px;  /* Adjust padding for smaller buttons */
    }

    /* Sections */
    .section .col-9 {
        align-content: flex-start;  /* Ensure correct alignment on smaller screens */
    }

    /* Services Box */
    .services {
        padding: 10px;  /* Reduce padding */
    }

    /* Pricing and Plans */
    .plans {
        flex-direction: column;  /* Stack plans vertically */
        gap: 10px;  /* Reduce gap between elements */
    }

    .pricing {
        gap: 15px;  /* Reduce gap for pricing */
    }

    .pricing .col, .plans .col {
        padding: 15px;  /* Reduce padding inside columns */
    }

    /* Item Hover Effect */
    .item {
        border-radius: 10px;  /* Reduce border radius */
    }

    .p_item {
        border-radius: 10px;  /* Reduce border radius */
    }

    /* Why Choose Us Section */
    .why_choose_us {
        flex-direction: column;  /* Stack columns vertically */
        gap: 15px;  /* Reduce gap between items */
    }

    .why_choose_us .col {
        padding: 10px;  /* Reduce padding inside columns */
    }

    /* Image Animation */
    .img_movable {
        animation:moveUpDown 10s ease-in-out infinite; /* Apply animation */
	object-fit:contain;
    }

    /* Custom Classes for Specific Styles */
    .get_mid {
        text-align: center;  /* Center the content */
    }

    .get_start {
        background-color: #09203b;  /* Ensure consistent styling */
    }
	.banner_padding{
		padding:5px;
}
}
