/* ======================================================
   Home Footer - Bondztek
====================================================== */

html.home-footer-sitemap-lock,
html.home-footer-sitemap-lock body {
	overflow: hidden;
}

section[data-module="home-footer-"] {
	--hf-white: #ffffff;
	--hf-cyan: #0c9bcb;
	--hf-light: #73d1ff;
	--hf-navy: #2a2a49;
	--hf-dark: #15151a;
	--hf-heading: "Orbitron", Arial, sans-serif;
	--hf-body: "Roboto", Arial, sans-serif;

	position: relative;
	width: 100%;
	overflow: hidden;
	font-family: var(--hf-body);
}

section[data-module="home-footer-"],
section[data-module="home-footer-"] * {
	box-sizing: border-box;
}

section[data-module="home-footer-"] a {
	text-decoration: none;
}

section[data-module="home-footer-"] button {
	font-family: inherit;
}

/* ======================================================
   Footer Main Area
====================================================== */

section[data-module="home-footer-"] .home-footer-bg {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 155px;
	min-height: 155px;

	overflow: hidden;

	background:
		linear-gradient(
			90deg,
			#7a828c 0%,
			#9aa2ab 18%,
			#d9dde1 37%,
			#ffffff 50%,
			#d9dde1 63%,
			#9aa2ab 82%,
			#7a828c 100%
		);
}

