.nqth-header {
	--nqth-teal: #00525E;
	--nqth-teal-light: #0EB6BD;
	--nqth-slate: #384551;
	--nqth-ink: #20323a;
	--nqth-line: rgba(56, 69, 81, 0.14);
	--nqth-inner: 1320px;
	--nqth-admin-offset: 0px;
	--nqth-sticky-height: 76px;
	--nqth-drawer-top: 106px;
	position: relative;
	z-index: 999;
	width: 100%;
	font-family: Aeonik, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.admin-bar .nqth-header {
	--nqth-admin-offset: 32px;
}

.nqth-header *,
.nqth-header *::before,
.nqth-header *::after {
	box-sizing: border-box;
}

.nqth-header__inner {
	width: min(100% - 48px, var(--nqth-inner));
	margin: 0 auto;
}

.nqth-header__top {
	position: relative;
	z-index: 2;
	min-height: 48px;
	background: var(--nqth-teal);
	color: #fff;
}

.nqth-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 48px;
}

.nqth-header__social {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nqth-header__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #fff;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nqth-header__social-link svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.nqth-header__social-link:hover,
.nqth-header__social-link:focus-visible {
	color: #d8fbff;
	transform: translateY(-1px);
}

.nqth-header__social-link.is-disabled {
	opacity: 0.8;
	cursor: default;
}

.nqth-header__contact {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.nqth-header__angled-link {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 10px 28px;
	clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 100% 100%, 15% 100%, 0% 50%);
	background: var(--nqth-teal-light);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 220ms ease, color 220ms ease;
}

.nqth-header__angled-link::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 0;
	background: rgba(255, 255, 255, 0.96);
	transition: width 360ms ease;
}

.nqth-header__angled-link:hover,
.nqth-header__angled-link:focus-visible {
	color: var(--nqth-teal);
	transform: translateY(-2px);
}

.nqth-header__angled-link:hover::before,
.nqth-header__angled-link:focus-visible::before {
	width: 100%;
}

.nqth-header__language {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 14px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease;
}

.nqth-header__language:hover,
.nqth-header__language:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.58);
	color: #fff;
}

.nqth-header__mobile-top {
	display: none;
}

.nqth-header__main {
	position: relative;
	z-index: 3;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--nqth-line);
	transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.nqth-header.is-stuck {
	padding-bottom: var(--nqth-sticky-height);
}

.nqth-header.is-stuck .nqth-header__main {
	position: fixed;
	top: var(--nqth-admin-offset);
	right: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	box-shadow: 0 16px 36px rgba(22, 42, 52, 0.12);
	animation: nqth-slide-down 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes nqth-slide-down {
	from {
		transform: translateY(-12px);
		opacity: 0.88;
	}

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

.nqth-header__main-inner {
	display: grid;
	grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 76px;
	transition: min-height 220ms ease;
}

.nqth-header.is-stuck .nqth-header__main-inner {
	min-height: 68px;
}

.nqth-header__brand {
	display: inline-flex;
	align-items: center;
	width: min(100%, 330px);
	color: inherit;
	text-decoration: none;
}

.nqth-header__brand img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 54px;
	object-fit: contain;
	object-position: left center;
	transition: transform 220ms ease;
}

.nqth-header.is-stuck .nqth-header__brand img {
	transform: scale(0.94);
	transform-origin: left center;
}

.nqth-header__main::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 82, 94, 0), rgba(0, 82, 94, 0.32), rgba(0, 82, 94, 0));
	opacity: 0;
	transition: opacity 220ms ease;
}

.nqth-header.is-stuck .nqth-header__main::after {
	opacity: 1;
}

.nqth-header__nav {
	justify-self: end;
	min-width: 0;
}

.nqth-header__menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(14px, 1.65vw, 30px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.nqth-header__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--nqth-slate);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.nqth-header__menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	background: var(--nqth-teal);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 220ms ease;
}

.nqth-header__menu a:hover,
.nqth-header__menu a:focus-visible,
.nqth-header__menu .is-current a {
	color: var(--nqth-teal);
}

.nqth-header__menu a:hover::after,
.nqth-header__menu a:focus-visible::after,
.nqth-header__menu .is-current a::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.nqth-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(0, 82, 94, 0.18);
	border-radius: 0;
	background: #fff;
	background-image:
		linear-gradient(currentColor, currentColor),
		linear-gradient(currentColor, currentColor),
		linear-gradient(currentColor, currentColor);
	background-position:
		center calc(50% - 7px),
		center center,
		center calc(50% + 7px);
	background-repeat: no-repeat;
	background-size: 21px 2px;
	color: var(--nqth-teal);
	box-shadow: none;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease;
}

