/**
 * IMS Gems Header & Footer v1.3.0
 * Responsive stylesheet rebuilt from a clean baseline.
 * Fonts intentionally inherit Elementor Global Fonts.
 */

:where(.ims-gems-site-header, .ims-gems-site-footer) {
	--ims-gems-hf-ink: #182028;
	--ims-gems-hf-panel: #151e27;
	--ims-gems-hf-gold: #d3ad5d;
	--ims-gems-hf-gold-soft: #ead391;
	--ims-gems-hf-shell: 1280px;
}

.ims-gems-site-header,
.ims-gems-site-header *,
.ims-gems-site-footer,
.ims-gems-site-footer * {
	box-sizing: border-box;
}

/* =========================================================
 * Header: shared
 * ======================================================= */
.ims-gems-site-header {
	position: relative;
	z-index: 9999;
	width: 100%;
}

.ims-gems-site-header__bar {
	position: fixed;
	top: 18px;
	left: 50%;
	display: flex;
	width: min(calc(100% - 32px), 1240px);
	min-width: 0;
	min-height: 68px;
	align-items: center;
	gap: 24px;
	padding: 10px 12px 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(18, 25, 31, 0.88);
	box-shadow: 0 22px 60px -30px rgba(0, 0, 0, 0.8);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	transform: translateX(-50%);
}

.ims-gems-brand {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

.ims-gems-brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ims-gems-hf-gold), var(--ims-gems-hf-gold-soft));
	color: var(--ims-gems-hf-ink);
	font-size: 20px;
	font-weight: 700;
}

.ims-gems-brand__mark svg {
	display: block;
	width: 45%;
	height: 45%;
	fill: currentColor;
}

.ims-gems-brand__image {
	display: block;
	width: 150px;
	max-width: 100%;
	max-height: 52px;
	object-fit: contain;
}