section[data-module="home-footer-"] .home-footer-pattern {
	position: absolute;
	inset: 0;
	z-index: 1;

	background-image:
		url("/wp-content/uploads/2026/06/footer-graphic.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	pointer-events: none;
}

section[data-module="home-footer-"] .home-footer-logo-area {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 155px;
	padding: 0 30px;
}

section[data-module="home-footer-"] .home-footer-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

section[data-module="home-footer-"] .home-footer-logo {
	display: block;

	width: auto;
	max-width: 210px;
	height: auto;

	filter:
		drop-shadow(
			0 12px 24px rgba(10, 25, 60, 0.13)
		);

	transition:
		transform 0.4s ease,
		filter 0.4s ease;
}

section[data-module="home-footer-"] .home-footer-logo-link:hover .home-footer-logo {
	transform: translateY(-3px);

	filter:
		drop-shadow(
			0 16px 30px rgba(10, 25, 60, 0.18)
		);
}

/* ======================================================
   Footer Bottom Bar
====================================================== */

section[data-module="home-footer-"] .home-footer-bottom {
	position: relative;
	z-index: 3;

	width: 100%;

	background:
		linear-gradient(
			90deg,
			#0c9bcb 0%,
			#22a8cf 50%,
			#0c9bcb 100%
		);

	box-shadow:
		0 -8px 24px rgba(15, 80, 110, 0.08);
}

section[data-module="home-footer-"] .home-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;

	width: 100%;
	max-width: 1200px;
	min-height: 46px;

	margin: 0 auto;
	padding: 11px 30px;

	color: #ffffff;

	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

section[data-module="home-footer-"] .home-footer-copyright {
	color: #ffffff;
	font-weight: 400;
}

section[data-module="home-footer-"] .home-footer-divider {
	display: inline-block;

	width: 1px;
	height: 14px;

	background:
		rgba(255, 255, 255, 0.72);
}

section[data-module="home-footer-"] .home-footer-link,
section[data-module="home-footer-"] .home-footer-sitemap-btn {
	position: relative;

	padding: 0;
	border: 0;

	background: transparent;
	color: #ffffff;

	font: inherit;
	font-weight: 400;
	text-decoration: none;

	cursor: pointer;

	transition:
		opacity 0.25s ease,
		color 0.25s ease;
}

section[data-module="home-footer-"] .home-footer-link:hover,
section[data-module="home-footer-"] .home-footer-sitemap-btn:hover {
	opacity: 0.72;
}

/* ======================================================
   Sitemap Popup
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;

	width: 100vw;
	height: 100vh;

	overflow: hidden;

	background: var(--hf-navy);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.35s ease,
		visibility 0.35s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ======================================================
   Popup Background
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;

	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;

	background:
		linear-gradient(
			120deg,
			rgba(42, 42, 73, 0.99) 0%,
			rgba(42, 42, 73, 0.97) 46%,
			rgba(12, 155, 203, 0.82) 100%
		),
		url("/wp-content/uploads/2026/06/footer-graphic.png");

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	opacity: 0;
	transform: scale(1.04);

	cursor: default;

	transition:
		opacity 0.5s ease,
		transform 0.9s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-overlay {
	opacity: 1;
	transform: scale(1);
}

section[data-module="home-footer-"] .home-footer-sitemap-popup::before {
	content: "";

	position: absolute;
	inset: 0;
	z-index: 2;

	background-image:
		linear-gradient(
			rgba(115, 209, 255, 0.05) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(115, 209, 255, 0.05) 1px,
			transparent 1px
		);

	background-size: 56px 56px;

	opacity: 0;
	pointer-events: none;

	transition:
		opacity 0.5s ease 0.14s;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active::before {
	opacity: 1;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup::after {
	content: "";

	position: absolute;
	right: -12vw;
	top: -18vw;
	z-index: 2;

	width: 44vw;
	height: 44vw;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(115, 209, 255, 0.42) 0%,
			rgba(12, 155, 203, 0.18) 38%,
			rgba(12, 155, 203, 0) 70%
		);

	filter: blur(14px);

	opacity: 0;
	transform: scale(0.82);
	pointer-events: none;

	transition:
		opacity 0.65s ease 0.12s,
		transform 0.8s ease 0.12s;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active::after {
	opacity: 1;
	transform: scale(1);
}

/* ======================================================
   Popup Panel
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-panel {
	position: relative;
	z-index: 4;

	width: 100%;
	height: 100vh;

	overflow-x: hidden;
	overflow-y: auto;

	opacity: 0;
	transform: translateY(18px);

	scrollbar-width: thin;

	scrollbar-color:
		rgba(115, 209, 255, 0.45)
		rgba(255, 255, 255, 0.05);

	transition:
		opacity 0.35s ease,
		transform 0.55s cubic-bezier(0.18, 0.9, 0.25, 1);
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-panel {
	opacity: 1;
	transform: translateY(0);
}

section[data-module="home-footer-"] .home-footer-sitemap-panel::-webkit-scrollbar {
	width: 8px;
}

section[data-module="home-footer-"] .home-footer-sitemap-panel::-webkit-scrollbar-track {
	background:
		rgba(255, 255, 255, 0.05);
}

section[data-module="home-footer-"] .home-footer-sitemap-panel::-webkit-scrollbar-thumb {
	border-radius: 999px;

	background:
		rgba(115, 209, 255, 0.45);
}

section[data-module="home-footer-"] .home-footer-sitemap-panel::-webkit-scrollbar-thumb:hover {
	background:
		rgba(115, 209, 255, 0.7);
}

/* ======================================================
   Close Button
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-close {
	position: fixed;
	top: 30px;
	right: 34px;
	z-index: 20;

	width: 52px;
	height: 52px;
	padding: 0;

	border:
		1px solid rgba(115, 209, 255, 0.42);
	border-radius: 50%;

	background:
		rgba(115, 209, 255, 0.14);

	cursor: pointer;

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	box-shadow:
		0 16px 34px rgba(0, 0, 0, 0.18);

	transition:
		transform 0.3s ease,
		background 0.3s ease,
		border-color 0.3s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-close span,
section[data-module="home-footer-"] .home-footer-sitemap-close span::after {
	content: "";

	position: absolute;
	left: 50%;
	top: 50%;

	width: 21px;
	height: 2px;

	border-radius: 999px;

	background: #ffffff;
}

section[data-module="home-footer-"] .home-footer-sitemap-close span {
	transform:
		translate(-50%, -50%)
		rotate(45deg);
}

section[data-module="home-footer-"] .home-footer-sitemap-close span::after {
	transform:
		translate(-50%, -50%)
		rotate(90deg);
}

section[data-module="home-footer-"] .home-footer-sitemap-close:hover {
	border-color: var(--hf-light);

	background: var(--hf-light);

	transform: rotate(90deg);
}

section[data-module="home-footer-"] .home-footer-sitemap-close:hover span,
section[data-module="home-footer-"] .home-footer-sitemap-close:hover span::after {
	background: var(--hf-navy);
}

/* ======================================================
   Sitemap Header
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-header {
	position: relative;
	z-index: 5;

	display: grid;

	grid-template-columns:
		minmax(0, 1.12fr)
		minmax(320px, 0.88fr);

	align-items: end;
	gap: 32px;

	width: 100%;
	max-width: 1580px;

	margin: 0 auto;
	padding: 36px 48px 26px;

	border-bottom:
		1px solid rgba(115, 209, 255, 0.22);
}

section[data-module="home-footer-"] .home-footer-sitemap-label {
	grid-column: 1 / -1;

	display: inline-flex;
	align-items: center;

	width: fit-content;
	padding: 8px 15px;

	border:
		1px solid rgba(115, 209, 255, 0.3);
	border-radius: 999px;

	background:
		rgba(115, 209, 255, 0.1);

	color: var(--hf-light);

	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;

	opacity: 0;
	transform: translateY(12px);
}

section[data-module="home-footer-"] .home-footer-sitemap-header h3 {
	margin: 0;

	color: #ffffff;

	font-family: var(--hf-heading);
	font-size: clamp(50px, 5.2vw, 80px);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
	text-transform: uppercase;

	text-shadow:
		0 0 28px rgba(115, 209, 255, 0.16);

	opacity: 0;
	transform: translateY(16px);
}

section[data-module="home-footer-"] .home-footer-sitemap-header p {
	justify-self: end;

	max-width: 490px;
	margin: 0;

	color:
		rgba(255, 255, 255, 0.8);

	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	text-align: right;

	opacity: 0;
	transform: translateY(16px);
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-label {
	animation:
		homeFooterSitemapFadeUp
		0.5s ease
		0.06s forwards;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-header h3 {
	animation:
		homeFooterSitemapFadeUp
		0.56s ease
		0.12s forwards;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-header p {
	animation:
		homeFooterSitemapFadeUp
		0.56s ease
		0.18s forwards;
}

/* ======================================================
   Sitemap Content Layout
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-content {
	position: relative;
	z-index: 5;

	display: grid;

	grid-template-columns:
		250px
		minmax(0, 1fr);

	align-items: start;
	gap: 34px;

	width: 100%;
	max-width: 1580px;

	margin: 0 auto;
	padding: 34px 48px 76px;
}

/* ======================================================
   Main Navigation
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-main-nav {
	display: grid;
	align-content: start;
	gap: 11px;

	opacity: 0;
	transform: translateY(24px);
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-main-nav {
	animation:
		homeFooterSitemapFadeUp
		0.6s ease
		0.2s forwards;
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	min-height: 60px;
	padding: 16px 18px;

	overflow: hidden;

	border:
		1px solid rgba(115, 209, 255, 0.2);
	border-left:
		3px solid var(--hf-light);

	background:
		rgba(255, 255, 255, 0.055);

	color: #ffffff;

	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	transition:
		color 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a::before {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(115, 209, 255, 0.18),
			transparent
		);

	transform: translateX(-105%);

	transition:
		transform 0.35s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a span,
section[data-module="home-footer-"] .home-footer-sitemap-main-nav a i {
	position: relative;
	z-index: 2;
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a i {
	flex: 0 0 9px;

	width: 9px;
	height: 9px;

	border-top:
		1.5px solid currentColor;
	border-right:
		1.5px solid currentColor;

	transform: rotate(45deg);

	transition:
		transform 0.25s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a:hover {
	border-color:
		rgba(115, 209, 255, 0.48);

	background:
		rgba(255, 255, 255, 0.09);

	color: var(--hf-light);

	transform: translateX(5px);
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a:hover::before {
	transform: translateX(0);
}

section[data-module="home-footer-"] .home-footer-sitemap-main-nav a:hover i {
	transform:
		rotate(45deg)
		translate(2px, -2px);
}

/* ======================================================
   Expertise Area
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-expertise {
	min-width: 0;

	opacity: 0;
	transform: translateY(24px);
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-expertise {
	animation:
		homeFooterSitemapFadeUp
		0.6s ease
		0.26s forwards;
}

section[data-module="home-footer-"] .home-footer-sitemap-expertise-heading {
	margin-bottom: 18px;
	padding-bottom: 16px;

	border-bottom:
		1px solid rgba(115, 209, 255, 0.22);
}

section[data-module="home-footer-"] .home-footer-sitemap-expertise-heading span {
	color: #ffffff;

	font-family: var(--hf-heading);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

/* ======================================================
   Taxonomy Grid
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-grid {
	display: grid;

	grid-template-columns:
		repeat(
			var(--sitemap-columns, 3),
			minmax(0, 1fr)
		);

	align-items: stretch;
	gap: 0;

	width: 100%;

	overflow: hidden;

	border:
		1px solid rgba(115, 209, 255, 0.22);

	background:
		rgba(255, 255, 255, 0.05);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

/* ======================================================
   Taxonomy Card
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-card {
	position: relative;

	min-width: 0;
	padding: 28px 26px 30px;

	background: transparent;

	opacity: 0;
	transform: translateY(18px);

	transition:
		background 0.25s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-popup.is-active .home-footer-sitemap-card {
	animation:
		homeFooterSitemapFadeUp
		0.55s ease
		calc(0.32s + var(--card-delay))
		forwards;
}

section[data-module="home-footer-"] .home-footer-sitemap-card:not(:last-child) {
	border-right:
		1px solid rgba(115, 209, 255, 0.16);
}

section[data-module="home-footer-"] .home-footer-sitemap-card::after {
	content: "";

	position: absolute;
	top: 0;
	left: 26px;

	width: 54px;
	height: 3px;

	background: var(--hf-light);

	transition:
		width 0.3s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-card:hover {
	background:
		rgba(255, 255, 255, 0.035);
}

section[data-module="home-footer-"] .home-footer-sitemap-card:hover::after {
	width:
		calc(100% - 52px);
}

/* ======================================================
   Category Number
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 38px;
	height: 26px;
	margin-bottom: 15px;
	padding: 0 10px;

	border:
		1px solid rgba(115, 209, 255, 0.34);
	border-radius: 999px;

	background:
		rgba(115, 209, 255, 0.08);

	color: var(--hf-light);

	font-family: var(--hf-heading);
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
}

/* ======================================================
   Level 1
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-parent {
	position: relative;

	display: flex;
	align-items: center;

	min-height: 58px;
	margin-bottom: 6px;
	padding: 10px 0 16px;

	border-bottom:
		1px solid rgba(255, 255, 255, 0.14);

	color: var(--hf-light);

	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;

	transition:
		color 0.25s ease,
		padding-left 0.25s ease,
		border-color 0.25s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-parent::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: -1px;

	width: 0;
	height: 2px;

	background: var(--hf-light);

	transition:
		width 0.28s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-parent:hover {
	padding-left: 8px;

	border-color:
		rgba(115, 209, 255, 0.35);

	color: #ffffff;
}

section[data-module="home-footer-"] .home-footer-sitemap-parent:hover::after {
	width: 65%;
}

/* ======================================================
   Level 2
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-children {
	display: grid;
	gap: 0;

	margin: 0;
	padding: 0;

	list-style: none;
}

section[data-module="home-footer-"] .home-footer-sitemap-children li {
	margin: 0;
	padding: 0;
}

section[data-module="home-footer-"] .home-footer-sitemap-children li a {
	position: relative;

	display: block;

	min-height: 46px;
	padding: 11px 0;

	border-bottom:
		1px solid rgba(255, 255, 255, 0.08);

	color:
		rgba(255, 255, 255, 0.86);

	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;

	transition:
		color 0.25s ease,
		padding-left 0.25s ease,
		border-color 0.25s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-children li a::before {
	content: "";

	position: absolute;
	left: 0;
	top: 50%;

	width: 6px;
	height: 6px;

	border-radius: 50%;

	background: var(--hf-light);

	opacity: 0;

	transform:
		translateY(-50%)
		scale(0);

	transition:
		opacity 0.22s ease,
		transform 0.22s ease;
}

section[data-module="home-footer-"] .home-footer-sitemap-children li a:hover {
	padding-left: 17px;

	border-color:
		rgba(115, 209, 255, 0.2);

	color: var(--hf-light);
}

section[data-module="home-footer-"] .home-footer-sitemap-children li a:hover::before {
	opacity: 1;

	transform:
		translateY(-50%)
		scale(1);
}

/* ======================================================
   Empty State
====================================================== */

section[data-module="home-footer-"] .home-footer-sitemap-empty {
	padding: 24px;

	border:
		1px solid rgba(115, 209, 255, 0.22);

	background:
		rgba(255, 255, 255, 0.05);

	color:
		rgba(255, 255, 255, 0.8);

	font-size: 16px;
	line-height: 1.6;
}

/* ======================================================
   Animation
====================================================== */

@keyframes homeFooterSitemapFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ======================================================
   Laptop
====================================================== */

@media (max-width: 1366px) {
	section[data-module="home-footer-"] .home-footer-sitemap-header,
	section[data-module="home-footer-"] .home-footer-sitemap-content {
		padding-left: 38px;
		padding-right: 38px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header h3 {
		font-size:
			clamp(46px, 5vw, 72px);
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header p {
		font-size: 17px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-content {
		grid-template-columns:
			230px
			minmax(0, 1fr);

		gap: 26px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-main-nav a {
		min-height: 56px;
		padding: 15px 16px;

		font-size: 16px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card {
		padding:
			24px 20px 26px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card::after {
		left: 20px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card:hover::after {
		width:
			calc(100% - 40px);
	}

	section[data-module="home-footer-"] .home-footer-sitemap-parent {
		font-size: 18px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-children li a {
		font-size: 14px;
	}
}

/* ======================================================
   Tablet
====================================================== */

@media (max-width: 1024px) {
	section[data-module="home-footer-"] .home-footer-sitemap-header {
		grid-template-columns: 1fr;
		gap: 14px;

		padding:
			32px 30px 22px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header p {
		justify-self: start;

		max-width: 600px;

		text-align: left;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-content {
		grid-template-columns: 1fr;
		gap: 30px;

		padding:
			28px 30px 68px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-main-nav {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	section[data-module="home-footer-"] .home-footer-sitemap-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card:nth-child(2n) {
		border-right: 0;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card:nth-child(n + 3) {
		border-top:
			1px solid rgba(115, 209, 255, 0.16);
	}
}

/* ======================================================
   Mobile
====================================================== */

@media (max-width: 767px) {
	section[data-module="home-footer-"] .home-footer-bg,
	section[data-module="home-footer-"] .home-footer-logo-area {
		height: 135px;
		min-height: 135px;
	}

	section[data-module="home-footer-"] .home-footer-logo-area {
		padding: 0 20px;
	}

	section[data-module="home-footer-"] .home-footer-logo {
		max-width: 170px;
	}

	section[data-module="home-footer-"] .home-footer-bottom-inner {
		padding: 11px 18px;

		font-size: 12px;
		gap: 7px;
	}

	section[data-module="home-footer-"] .home-footer-divider {
		height: 12px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-close {
		top: 16px;
		right: 16px;

		width: 44px;
		height: 44px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-close span,
	section[data-module="home-footer-"] .home-footer-sitemap-close span::after {
		width: 18px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header {
		padding:
			26px 18px 20px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-label {
		max-width:
			calc(100vw - 90px);

		padding: 7px 12px;

		font-size: 10px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header h3 {
		font-size: 42px;
		line-height: 1;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header p {
		max-width: 100%;

		font-size: 15px;
		line-height: 1.65;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-content {
		display: block;

		padding:
			20px 18px 64px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-main-nav {
		grid-template-columns: 1fr;

		margin-bottom: 30px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-main-nav a {
		min-height: 54px;
		padding: 14px 16px;

		font-size: 16px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-expertise-heading {
		margin-bottom: 14px;
		padding-bottom: 14px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-expertise-heading span {
		font-size: 18px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-grid {
		grid-template-columns: 1fr;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card,
	section[data-module="home-footer-"] .home-footer-sitemap-card:not(:last-child),
	section[data-module="home-footer-"] .home-footer-sitemap-card:nth-child(2n) {
		border-right: 0;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card:not(:first-child) {
		border-top:
			1px solid rgba(115, 209, 255, 0.16);
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card {
		padding:
			23px 18px 25px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card::after {
		left: 18px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-card:hover::after {
		width:
			calc(100% - 36px);
	}

	section[data-module="home-footer-"] .home-footer-sitemap-parent {
		min-height: auto;

		font-size: 18px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-children li a {
		min-height: 43px;

		font-size: 15px;
		line-height: 1.45;
	}
}

/* ======================================================
   Small Mobile
====================================================== */

@media (max-width: 480px) {
	section[data-module="home-footer-"] .home-footer-sitemap-header h3 {
		font-size: 38px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-header,
	section[data-module="home-footer-"] .home-footer-sitemap-content {
		padding-left: 16px;
		padding-right: 16px;
	}

	section[data-module="home-footer-"] .home-footer-bottom-inner {
		padding-left: 14px;
		padding-right: 14px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-parent {
		font-size: 17px;
	}

	section[data-module="home-footer-"] .home-footer-sitemap-children li a {
		font-size: 14px;
	}
}

/* ======================================================
   WordPress Admin Bar
====================================================== */

body.admin-bar section[data-module="home-footer-"] .home-footer-sitemap-popup {
	top: 32px;

	height:
		calc(100vh - 32px);
}

body.admin-bar section[data-module="home-footer-"] .home-footer-sitemap-panel {
	height:
		calc(100vh - 32px);
}

body.admin-bar section[data-module="home-footer-"] .home-footer-sitemap-close {
	top: 62px;
}

@media (max-width: 782px) {
	body.admin-bar section[data-module="home-footer-"] .home-footer-sitemap-popup {
		top: 46px;

		height:
			calc(100vh - 46px);
	}

	body.admin-bar section[data-module="home-footer-"] .home-footer-sitemap-panel {
		height:
			calc(100vh - 46px);
	}

	body.admin-bar section[data-module="home-footer-"] .home-footer-sitemap-close {
		top: 62px;
	}
}

/* ======================================================
   Reduced Motion
====================================================== */

@media (prefers-reduced-motion: reduce) {
	section[data-module="home-footer-"] *,
	section[data-module="home-footer-"] *::before,
	section[data-module="home-footer-"] *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}