.nqth-header__toggle-line {
	display: block;
	width: 21px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.nqth-header.is-open .nqth-header__toggle {
	background: rgba(0, 82, 94, 0.06);
	background-image: none;
	border-color: rgba(0, 82, 94, 0.34);
}

.nqth-header.is-open .nqth-header__toggle-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nqth-header.is-open .nqth-header__toggle-line:nth-child(2) {
	opacity: 0;
}

.nqth-header.is-open .nqth-header__toggle-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nqth-header__drawer {
	display: none;
}

body.nqth-menu-open {
	overflow: hidden;
	touch-action: none;
}

.nqth-header a:focus-visible,
.nqth-header button:focus-visible {
	outline: 2px solid var(--nqth-teal-light);
	outline-offset: 3px;
}

@media (max-width: 1120px) {
	.nqth-header__inner {
		width: min(100% - 36px, var(--nqth-inner));
	}

	.nqth-header__main-inner {
		grid-template-columns: minmax(220px, 290px) minmax(0, 1fr) auto;
		gap: 18px;
	}

	.nqth-header__menu {
		gap: 16px;
	}

	.nqth-header__menu a {
		font-size: 14px;
	}

	.nqth-header__angled-link {
		padding-inline: 22px;
	}
}

@media (max-width: 940px) {
	.nqth-header__top {
		display: none;
	}

	.nqth-header__mobile-top {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 36px;
		background: var(--nqth-teal);
		color: #fff;
	}

	.nqth-header__mobile-top .nqth-header__social {
		gap: 17px;
	}

	.nqth-header__mobile-top .nqth-header__social-link {
		width: 24px;
		height: 30px;
	}

	.nqth-header__mobile-top .nqth-header__social-link svg {
		width: 17px;
		height: 17px;
	}

	.nqth-header__main-inner {
		position: relative;
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		align-items: center;
		gap: 16px;
		width: min(100% - 30px, var(--nqth-inner));
		min-height: 70px;
		padding-right: 60px;
	}

	.nqth-header.is-stuck .nqth-header__main-inner {
		min-height: 64px;
	}

	.nqth-header__brand {
		grid-column: 1;
		width: min(270px, 100%);
		min-width: 0;
	}

	.nqth-header__brand img {
		max-height: 47px;
	}

	.nqth-header__nav {
		display: none;
	}

	.nqth-header__toggle {
		position: absolute;
		top: 50%;
		right: 0;
		display: inline-flex !important;
		grid-column: 2;
		justify-self: end;
		transform: translateY(-50%);
	}

	.nqth-header__drawer {
		position: fixed;
		top: var(--nqth-drawer-top);
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		overflow-y: auto;
		padding: 22px 0 max(28px, env(safe-area-inset-bottom));
		background:
			linear-gradient(135deg, rgba(0, 82, 94, 0.96), rgba(24, 48, 58, 0.98)),
			var(--nqth-teal);
		color: #fff;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		box-shadow: 0 28px 60px rgba(9, 27, 34, 0.32);
		transform-origin: top center;
		animation: nqth-drawer-in 240ms cubic-bezier(0.16, 1, 0.3, 1);
	}

	.nqth-header__drawer[hidden] {
		display: none;
	}

	@keyframes nqth-drawer-in {
		from {
			transform: translateY(-14px);
			opacity: 0;
		}

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

	.nqth-header__drawer-nav,
	.nqth-header__drawer-actions,
	.nqth-header__drawer-head,
	.nqth-header__drawer-social {
		width: min(100% - 30px, var(--nqth-inner));
		margin: 0 auto;
	}

	.nqth-header__drawer-head {
		display: grid;
		gap: 4px;
		padding-bottom: 18px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.nqth-header__drawer-eyebrow {
		color: rgba(255, 255, 255, 0.72);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.nqth-header__drawer-title {
		color: #fff;
		font-size: 24px;
		font-weight: 700;
		line-height: 1.1;
	}

	.nqth-header__drawer-nav {
		padding-top: 8px;
	}

	.nqth-header__drawer .nqth-header__menu {
		display: grid;
		gap: 0;
	}

	.nqth-header__drawer .nqth-header__menu li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.nqth-header__drawer .nqth-header__menu a {
		justify-content: space-between;
		min-height: 58px;
		color: #fff;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0;
		padding-right: 6px;
	}

	.nqth-header__drawer .nqth-header__menu a::after {
		position: static;
		display: block;
		width: 18px;
		height: 18px;
		background: none;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		opacity: 0.6;
		transform: rotate(45deg);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.nqth-header__drawer .nqth-header__menu a:hover::after,
	.nqth-header__drawer .nqth-header__menu a:focus-visible::after {
		opacity: 1;
		transform: translateX(3px) rotate(45deg);
	}

	.nqth-header__drawer .nqth-header__menu .is-current a {
		color: #d8fbff;
	}

	.nqth-header__drawer-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		padding-top: 20px;
		margin-top: 8px;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

	.nqth-header__drawer-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 13px 18px;
		clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 100% 100%, 12% 100%, 0% 50%);
		background: rgba(255, 255, 255, 0.12);
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
	}

	.nqth-header__drawer-actions .nqth-header__language {
		background: #fff;
		color: var(--nqth-teal);
	}

	.nqth-header__drawer-social {
		padding-top: 18px;
	}

	.nqth-header__drawer-social .nqth-header__social {
		justify-content: center;
		gap: 18px;
	}

	.nqth-header__drawer-social .nqth-header__social-link {
		width: 36px;
		height: 36px;
		border: 1px solid rgba(255, 255, 255, 0.18);
		color: #fff;
	}
}

@media (max-width: 360px) {
	.nqth-header__brand {
		width: min(250px, 100%);
	}

	.nqth-header__brand img {
		max-height: 42px;
	}
}

@media (max-width: 940px) {
	.nqth-header .nqth-header__main-inner {
		overflow: visible !important;
	}

	.nqth-header [data-nqth-toggle] {
		position: absolute !important;
		top: 50% !important;
		right: 0 !important;
		z-index: 30 !important;
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		width: 44px !important;
		height: 44px !important;
		margin: 0 !important;
		padding: 0 !important;
		appearance: none !important;
		background-color: var(--nqth-teal) !important;
		background-image:
			linear-gradient(currentColor, currentColor),
			linear-gradient(currentColor, currentColor),
			linear-gradient(currentColor, currentColor) !important;
		background-position:
			center calc(50% - 7px),
			center center,
			center calc(50% + 7px) !important;
		background-repeat: no-repeat !important;
		background-size: 21px 2px !important;
		border: 0 !important;
		box-shadow: 0 10px 22px rgba(0, 82, 94, 0.18) !important;
		color: #fff !important;
		transform: translateY(-50%) !important;
		pointer-events: auto !important;
	}

	.nqth-header.is-open [data-nqth-toggle] {
		background-color: #fff !important;
		background-image: none !important;
		color: var(--nqth-teal) !important;
	}
}

@media (max-width: 940px) {
	.nqth-header [data-nqth-toggle] {
		position: absolute !important;
		top: 50% !important;
		right: 0 !important;
		z-index: 160 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 44px !important;
		height: 44px !important;
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		border: 0 !important;
		box-shadow: none !important;
		color: var(--nqth-teal) !important;
		transform: translateY(-50%) !important;
		-webkit-tap-highlight-color: transparent;
	}

	.nqth-header.is-open [data-nqth-toggle] {
		position: fixed !important;
		top: calc(var(--nqth-admin-offset) + env(safe-area-inset-top, 0px) + 16px) !important;
		right: 16px !important;
		z-index: 10001 !important;
		background: transparent !important;
		background-color: transparent !important;
		color: #fff !important;
		transform: none !important;
	}

	.nqth-header.is-open .nqth-header__main {
		z-index: 10002;
		background: transparent;
		border-bottom-color: transparent;
		box-shadow: none;
		pointer-events: none;
	}

	.nqth-header.is-open .nqth-header__brand,
	.nqth-header.is-open .nqth-header__main::after {
		opacity: 0;
	}

	.nqth-header.is-open [data-nqth-toggle] {
		pointer-events: auto;
	}

	.nqth-header__toggle-box {
		position: relative;
		display: block;
		width: 28px;
		height: 20px;
	}

	.nqth-header__toggle-box::before,
	.nqth-header__toggle-box::after {
		content: "";
		position: absolute;
		top: 9px;
		left: 0;
		width: 28px;
		height: 2px;
		border-radius: 999px;
		background: transparent;
		opacity: 0;
		transform: rotate(0deg);
		transition: opacity 220ms ease, transform 320ms ease, background 260ms ease;
	}

	.nqth-header__toggle-line {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		border-radius: 999px;
		background: currentColor;
		transform-origin: center;
		transition: transform 320ms ease, opacity 220ms ease, top 320ms ease;
	}

	.nqth-header__toggle-line:nth-child(1) {
		top: 0;
	}

	.nqth-header__toggle-line:nth-child(2) {
		top: 9px;
	}

	.nqth-header__toggle-line:nth-child(3) {
		top: 18px;
	}

	.nqth-header.is-open .nqth-header__toggle-line {
		opacity: 0;
	}

	.nqth-header.is-open .nqth-header__toggle-box::before,
	.nqth-header.is-open .nqth-header__toggle-box::after {
		opacity: 1;
		background: currentColor;
	}

	.nqth-header.is-open .nqth-header__toggle-box::before {
		transform: rotate(45deg);
	}

	.nqth-header.is-open .nqth-header__toggle-box::after {
		transform: rotate(-45deg);
	}

	.nqth-header__drawer {
		position: fixed !important;
		inset: 0 !important;
		z-index: 10000;
		display: block;
		overflow-y: auto;
		padding: 0;
		background:
			radial-gradient(circle at top left, rgba(14, 182, 189, 0.2), transparent 34%),
			radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 32%),
			linear-gradient(180deg, rgba(0, 37, 44, 0.68), rgba(0, 31, 38, 0.76));
		backdrop-filter: blur(18px);
		border: 0;
		box-shadow: none;
		color: #fff;
		opacity: 0;
		pointer-events: none;
		transition: opacity 340ms ease;
		animation: none;
	}

	.nqth-header__drawer[hidden] {
		display: none !important;
	}

	.nqth-header.is-open .nqth-header__drawer {
		opacity: 1;
		pointer-events: auto;
	}

	.nqth-header__drawer::before {
		content: "";
		position: fixed;
		inset: 0;
		pointer-events: none;
		background:
			linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
			linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
		background-size: 44px 44px;
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 76%);
	}

	.nqth-header__drawer-head,
	.nqth-header__drawer-nav,
	.nqth-header__drawer-actions,
	.nqth-header__drawer-social {
		position: relative;
		z-index: 1;
		width: min(100% - 48px, 560px);
		margin-right: auto;
		margin-left: auto;
	}

	.nqth-header__drawer-head {
		display: grid;
		gap: 8px;
		padding-top: calc(var(--nqth-admin-offset) + env(safe-area-inset-top, 0px) + 74px);
		padding-bottom: 22px;
		border: 0;
	}

	.nqth-header__drawer-eyebrow {
		color: rgba(255, 255, 255, 0.58);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.28em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.nqth-header__drawer-title {
		color: #fff;
		font-size: clamp(1.85rem, 8vw, 3rem);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 0.95;
		text-transform: uppercase;
	}

	.nqth-header__drawer .nqth-header__menu {
		display: grid;
		justify-content: stretch;
		gap: 0;
		width: 100%;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.nqth-header__drawer .nqth-header__menu li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		opacity: 0;
		transform: translateY(18px);
		transition: opacity 350ms ease, transform 350ms ease;
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li {
		opacity: 1;
		transform: translateY(0);
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li:nth-child(1) {
		transition-delay: 80ms;
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li:nth-child(2) {
		transition-delay: 130ms;
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li:nth-child(3) {
		transition-delay: 180ms;
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li:nth-child(4) {
		transition-delay: 230ms;
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li:nth-child(5) {
		transition-delay: 280ms;
	}

	.nqth-header.is-open .nqth-header__drawer .nqth-header__menu li:nth-child(6) {
		transition-delay: 330ms;
	}

	.nqth-header__drawer .nqth-header__menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 54px;
		padding: 12px 0;
		color: #fff;
		font-size: clamp(1.15rem, 4.8vw, 1.55rem);
		font-weight: 700;
		letter-spacing: 0.02em;
		line-height: 1.05;
		text-decoration: none;
		text-transform: uppercase;
		transition: color 220ms ease, transform 220ms ease;
	}

	.nqth-header__drawer .nqth-header__menu a::after {
		content: "";
		position: static;
		display: block;
		width: 10px;
		height: 10px;
		background: none;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		opacity: 0.62;
		transform: rotate(45deg);
		transition: opacity 220ms ease, transform 220ms ease;
	}

	.nqth-header__drawer .nqth-header__menu a:hover,
	.nqth-header__drawer .nqth-header__menu a:focus-visible {
		color: #d8fbff;
		transform: translateX(4px);
	}

	.nqth-header__drawer .nqth-header__menu .is-current a {
		color: #d8fbff;
	}

	.nqth-header__drawer .nqth-header__menu a:hover::after,
	.nqth-header__drawer .nqth-header__menu a:focus-visible::after {
		opacity: 1;
		transform: translateX(4px) rotate(45deg);
	}

	.nqth-header__drawer-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		padding-top: 28px;
		margin-top: 0;
		border: 0;
	}

	.nqth-header__drawer-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 46px;
		padding: 13px 18px;
		clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 100% 100%, 12% 100%, 0% 50%);
		background: rgba(255, 255, 255, 0.11);
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
	}

	.nqth-header__drawer-social {
		padding-top: 22px;
		padding-bottom: max(28px, env(safe-area-inset-bottom));
	}

	.nqth-header__drawer-social .nqth-header__social {
		justify-content: flex-start;
		gap: 12px;
	}

	.nqth-header__drawer-social .nqth-header__social-link {
		width: 44px;
		height: 44px;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.03);
		color: #fff;
	}

	.nqth-header__drawer-social .nqth-header__social-link svg {
		width: 20px;
		height: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nqth-header *,
	.nqth-header *::before,
	.nqth-header *::after {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}