.ims-gems-brand__name {
	min-width: 0;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ims-gems-brand__name b {
	color: var(--ims-gems-hf-gold);
}

/* Desktop navigation */
.ims-gems-site-nav {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.ims-gems-site-nav > a,
.ims-gems-site-nav__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 12px 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: rgba(255, 255, 255, 0.76);
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.07em;
	line-height: 1.35;
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	transition: color 0.2s ease;
}

.ims-gems-site-nav > a:hover,
.ims-gems-site-nav > a:focus-visible,
.ims-gems-site-nav__trigger:hover,
.ims-gems-site-nav__trigger:focus-visible {
	color: var(--ims-gems-hf-gold);
}

.ims-gems-site-nav__dropdown {
	position: relative;
	min-width: 0;
}

.ims-gems-site-nav__dropdown-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.ims-gems-site-nav__dropdown-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ims-gems-site-nav__dropdown.is-open .ims-gems-site-nav__dropdown-icon {
	transform: rotate(180deg);
}

.ims-gems-site-nav__panel {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	z-index: 30;
	display: none;
	width: min(330px, calc(100vw - 32px));
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	background: var(--ims-gems-hf-panel);
	box-shadow: 0 28px 70px -25px rgba(0, 0, 0, 0.85);
	transform: translateX(-50%);
}

.ims-gems-site-nav__dropdown.is-open .ims-gems-site-nav__panel {
	display: block;
}

.ims-gems-site-nav__panel > a {
	display: block;
	min-width: 0;
	padding: 12px 13px;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ims-gems-site-nav__panel > a:hover,
.ims-gems-site-nav__panel > a:focus-visible {
	background: rgba(255, 255, 255, 0.06);
}

.ims-gems-site-nav__panel strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.ims-gems-site-nav__panel small {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 11px;
	line-height: 1.45;
}

.ims-gems-site-nav__panel .ims-gems-site-nav__all {
	margin-top: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0;
	color: var(--ims-gems-hf-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

/* Header CTA: anchor, isolated from Elementor Global Button */
.ims-gems-site-header .ims-gems-site-header__cta {
	display: inline-flex;
	min-width: 0;
	min-height: 44px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--ims-gems-hf-gold), var(--ims-gems-hf-gold-soft));
	box-shadow: none;
	color: var(--ims-gems-hf-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ims-gems-site-header .ims-gems-site-header__cta:hover,
.ims-gems-site-header .ims-gems-site-header__cta:focus-visible {
	color: var(--ims-gems-hf-ink);
	text-decoration: none;
	transform: translateY(-1px);
}

.ims-gems-site-header__cta svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Toggle intentionally uses a neutral element, not <button>. */
.ims-gems-site-header__toggle {
	display: none;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.035);
	box-shadow: none;
	color: #fff;
	font: inherit;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-user-select: none;
	user-select: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ims-gems-site-header__toggle > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ims-gems-site-header__toggle svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.ims-gems-site-header__toggle-close {
	display: none !important;
}

.ims-gems-site-header__toggle[aria-expanded="true"] {
	border-color: rgba(211, 173, 93, 0.46);
	background: rgba(211, 173, 93, 0.1);
	color: var(--ims-gems-hf-gold-soft);
}

.ims-gems-site-header__toggle[aria-expanded="true"] .ims-gems-site-header__toggle-open {
	display: none !important;
}

.ims-gems-site-header__toggle[aria-expanded="true"] .ims-gems-site-header__toggle-close {
	display: inline-flex !important;
}

/* Mobile/tablet menu panel. JS writes exact left/top/width from the header bar. */
.ims-gems-mobile-menu {
	position: fixed !important;
	top: 88px;
	left: 16px;
	z-index: 10001;
	display: block;
	width: calc(100% - 32px);
	max-width: 920px;
	max-height: calc(100dvh - 104px);
	margin: 0;
	padding: 12px;
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: rgba(15, 22, 29, 0.98);
	box-shadow: 0 28px 80px -30px rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
	transform: none !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.ims-gems-mobile-menu[hidden] {
	display: none !important;
}

.ims-gems-mobile-menu > a:not(.ims-gems-mobile-menu__cta),
.ims-gems-mobile-menu__group-trigger {
	display: flex !important;
	width: 100% !important;
	min-width: 0;
	min-height: 48px;
	align-items: center !important;
	justify-content: space-between !important;
	flex-direction: row !important;
	gap: 14px;
	margin: 0;
	padding: 11px 13px;
	border: 0;
	border-radius: 13px;
	background: transparent;
	box-shadow: none;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
	text-decoration: none !important;
	white-space: normal;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ims-gems-mobile-menu > a:not(.ims-gems-mobile-menu__cta):hover,
.ims-gems-mobile-menu > a:not(.ims-gems-mobile-menu__cta):focus-visible,
.ims-gems-mobile-menu__group-trigger:hover,
.ims-gems-mobile-menu__group-trigger:focus-visible {
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
}

.ims-gems-mobile-menu__group {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 2px 0;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: transparent;
}

.ims-gems-mobile-menu__group-label {
	display: block;
	min-width: 0;
	flex: 1 1 auto;
	line-height: inherit;
}

.ims-gems-mobile-menu__group-chevron {
	display: inline-flex !important;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	margin: 0 0 0 auto !important;
	color: currentColor;
	opacity: 0.62;
	transform: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ims-gems-mobile-menu__group-chevron svg {
	display: block;
	width: 16px;
	height: 16px;
	overflow: visible;
}

.ims-gems-mobile-menu__group.is-open > .ims-gems-mobile-menu__group-trigger {
	background: rgba(255, 255, 255, 0.045);
	color: var(--ims-gems-hf-gold-soft);
}

.ims-gems-mobile-menu__group.is-open > .ims-gems-mobile-menu__group-trigger .ims-gems-mobile-menu__group-chevron {
	opacity: 1;
	transform: rotate(180deg);
}

.ims-gems-mobile-menu__group-panel[hidden] {
	display: none !important;
}

.ims-gems-mobile-menu__group-panel {
	min-width: 0;
	margin: 3px 0 8px 10px;
	padding: 5px 0 6px 12px;
	border-left: 1px solid rgba(211, 173, 93, 0.22);
}

.ims-gems-mobile-menu__group-panel a {
	display: block;
	min-width: 0;
	padding: 9px 10px;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	line-height: 1.45;
	text-decoration: none !important;
	overflow-wrap: anywhere;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.ims-gems-mobile-menu__group-panel a:hover,
.ims-gems-mobile-menu__group-panel a:focus-visible {
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}

/* Mobile menu CTA: hard reset dimensions to prevent Elementor/global button styles. */
.ims-gems-site-header .ims-gems-mobile-menu__cta,
.ims-gems-mobile-menu .ims-gems-mobile-menu__cta {
	display: flex !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 48px !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 9px !important;
	margin: 12px 0 0 !important;
	padding: 12px 16px !important;
	border: 1px solid rgba(211, 173, 93, 0.38) !important;
	border-radius: 14px !important;
	background: linear-gradient(135deg, var(--ims-gems-hf-gold), var(--ims-gems-hf-gold-soft)) !important;
	box-shadow: none !important;
	color: var(--ims-gems-hf-ink) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.11em !important;
	line-height: 1.35 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	text-transform: uppercase !important;
	white-space: normal !important;
	overflow: hidden !important;
	transform: none !important;
}

.ims-gems-mobile-menu__cta:hover,
.ims-gems-mobile-menu__cta:focus-visible {
	background: linear-gradient(135deg, var(--ims-gems-hf-gold-soft), var(--ims-gems-hf-gold)) !important;
	color: var(--ims-gems-hf-ink) !important;
	transform: none !important;
}

.ims-gems-mobile-menu__cta svg {
	display: block !important;
	width: 1em !important;
	height: 1em !important;
	flex: 0 0 auto;
	fill: currentColor !important;
}

/* Position modes */
.ims-gems-header-position-fixed .ims-gems-site-header__bar {
	position: fixed !important;
}

.ims-gems-header-position-absolute .ims-gems-site-header__bar {
	position: absolute !important;
}

.ims-gems-header-position-static .ims-gems-site-header__bar {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	margin-inline: auto;
	transform: none !important;
}

.ims-gems-header-overlay-yes .ims-gems-site-header {
	height: 0;
}

.ims-gems-header-position-static.ims-gems-header-overlay-yes .ims-gems-site-header {
	height: auto;
}

.ims-gems-site-header a:focus-visible,
.ims-gems-site-header [role="button"]:focus-visible,
.ims-gems-mobile-menu a:focus-visible,
.ims-gems-mobile-menu__group-trigger:focus-visible {
	outline: 2px solid var(--ims-gems-hf-gold);
	outline-offset: 2px;
}

/* =========================================================
 * Footer: shared
 * ======================================================= */
.ims-gems-site-footer {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	background: var(--ims-gems-hf-ink);
	color: rgba(255, 255, 255, 0.67);
}

.ims-gems-site-footer__grid {
	display: grid;
	width: min(calc(100% - 32px), var(--ims-gems-hf-shell));
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	margin-inline: auto;
	padding: 72px 0;
}

.ims-gems-site-footer__grid > * {
	min-width: 0;
}

.ims-gems-site-footer .ims-gems-brand {
	max-width: 100%;
}

.ims-gems-site-footer__brand p {
	max-width: 460px;
	margin: 24px 0 0;
	line-height: 1.75;
	overflow-wrap: anywhere;
}

.ims-gems-site-footer h3 {
	margin: 0 0 18px;
	color: var(--ims-gems-hf-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ims-gems-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ims-gems-site-footer li {
	min-width: 0;
	margin: 11px 0;
	line-height: 1.6;
}

.ims-gems-site-footer a {
	min-width: 0;
	color: inherit;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.ims-gems-site-footer a:hover,
.ims-gems-site-footer a:focus-visible {
	color: var(--ims-gems-hf-gold);
}

.ims-gems-site-footer__contact li,
.ims-gems-site-footer__navigation li {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 10px;
}

.ims-gems-footer-contact__icon {
	display: inline-flex;
	flex: 0 0 auto;
	margin-top: 0.2em;
	color: var(--ims-gems-hf-gold);
}

.ims-gems-footer-contact__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ims-gems-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.ims-gems-footer-social a {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.ims-gems-footer-social svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ims-gems-site-footer__bottom {
	display: flex;
	width: min(calc(100% - 32px), var(--ims-gems-hf-shell));
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-inline: auto;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.43);
	font-size: 11px;
	line-height: 1.5;
}

.ims-gems-site-footer__bottom > span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.ims-gems-site-footer a:focus-visible {
	outline: 2px solid var(--ims-gems-hf-gold);
	outline-offset: 3px;
}

/* =========================================================
 * Tablet: 768–1024
 * ======================================================= */
@media (min-width: 768px) and (max-width: 1024px) {
	.ims-gems-site-nav {
		display: none !important;
	}

	.ims-gems-site-header__bar {
		top: 12px;
		width: min(calc(100% - 32px), 920px) !important;
		min-height: 62px;
		gap: 10px !important;
		padding: 8px 9px 8px 14px !important;
		border-radius: 20px !important;
		background: rgba(15, 22, 29, 0.94);
	}

	.ims-gems-site-header .ims-gems-brand {
		max-width: min(48vw, 280px);
		gap: 9px;
	}

	.ims-gems-site-header .ims-gems-brand__mark {
		width: 40px;
		height: 40px;
	}

	.ims-gems-site-header .ims-gems-brand__name {
		overflow: hidden;
		font-size: 21px;
		text-overflow: ellipsis;
	}

	.ims-gems-site-header .ims-gems-brand__image {
		width: auto;
		max-width: min(38vw, 170px);
		max-height: 42px;
	}

	.ims-gems-site-header .ims-gems-site-header__cta {
		min-height: 42px;
		margin-left: auto;
		padding-inline: 15px;
		font-size: 10px;
		letter-spacing: 0.09em;
	}

	.ims-gems-site-header__toggle {
		display: inline-flex !important;
		width: 42px;
		height: 42px;
	}

	.ims-gems-site-footer__grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) !important;
		gap: 44px 52px;
		padding: 64px 0;
	}

	.ims-gems-site-footer__brand {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.ims-gems-site-footer__contact {
		grid-column: 2;
		grid-row: 1;
	}

	.ims-gems-site-footer__navigation {
		grid-column: 2;
		grid-row: 2;
	}

	.ims-gems-site-footer__bottom {
		gap: 18px;
	}
}

/* =========================================================
 * Mobile: <=767
 * ======================================================= */
@media (max-width: 767px) {
	.ims-gems-site-nav {
		display: none !important;
	}

	.ims-gems-site-header__bar {
		top: 8px;
		width: calc(100% - 20px) !important;
		min-height: 56px;
		gap: 8px !important;
		padding: 7px 7px 7px 10px !important;
		border-radius: 17px !important;
		background: rgba(15, 22, 29, 0.96);
		box-shadow: 0 16px 44px -26px rgba(0, 0, 0, 0.82);
	}

	.ims-gems-site-header .ims-gems-brand {
		max-width: calc(100% - 50px);
		gap: 8px;
	}

	.ims-gems-site-header .ims-gems-brand__mark {
		width: 36px;
		height: 36px;
	}

	.ims-gems-site-header .ims-gems-brand__name {
		overflow: hidden;
		font-size: 19px;
		text-overflow: ellipsis;
	}

	.ims-gems-site-header .ims-gems-brand__image {
		width: auto;
		max-width: min(42vw, 138px);
		max-height: 36px;
	}

	.ims-gems-site-header .ims-gems-site-header__cta {
		display: none !important;
	}

	.ims-gems-site-header__toggle {
		display: inline-flex !important;
		width: 40px;
		height: 40px;
		margin-left: auto;
	}

	.ims-gems-site-header__toggle svg {
		width: 17px;
		height: 17px;
	}

	.ims-gems-mobile-menu {
		padding: 9px;
		border-radius: 17px;
	}

	.ims-gems-mobile-menu > a:not(.ims-gems-mobile-menu__cta),
	.ims-gems-mobile-menu__group-trigger {
		min-height: 44px;
		padding: 10px 11px;
		border-radius: 10px;
		font-size: 13px;
	}

	.ims-gems-mobile-menu__group-panel {
		margin-left: 8px;
		padding-left: 10px;
	}

	.ims-gems-mobile-menu__group-panel a {
		padding: 8px 9px;
		font-size: 12.5px;
	}

	.ims-gems-site-header .ims-gems-mobile-menu__cta,
	.ims-gems-mobile-menu .ims-gems-mobile-menu__cta {
		min-height: 46px !important;
		margin-top: 9px !important;
		padding: 11px 14px !important;
		border-radius: 12px !important;
		font-size: 10px !important;
		letter-spacing: 0.1em !important;
	}

	.ims-gems-site-footer__grid {
		width: calc(100% - 32px);
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 34px;
		padding: 52px 0;
	}

	.ims-gems-site-footer__brand,
	.ims-gems-site-footer__contact,
	.ims-gems-site-footer__navigation {
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.ims-gems-site-footer .ims-gems-brand {
		max-width: 100%;
	}

	.ims-gems-site-footer .ims-gems-brand__mark {
		width: 40px;
		height: 40px;
	}

	.ims-gems-site-footer .ims-gems-brand__name {
		font-size: 20px;
	}

	.ims-gems-site-footer__brand p {
		max-width: none;
		margin-top: 20px;
		font-size: 14px;
		line-height: 1.8;
	}

	.ims-gems-site-footer h3 {
		margin-bottom: 14px;
	}

	.ims-gems-site-footer li {
		margin: 9px 0;
	}

	.ims-gems-footer-social {
		margin-top: 22px;
	}

	.ims-gems-site-footer__bottom {
		width: calc(100% - 32px);
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		padding: 18px 0 22px;
		font-size: 10.5px;
	}
}

@media (min-width: 1025px) {
	.ims-gems-mobile-menu {
		display: none !important;
	}
}

@media (max-width: 360px) {
	.ims-gems-site-header__bar {
		width: calc(100% - 16px) !important;
	}

	.ims-gems-site-header .ims-gems-brand__mark {
		width: 34px;
		height: 34px;
	}

	.ims-gems-site-header .ims-gems-brand__name {
		font-size: 18px;
	}

	.ims-gems-site-header__toggle {
		width: 38px;
		height: 38px;
	}

	.ims-gems-mobile-menu > a:not(.ims-gems-mobile-menu__cta),
	.ims-gems-mobile-menu__group-trigger {
		font-size: 12.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ims-gems-site-header *,
	.ims-gems-site-footer * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
