/**
 * NLM Mega Menu frontend styles.
 */

:root {
	--nlm-accent: #3ec8ff;
}

.nlm-mega-menu-header {
	--nlm-header-bg: #000b1e;
	--nlm-header-accent: var(--nlm-accent);
	--nlm-header-text: #fff;
}

/* Beat theme `#masthead.header-fixed { z-index: 9 }` so panels stay above footer (z-index: 20). */
#masthead.nlm-mega-menu-header,
#masthead.nlm-mega-menu-header.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	animation: none;
	background-color: var(--nlm-header-bg);
}

body.nlm-mega-menu-active #page {
	padding-top: var(--nlm-header-height, 5.5rem);
}

@media (min-width: 992px) {
	body.nlm-mega-menu-active #page {
		padding-top: var(--nlm-header-height, 8.75rem);
	}
}

.nlm-mega-menu-header .nlm-header {
	background: var(--nlm-header-bg);
	color: var(--nlm-header-text);
}

.nlm-mega-menu-header .nlm-header__top {
	padding: 1.1rem 0;
}

.nlm-mega-menu-header .nlm-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(0.75rem, 1.2vw, 1.5rem);
}

.nlm-mega-menu-header .nlm-header__top-inner::after {
	display: none;
}

.nlm-mega-menu-header .nlm-header__brand {
	flex: 0 0 auto;
}

.nlm-mega-menu-header .nlm-header__logo {
	display: inline-flex;
	align-items: center;
	color: var(--nlm-header-text);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.nlm-mega-menu-header .nlm-header__logo:hover,
.nlm-mega-menu-header .nlm-header__logo:focus {
	opacity: 0.88;
	color: var(--nlm-header-text);
}

.nlm-mega-menu-header .nlm-header__logo--text {
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nlm-mega-menu-header .nlm-header__logo-svg,
.nlm-mega-menu-header .nlm-header__logo-img {
	display: block;
	width: auto;
	height: clamp(44px, 4.2vw, 68px);
	max-width: min(390px, 28vw);
	object-fit: contain;
}

.nlm-mega-menu-header .nlm-header__contact {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(0.65rem, 1.1vw, 1.75rem);
	margin-left: auto;
	min-width: 0;
}

.nlm-mega-menu-header .nlm-header__contact-item {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0.45rem;
	color: var(--nlm-header-text);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: clamp(0.72rem, 0.85vw, 0.95rem);
	font-weight: 400;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.nlm-mega-menu-header .nlm-header__phone:hover,
.nlm-mega-menu-header .nlm-header__phone:focus,
.nlm-mega-menu-header a.nlm-header__address:hover,
.nlm-mega-menu-header a.nlm-header__address:focus {
	color: var(--nlm-header-accent);
}

.nlm-mega-menu-header .nlm-header__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--nlm-header-accent);
}

.nlm-mega-menu-header .nlm-header__contact-icon img,
.nlm-mega-menu-header .nlm-header__icon-svg,
.nlm-mega-menu-header .nlm-header__phone-icon-svg,
.nlm-mega-menu-header .nlm-header__icon-mask {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.nlm-mega-menu-header .nlm-header__icon-mask {
	background-color: currentColor;
	mask-image: var(--nlm-icon-mask);
	mask-mode: alpha;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: var(--nlm-icon-mask);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.nlm-mega-menu-header .nlm-header__phone-icon-svg,
.nlm-mega-menu-header .nlm-header__phone-icon-svg *,
.nlm-mega-menu-header .nlm-header__icon-svg--fill,
.nlm-mega-menu-header .nlm-header__icon-svg--fill * {
	fill: currentColor;
	stroke: none;
}

.nlm-mega-menu-header .nlm-header__icon-svg--stroke,
.nlm-mega-menu-header .nlm-header__icon-svg--stroke * {
	fill: none;
	stroke: currentColor;
}

.nlm-mega-menu-header .nlm-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	flex-shrink: 0;
}

.nlm-mega-menu-header .nlm-header__cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem clamp(0.85rem, 1.1vw, 1.35rem);
	border: 1px solid var(--nlm-header-accent);
	border-radius: 999px;
	background: transparent;
	color: var(--nlm-header-text);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: clamp(0.64rem, 0.7vw, 0.72rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nlm-mega-menu-header .nlm-header__cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(62, 200, 255, 0.18) 45%,
		transparent 70%
	);
	transform: translateX(-120%);
	transition: transform 0.55s ease;
}

.nlm-mega-menu-header .nlm-header__cta-label {
	position: relative;
	z-index: 1;
}

.nlm-mega-menu-header .nlm-header__cta:hover,
.nlm-mega-menu-header .nlm-header__cta:focus {
	border-color: #7ad8ff;
	background: rgba(62, 200, 255, 0.12);
	box-shadow: 0 0 18px rgba(62, 200, 255, 0.35);
	color: var(--nlm-header-text);
	transform: translateY(-2px);
}

.nlm-mega-menu-header .nlm-header__cta:hover::before,
.nlm-mega-menu-header .nlm-header__cta:focus::before {
	transform: translateX(120%);
}

.nlm-mega-menu-header .nlm-header__nav {
	position: relative;
	z-index: 20;
	padding: 0 0 1rem;
}

.nlm-mega-menu-header .nlm-header__nav-inner {
	display: block;
}

.nlm-mega-menu-header .nlm-header__nav-inner::after {
	display: none;
}

.nlm-mega-menu-header .nlm-mega-menu__nav {
	position: static;
	flex: none;
	width: 100%;
}

/* Beat Twenty Seventeen `.js .main-navigation ul { display: block }` (0,2,1). */
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(0.5rem, 1.05vw, 2.75rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li {
	display: block;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.65rem clamp(0.15rem, 0.45vw, 0.65rem);
	color: var(--nlm-header-text);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: clamp(0.62rem, 0.78vw, 0.82rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a::after {
	content: "";
	position: absolute;
	left: clamp(0.15rem, 0.45vw, 0.65rem);
	right: clamp(0.15rem, 0.45vw, 0.65rem);
	bottom: 0.35rem;
	height: 2px;
	background: var(--nlm-header-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
}

.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a:hover,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a:focus,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li.current-menu-item > a,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li.current-menu-ancestor > a,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li.nlm-mega-menu-item.is-open > a {
	color: var(--nlm-header-text);
}

.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a:hover::after,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a:focus::after,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li.current-menu-item > a::after,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li.current-menu-ancestor > a::after,
.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li.nlm-mega-menu-item.is-open > a::after {
	transform: scaleX(1);
}

/* Restore original nav scale once there is room (mid-widths stay compact to avoid wraps). */
@media (min-width: 1604px) {
	.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list {
		gap: clamp(1.25rem, 2.5vw, 2.75rem);
	}

	.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a {
		gap: 0.35rem;
		padding: 0.65rem clamp(0.35rem, 0.6vw, 0.65rem);
		font-size: clamp(0.68rem, 0.85vw, 0.82rem);
		letter-spacing: 0.08em;
	}

	.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a::after {
		left: clamp(0.35rem, 0.6vw, 0.65rem);
		right: clamp(0.35rem, 0.6vw, 0.65rem);
	}
}

/* Keep layout stable if the theme toggles .header-fixed on scroll. */
#masthead.header-fixed.nlm-mega-menu-header {
	animation: none;
}

#masthead.nlm-mega-menu-header .nlm-header__top-inner.wrap,
#masthead.nlm-mega-menu-header .nlm-header__nav-inner.wrap,
#masthead.header-fixed.nlm-mega-menu-header .nlm-header__top-inner.wrap,
#masthead.header-fixed.nlm-mega-menu-header .nlm-header__nav-inner.wrap {
	/* Cap side padding so mid-desktop widths keep a single-row header/nav.
	   Theme --wrap grows to ~210px and was forcing wraps above the 1192px snap. */
	padding-left: min(var(--wrap), 110px);
	padding-right: min(var(--wrap), 110px);
}

/* Theme also snaps .wrap padding to 15px here — match so header stays aligned. */
@media (max-width: 1192px) {
	#masthead.nlm-mega-menu-header .nlm-header__top-inner.wrap,
	#masthead.nlm-mega-menu-header .nlm-header__nav-inner.wrap,
	#masthead.header-fixed.nlm-mega-menu-header .nlm-header__top-inner.wrap,
	#masthead.header-fixed.nlm-mega-menu-header .nlm-header__nav-inner.wrap {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 992px) {
	#masthead.header-fixed.nlm-mega-menu-header .nlm-header__top {
		padding: 1.1rem 0;
	}

	#masthead.header-fixed.nlm-mega-menu-header .nlm-header__contact {
		display: flex;
	}
}

.nlm-mega-menu-header .nlm-mega-menu {
	position: relative;
	z-index: 20;
}

.nlm-mega-menu__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	position: static;
}

.nlm-mega-menu__nav {
	position: static;
	flex: 1 1 auto;
}

.nlm-mega-menu__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlm-mega-menu-header .main-navigation .nlm-mega-menu__list > li {
	position: static;
	border-bottom: 0;
}

.nlm-mega-menu__list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.nlm-mega-menu-header .main-navigation .nlm-mega-menu-item::before,
.nlm-mega-menu-header .main-navigation .nlm-mega-menu-item::after,
.nlm-mega-menu-header .main-navigation li.menu-item-has-mega::before,
.nlm-mega-menu-header .main-navigation li.menu-item-has-mega::after {
	display: none !important;
	content: none !important;
}

.nlm-mega-menu-header .nlm-mega-menu__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 0.2rem;
	color: var(--nlm-header-accent);
	line-height: 0;
}

.nlm-mega-menu-header .nlm-mega-menu__chevron-icon {
	display: block;
	width: 11px;
	height: 8px;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nlm-mega-menu-header .nlm-mega-menu-item.is-open > a .nlm-mega-menu__chevron-icon,
.nlm-mega-menu-header .nlm-mega-menu-item:focus-within > a .nlm-mega-menu__chevron-icon,
.nlm-mega-menu-header .nlm-mega-menu-item:hover > a .nlm-mega-menu__chevron-icon {
	transform: rotate(180deg);
}

.nlm-mega-menu__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
}

.nlm-mega-menu__chevron-icon {
	display: block;
	width: 11px;
	height: 8px;
}

.nlm-mega-menu__list .sub-menu {
	display: none;
}

.nlm-mega-menu__panels {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 120;
	padding-top: 12px;
	pointer-events: none;
}

.nlm-mega-menu__panels-inner {
	position: relative;
	display: block;
	max-width: 100%;
	margin: 0 auto;
	padding-left: var(--wrap, 130px);
	padding-right: var(--wrap, 130px);
	box-sizing: border-box;
}

.nlm-mega-panel {
	display: none;
	width: 100%;
	pointer-events: auto;
}

.nlm-mega-panel.is-active {
	display: block;
}

.nlm-mega-panel__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: 1.75rem;
	align-items: stretch;
	max-height: var(--nlm-mega-panel-max-height, calc(100dvh - var(--nlm-header-height, 152px) - 24px));
	padding: 1.75rem;
	background: #fff;
	border-radius: 18px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	box-shadow: 0 24px 60px rgba(24, 40, 65, 0.18);
}

.nlm-mega-panel__left {
	padding: 0.25rem 0;
	overflow: visible;
}

.nlm-mega-menu-header .nlm-mega-panel__heading,
.nlm-mega-menu-header .nlm-mega-panel__overlay-heading,
.nlm-mega-menu-header .nlm-mega-panel__location-card-heading {
	padding: 0;
	clear: none;
}

.nlm-mega-panel__eyebrow,
.nlm-mega-panel__overlay-eyebrow {
	margin: 0 0 0.85rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel__heading {
	margin: 0 0 1rem;
	font-family: var(--Raleway, Raleway, serif);
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.25;
	font-weight: 500;
	color: var(--dark-blue, #182841);
}

.nlm-mega-panel__description {
	margin: 0 0 1.25rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.95rem;
	line-height: 1.6;
	color: #5d6778;
}

.nlm-mega-panel__divider,
.nlm-mega-panel__overlay-divider {
	width: 72px;
	height: 2px;
	margin: 0 0 1.5rem;
	background: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlm-mega-panel__link-item + .nlm-mega-panel__link-item {
	border-top: 1px solid rgba(24, 40, 65, 0.08);
}

.nlm-mega-panel__link {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 16px;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	color: var(--dark-blue, #182841);
	text-decoration: none;
	text-transform: none;
	transition: color 0.2s ease;
}

.nlm-mega-menu-header .main-navigation .nlm-mega-panel__link {
	display: grid;
	padding: 1rem 0;
	color: var(--dark-blue, #182841);
	text-transform: none;
}

.nlm-mega-menu-header .main-navigation .nlm-mega-panel__link::after {
	display: none;
}

.nlm-mega-panel__link-icon {
	grid-column: 1;
}

.nlm-mega-panel__link-label {
	grid-column: 2;
	min-width: 0;
	white-space: normal;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.98rem;
	font-weight: 500;
}

.nlm-mega-panel__link-chevron {
	grid-column: 3;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
	justify-self: end;
}

.nlm-mega-panel__link:hover,
.nlm-mega-panel__link:focus {
	color: var(--nlm-accent, #3ec8ff);
	background: transparent;
}

.nlm-mega-panel__link-icon img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.nlm-mega-panel__links--no-icons .nlm-mega-panel__link {
	grid-template-columns: minmax(0, 1fr) 16px;
}

.nlm-mega-panel__links--no-icons .nlm-mega-panel__link-label {
	grid-column: 1;
}

.nlm-mega-panel__links--no-icons .nlm-mega-panel__link-chevron {
	grid-column: 2;
}

.nlm-mega-panel__right {
	min-height: 0;
}

.nlm-mega-panel__media {
	position: relative;
	height: 100%;
	min-height: 320px;
	border-radius: 14px;
	overflow: hidden;
	--zc-feature-overlay-grad-c1: rgba(24, 40, 65, 0.98);
	--zc-feature-overlay-grad-c2: rgba(24, 40, 65, 0.66);
	--zc-feature-overlay-grad-stop: 62%;
	--zc-feature-overlay-fade-end: 100%;
}

.nlm-mega-panel__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		var(--zc-feature-overlay-grad-c1) 0%,
		var(--zc-feature-overlay-grad-c2) var(--zc-feature-overlay-grad-stop),
		rgba(255, 255, 255, 0) var(--zc-feature-overlay-fade-end)
	);
	pointer-events: none;
}

.nlm-mega-panel__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.nlm-mega-panel__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 52%;
	padding: 1rem 2rem 2.25rem;
	background: transparent;
	color: #fff;
}

.nlm-mega-panel__overlay-icon {
	--nlm-overlay-accent: var(--nlm-accent, #3ec8ff);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	margin-bottom: 1rem;
	border: 1px solid var(--nlm-overlay-accent);
	border-radius: 50%;
	background: transparent;
	color: var(--nlm-overlay-accent);
}

.nlm-mega-panel__overlay-icon svg,
.nlm-mega-panel__overlay-icon-svg {
	display: block;
	width: var(--nlm-overlay-icon-size, 54px);
	height: var(--nlm-overlay-icon-size, 54px);
}

.nlm-mega-panel__overlay-icon svg *,
.nlm-mega-panel__overlay-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mega-panel__overlay-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mega-panel__overlay-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mega-panel__overlay-icon img {
	display: block;
	width: var(--nlm-overlay-icon-size, 54px);
	height: var(--nlm-overlay-icon-size, 54px);
	object-fit: contain;
}

.nlm-mega-panel__overlay-heading {
	margin: 0 0 1rem;
	font-family: var(--Raleway, Raleway, serif);
	font-size: 1.85rem;
	line-height: 1.3;
	font-weight: 500;
	color: #fff;
}

.nlm-mega-panel__overlay-description {
	margin: 0 0 1.5rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

.nlm-mega-panel__overlay-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	align-self: flex-start;
	padding: 0.85rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	color: #fff;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nlm-mega-panel__overlay-cta-label {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	white-space: nowrap;
	padding-top: 1px;
}

.nlm-mega-panel__overlay-cta:hover,
.nlm-mega-panel__overlay-cta:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--nlm-accent, #3ec8ff);
	color: #fff;
}

.nlm-mega-panel__overlay-cta-chevron {
	flex-shrink: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.nlm-mega-menu-header.is-mega-open .nlm-mega-menu__panels {
	pointer-events: auto;
}

@media (min-width: 992px) and (max-width: 1100px) {
	.nlm-mega-panel__overlay {
		max-width: 96%;
	}
}

@media (min-width: 992px) {
	.nlm-mega-menu-header .nlm-mega-menu__toggle {
		display: none;
	}

	.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list {
		display: flex;
	}

	.nlm-mobile-menu {
		display: none !important;
	}
}

@media (max-width: 991px) {
	#masthead.nlm-mega-menu-header {
		background-color: var(--nlm-header-bg);
	}

	.nlm-mega-menu-header .nlm-header__nav {
		display: none !important;
	}

	.nlm-mega-menu-header .nlm-header__top {
		padding: 0.9rem 0;
	}

	#masthead.header-fixed.nlm-mega-menu-header .nlm-header__top {
		padding: 0.9rem 0;
	}

	.nlm-mega-menu-header .nlm-header__top-inner {
		flex-wrap: nowrap;
		align-items: center;
		gap: 1rem;
	}

	.nlm-mega-menu-header .nlm-header__brand {
		display: flex;
		align-items: center;
		flex: 1 1 auto;
		min-width: 0;
		padding-right: 0.25rem;
	}

	.nlm-mega-menu-header .nlm-header__logo {
		line-height: 0;
	}

	.nlm-mega-menu-header .nlm-header__logo-svg,
	.nlm-mega-menu-header .nlm-header__logo-img {
		height: clamp(52px, 14vw, 66px);
		max-width: min(260px, 70vw);
	}

	.nlm-mega-menu-header .nlm-header__contact {
		display: none;
	}

	.nlm-mega-menu-header .nlm-header__cta {
		display: none;
	}

	.nlm-mega-menu-header .nlm-header__actions {
		display: flex;
		align-items: center;
		align-self: center;
		margin-left: auto;
		flex-shrink: 0;
		padding-left: 0.35rem;
	}

	.nlm-mega-menu__inner {
		flex-wrap: nowrap;
	}

	.nlm-mega-menu-header .main-navigation {
		position: static;
	}

	.nlm-mega-menu-header .main-navigation li {
		border-bottom: 0;
		padding: 0;
	}

	.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list {
		display: none !important;
	}

	.nlm-mega-menu-header .nlm-mega-menu__panels {
		display: none !important;
	}

	.nlm-mega-menu-header .nlm-mega-menu__nav {
		position: static;
	}

	.nlm-mega-menu-header .nlm-mega-menu__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
		padding: 7px;
		margin: 0;
		border: 0;
		background: transparent;
		line-height: 0;
		cursor: pointer;
	}

	.nlm-mega-menu-header .nlm-mega-menu__toggle-icon {
		display: block;
		width: 30px;
		height: 26px;
		overflow: visible;
	}

	.nlm-mega-menu-header .nlm-mega-menu__toggle-bar {
		stroke: #3ec8ff73;
		stroke-width: 2.5;
		stroke-linecap: round;
		transform-box: fill-box;
		transform-origin: center;
		transition: transform 0.3s ease, opacity 0.3s ease;
	}

	.nlm-mega-menu-header.is-mobile-menu-open .nlm-mega-menu__toggle-bar--top {
		transform: translateY(7px) rotate(45deg);
	}

	.nlm-mega-menu-header.is-mobile-menu-open .nlm-mega-menu__toggle-bar--mid {
		opacity: 0;
	}

	.nlm-mega-menu-header.is-mobile-menu-open .nlm-mega-menu__toggle-bar--bot {
		transform: translateY(-7px) rotate(-45deg);
	}
}

body.nlm-mobile-menu-open {
	overflow: hidden;
}

.nlm-mobile-menu {
	--nlm-mobile-drawer-width: 98%;
	position: fixed;
	inset: 0;
	z-index: 99999;
	visibility: hidden;
	pointer-events: none;
	box-sizing: border-box;
}

.nlm-mobile-menu *,
.nlm-mobile-menu *::before,
.nlm-mobile-menu *::after {
	box-sizing: border-box;
}

.nlm-mobile-menu ul,
.nlm-mobile-menu ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlm-mobile-menu li {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.nlm-mobile-menu li::before,
.nlm-mobile-menu li::after {
	display: none !important;
	content: none !important;
}

.nlm-mobile-menu a,
.nlm-mobile-menu button {
	font-family: var(--Montserrat, Montserrat, sans-serif);
	line-height: normal;
	text-decoration: none;
	text-transform: none;
	box-shadow: none;
}

.nlm-mobile-menu a::after,
.nlm-mobile-menu a::before,
.nlm-mobile-menu button::after,
.nlm-mobile-menu button::before {
	display: none !important;
	content: none !important;
}

.nlm-mobile-menu h3,
.nlm-mobile-menu h4 {
	padding: 0;
	clear: none;
	margin-left: 0;
	margin-right: 0;
}

.nlm-mobile-menu.is-open {
	visibility: visible;
	pointer-events: auto;
}

.nlm-mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.nlm-mobile-menu.is-open .nlm-mobile-menu__overlay {
	opacity: 1;
}

.nlm-mobile-menu__drawer {
	position: absolute;
	top: 1vh;
	bottom: 1vh;
	left: 50%;
	width: var(--nlm-mobile-drawer-width);
	max-width: var(--nlm-mobile-drawer-width);
	margin: 0;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(24, 40, 65, 0.28);
	transform: translate(-50%, 0) translateX(-105%);
	transition: transform 0.35s ease;
}

.nlm-mobile-menu__drawer--from-right {
	transform: translate(-50%, 0) translateX(105%);
}

.nlm-mobile-menu.is-open .nlm-mobile-menu__drawer--from-left,
.nlm-mobile-menu.is-open .nlm-mobile-menu__drawer--from-right {
	transform: translate(-50%, 0) translateX(0);
}

.nlm-mobile-menu__header {
	position: relative;
	flex-shrink: 0;
	padding: 1.5rem 1.25rem 1.25rem;
	background: #f2f2f2;
	text-align: center;
}

.nlm-mobile-menu__close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #5d6778;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.nlm-mobile-menu__logo img {
	display: block;
	max-width: 180px;
	max-height: 72px;
	width: auto;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.nlm-mobile-menu__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 0.85rem;
	color: var(--dark-blue, #182841);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: none;
}

.nlm-mobile-menu__phone-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.nlm-mobile-menu__phone-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 55%;
	width: 5px;
	height: 5px;
	border-left: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translate(-35%, -50%) rotate(-45deg);
}

.nlm-mobile-menu__phone-icon--custom {
	width: auto;
	height: auto;
	min-width: 16px;
	min-height: 16px;
	border: 0;
	border-radius: 0;
	position: static;
	color: inherit;
}

.nlm-mobile-menu__phone-icon--custom::after {
	display: none !important;
	content: none !important;
}

.nlm-mobile-menu__phone-icon--custom img,
.nlm-mobile-menu__phone-icon--custom .nlm-mobile-menu__phone-icon-svg {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.nlm-mobile-menu__phone-icon--custom .nlm-mobile-menu__phone-icon-svg,
.nlm-mobile-menu__phone-icon--custom .nlm-mobile-menu__phone-icon-svg *,
.nlm-mobile-menu__phone-icon--custom .nlm-mega-panel__overlay-icon-svg,
.nlm-mobile-menu__phone-icon--custom .nlm-mega-panel__overlay-icon-svg * {
	fill: currentColor;
	stroke: none;
}

.nlm-mobile-menu__viewport {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.nlm-mobile-menu__track {
	display: flex;
	width: 100%;
	height: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.nlm-mobile-menu__track.is-sub-open {
	transform: translate3d(-100%, 0, 0);
}

.nlm-mobile-menu__track.is-sliding {
	pointer-events: none;
}

@keyframes nlm-mobile-slide-item-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item {
	animation: nlm-mobile-slide-item-in 0.42s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item:nth-child(1) {
	animation-delay: 0.04s;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item:nth-child(2) {
	animation-delay: 0.08s;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item:nth-child(3) {
	animation-delay: 0.12s;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item:nth-child(4) {
	animation-delay: 0.16s;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item:nth-child(5) {
	animation-delay: 0.2s;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item:nth-child(6) {
	animation-delay: 0.24s;
}

.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__footer {
	animation: nlm-mobile-slide-item-in 0.42s cubic-bezier(0.4, 0, 0.2, 1) 0.28s both;
}

.nlm-mobile-menu__view {
	display: flex;
	flex-direction: column;
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.nlm-mobile-menu__view--sub {
	position: relative;
	background: #fff;
	padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.nlm-mobile-menu__view--primary {
	padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.nlm-mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlm-mobile-menu__item + .nlm-mobile-menu__item {
	border-top: 1px solid rgba(24, 40, 65, 0.08);
}

.nlm-mobile-menu__row {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 16px;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border: 0;
	background: #fff;
	color: var(--dark-blue, #182841);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.98rem;
	font-weight: 500;
	text-align: left;
	text-decoration: none;
	text-transform: none;
	cursor: pointer;
	transition: background-color 0.22s ease, transform 0.22s ease;
}

.nlm-mobile-menu__row-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	min-width: 28px;
}

.nlm-mobile-menu__row-label {
	grid-column: 2;
	min-width: 0;
	white-space: normal;
	word-break: normal;
	overflow-wrap: anywhere;
}

.nlm-mobile-menu__row-chevron {
	grid-column: 3;
}

.nlm-mobile-menu__row-icon img,
.nlm-mobile-menu__row-icon svg {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.nlm-mobile-menu__row-icon svg *,
.nlm-mobile-menu__row-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mobile-menu__row-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mobile-menu__row-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mobile-menu__row-chevron {
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
	justify-self: end;
}

.nlm-mobile-menu__row:hover,
.nlm-mobile-menu__row:focus {
	color: var(--dark-blue, #182841);
	background: rgba(24, 40, 65, 0.04);
	transform: translateX(3px);
}

.nlm-mobile-menu__footer {
	flex-shrink: 0;
	margin-top: auto;
	padding: 1.25rem 1.25rem max(1rem, env(safe-area-inset-bottom, 0px));
}

.nlm-mobile-menu__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: 100%;
	padding: 0.95rem 1.25rem;
	border-radius: 999px;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.nlm-mobile-menu__cta:hover,
.nlm-mobile-menu__cta:focus {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(24, 40, 65, 0.14);
}

.nlm-mobile-menu__cta + .nlm-mobile-menu__cta {
	margin-top: 0.75rem;
}

.nlm-mobile-menu__cta--quote {
	background: #d9ecfb;
	color: var(--dark-blue, #182841);
}

.nlm-mobile-menu__cta--emergency {
	background: #f04b4b;
	color: #fff;
}

.nlm-mobile-menu__cta-chevron {
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.nlm-mobile-menu__tagline {
	margin: 1rem 0 0;
	text-align: center;
	color: #8a93a3;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.78rem;
}

.nlm-mobile-sub {
	display: none;
	flex-direction: column;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
}

.nlm-mobile-sub.is-active,
.nlm-mobile-sub.is-active[hidden] {
	display: flex !important;
}

.nlm-mobile-sub__back {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.95rem 1.25rem;
	border: 0;
	border-bottom: 1px solid rgba(24, 40, 65, 0.08);
	background: #fff;
	color: var(--dark-blue, #182841);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.95rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.22s ease;
}

.nlm-mobile-sub__back:hover,
.nlm-mobile-sub__back:focus {
	background: #f2f2f2;
}

.nlm-mobile-sub__back-chevron {
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.nlm-mobile-sub__intro {
	flex-shrink: 0;
	padding: 1.25rem 1.25rem 0;
}

.nlm-mobile-sub__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub__heading {
	margin: 0 0 1rem;
	padding: 0;
	font-family: var(--Raleway, Raleway, serif);
	font-size: clamp(1.35rem, 4vw, 1.75rem);
	line-height: 1.25;
	font-weight: 500;
	color: var(--dark-blue, #182841);
}

.nlm-mobile-sub__divider {
	width: 72px;
	height: 2px;
	margin: 0 0 0.5rem;
	background: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub__links {
	flex-shrink: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nlm-mobile-sub__link-item + .nlm-mobile-sub__link-item {
	border-top: 1px solid rgba(24, 40, 65, 0.08);
}

.nlm-mobile-sub__link {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 16px;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	color: var(--dark-blue, #182841);
	text-decoration: none;
	text-transform: none;
	transition: background-color 0.22s ease, transform 0.22s ease;
}

.nlm-mobile-sub__link-icon {
	grid-column: 1;
	min-width: 28px;
}

.nlm-mobile-sub__link-label {
	grid-column: 2;
	min-width: 0;
	white-space: normal;
	word-break: normal;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.98rem;
	font-weight: 500;
}

.nlm-mobile-sub__link-chevron {
	grid-column: 3;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
	justify-self: end;
}

.nlm-mobile-sub__link-icon img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.nlm-mobile-sub__links--no-icons .nlm-mobile-sub__link {
	grid-template-columns: minmax(0, 1fr) 16px;
}

.nlm-mobile-sub__links--no-icons .nlm-mobile-sub__link-label {
	grid-column: 1;
}

.nlm-mobile-sub__links--no-icons .nlm-mobile-sub__link-chevron {
	grid-column: 2;
}

.nlm-mobile-sub__link:hover,
.nlm-mobile-sub__link:focus {
	color: var(--dark-blue, #182841);
	background: rgba(24, 40, 65, 0.04);
	transform: translateX(3px);
}

.nlm-mobile-sub__cta-card {
	position: relative;
	flex-shrink: 0;
	margin: 1.25rem;
	margin-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
	border-radius: 14px;
	overflow: hidden;
}

.nlm-mobile-sub__cta-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nlm-mobile-sub__cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(24, 40, 65, 0.92) 0%,
		rgba(24, 40, 65, 0.78) 100%
	);
}

.nlm-mobile-sub__cta-overlay {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 280px;
	padding: 1.5rem;
	padding-bottom: 1.75rem;
	color: #fff;
}

.nlm-mobile-sub__cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin-bottom: 1rem;
	border: 1px solid var(--nlm-accent, #3ec8ff);
	border-radius: 50%;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub__cta-icon svg,
.nlm-mobile-sub__cta-icon img {
	display: block;
	width: var(--nlm-overlay-icon-size, 54px);
	height: var(--nlm-overlay-icon-size, 54px);
	object-fit: contain;
}

.nlm-mobile-sub__cta-icon .nlm-mega-panel__overlay-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mobile-sub__cta-eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub__cta-heading {
	margin: 0 0 1rem;
	padding: 0;
	font-family: var(--Raleway, Raleway, serif);
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 500;
	color: #fff;
}

.nlm-mobile-sub__cta-divider {
	width: 72px;
	height: 2px;
	margin: 0 0 1rem;
	background: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub__cta-description {
	margin: 0 0 1.25rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

.nlm-mobile-sub__cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	color: #fff;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.nlm-mobile-sub__cta-button:hover,
.nlm-mobile-sub__cta-button:focus {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.nlm-mobile-sub__cta-button-chevron {
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

/* Split feature (with descriptions) template */
.nlm-mega-panel--described .nlm-mega-panel__link--described {
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: start;
}

.nlm-mega-panel--described .nlm-mega-panel__links--no-icons .nlm-mega-panel__link--described {
	grid-template-columns: minmax(0, 1fr);
}

.nlm-mega-panel--described .nlm-mega-panel__link-content {
	grid-column: 2;
	min-width: 0;
}

.nlm-mega-panel--described .nlm-mega-panel__links--no-icons .nlm-mega-panel__link-content {
	grid-column: 1;
}

.nlm-mega-panel--described .nlm-mega-panel__link-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.nlm-mega-panel--described .nlm-mega-panel__link--described .nlm-mega-panel__link-label {
	grid-column: auto;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nlm-mega-panel--described .nlm-mega-panel__link--described .nlm-mega-panel__link-chevron {
	grid-column: auto;
	flex-shrink: 0;
	justify-self: auto;
}

.nlm-mega-panel--described .nlm-mega-panel__link-description {
	display: block;
	margin-top: 0.45rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.85rem;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: normal;
	text-transform: none;
	color: #5d6778;
}

.nlm-mega-panel--described .nlm-mega-panel__media--card::before {
	display: none;
}

.nlm-mega-panel--described .nlm-mega-panel__overlay-card {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(70%, 420px);
	padding: 1.25rem 1.5rem 1.5rem;
	border-radius: 0 14px 0 14px;
	background: rgba(0, 11, 30, 0.92);
	color: #fff;
}

.nlm-mega-panel--described .nlm-mega-panel__overlay-heading {
	margin: 0 0 0.75rem;
	font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.nlm-mega-panel--described .nlm-mega-panel__overlay-description {
	margin: 0 0 1.25rem;
	font-size: 0.88rem;
}

/* Mobile sub-menu (with descriptions) template */
.nlm-mobile-sub--described .nlm-mobile-sub__link--described {
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: start;
}

.nlm-mobile-sub--described .nlm-mobile-sub__links--no-icons .nlm-mobile-sub__link--described {
	grid-template-columns: minmax(0, 1fr);
}

.nlm-mobile-sub--described .nlm-mobile-sub__link-content {
	grid-column: 2;
	min-width: 0;
}

.nlm-mobile-sub--described .nlm-mobile-sub__links--no-icons .nlm-mobile-sub__link-content {
	grid-column: 1;
}

.nlm-mobile-sub--described .nlm-mobile-sub__link-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.nlm-mobile-sub--described .nlm-mobile-sub__link--described .nlm-mobile-sub__link-label {
	grid-column: auto;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nlm-mobile-sub--described .nlm-mobile-sub__link--described .nlm-mobile-sub__link-chevron {
	grid-column: auto;
	flex-shrink: 0;
	justify-self: auto;
}

.nlm-mobile-sub--described .nlm-mobile-sub__link-description {
	display: block;
	margin-top: 0.45rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.85rem;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: normal;
	text-transform: none;
	color: #5d6778;
}

.nlm-mobile-sub--described .nlm-mobile-sub__cta-card--bottom-overlay {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.nlm-mobile-sub--described .nlm-mobile-sub__cta-card--bottom-overlay::before {
	display: none;
}

.nlm-mobile-sub--described .nlm-mobile-sub__cta-card--bottom-overlay .nlm-mobile-sub__cta-image {
	position: relative;
	inset: auto;
	flex-shrink: 0;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.nlm-mobile-sub--described .nlm-mobile-sub__cta-overlay-card {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 1.25rem 1.5rem 1.5rem;
	background: rgba(0, 11, 30, 0.92);
	color: #fff;
}

/* Static (no-link) panel rows — all templates */
.nlm-mega-panel__link--static,
.nlm-mobile-sub__link--static {
	cursor: default;
	pointer-events: none;
}

.nlm-mega-menu-header .main-navigation .nlm-mega-panel__link--static:hover,
.nlm-mega-menu-header .main-navigation .nlm-mega-panel__link--static:focus {
	color: var(--dark-blue, #182841);
}

.nlm-mobile-sub__link--static:hover,
.nlm-mobile-sub__link--static:focus {
	color: inherit;
}

/* Split contact template */
.nlm-mega-panel--contact .nlm-mega-panel__link--described {
	grid-template-columns: 48px minmax(0, 1fr);
}

.nlm-mega-panel--contact .nlm-mega-panel__links--no-icons .nlm-mega-panel__link--described {
	grid-template-columns: minmax(0, 1fr);
}

.nlm-mega-panel--contact .nlm-mega-panel__link-item + .nlm-mega-panel__link-item {
	border-top: 1px solid #e8edf3;
}

.nlm-mega-panel--contact .nlm-mega-panel__link-item:first-child {
	border-top: none;
}

.nlm-mega-panel--contact .nlm-mega-panel__link-icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #eef4ff;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel--contact .nlm-mega-panel__link-icon-circle svg,
.nlm-mega-panel--contact .nlm-mega-panel__link-icon-svg {
	display: block;
	width: 22px;
	height: 22px;
}

.nlm-mega-panel--contact .nlm-mega-panel__link-icon-circle svg *,
.nlm-mega-panel--contact .nlm-mega-panel__link-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mega-panel__link-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mega-panel__link-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mega-panel--contact .nlm-mega-panel__link-icon-circle img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.nlm-mega-panel__left-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 1.25rem;
	padding: 0.85rem 1.25rem;
	border: 1px solid var(--nlm-accent, #3ec8ff);
	border-radius: 999px;
	color: var(--nlm-accent, #3ec8ff);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nlm-mega-panel__left-cta-label {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	white-space: nowrap;
	padding-top: 1px;
}

.nlm-mega-panel__left-cta:hover,
.nlm-mega-panel__left-cta:focus {
	background: rgba(62, 200, 255, 0.08);
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel__left-cta-chevron {
	flex-shrink: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

/* Mobile split contact template */
.nlm-mobile-sub--contact .nlm-mobile-sub__link--described {
	grid-template-columns: 48px minmax(0, 1fr);
}

.nlm-mobile-sub--contact .nlm-mobile-sub__links--no-icons .nlm-mobile-sub__link--described {
	grid-template-columns: minmax(0, 1fr);
}

.nlm-mobile-sub--contact .nlm-mobile-sub__link-item + .nlm-mobile-sub__link-item {
	border-top: 1px solid #e8edf3;
}

.nlm-mobile-sub--contact .nlm-mobile-sub__link-icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #eef4ff;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub--contact .nlm-mobile-sub__link-icon-circle svg,
.nlm-mobile-sub--contact .nlm-mobile-sub__link-icon-svg {
	display: block;
	width: 22px;
	height: 22px;
}

.nlm-mobile-sub--contact .nlm-mobile-sub__link-icon-circle svg *,
.nlm-mobile-sub--contact .nlm-mobile-sub__link-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mobile-sub__link-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mobile-sub__link-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mobile-sub--contact .nlm-mobile-sub__link-icon-circle img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.nlm-mobile-sub__left-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin: 0 1.25rem 1.25rem;
	padding: 0.85rem 1.25rem;
	border: 1px solid var(--nlm-accent, #3ec8ff);
	border-radius: 999px;
	color: var(--nlm-accent, #3ec8ff);
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.nlm-mobile-sub__left-cta-chevron {
	flex-shrink: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

/* Split locations template */
.nlm-mega-panel--locations .nlm-mega-panel__right-stack {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 320px;
	border-radius: 14px;
	overflow: hidden;
}

.nlm-mega-panel--locations .nlm-mega-panel__media--locations {
	flex: 1 1 auto;
	min-height: 0;
	height: auto;
	border-radius: 0;
}

.nlm-mega-panel--locations .nlm-mega-panel__media--locations::before {
	display: none;
}

.nlm-mega-panel--locations .nlm-mega-panel__media--locations .nlm-mega-panel__image {
	min-height: 220px;
	height: 100%;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: min(320px, calc(100% - 2.5rem));
	padding: 1.25rem 1.35rem;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(24, 40, 65, 0.12);
	color: var(--dark-blue, #182841);
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-meta {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.85rem;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon {
	--nlm-overlay-accent: var(--nlm-accent, #3ec8ff);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border: 1px solid var(--nlm-overlay-accent);
	border-radius: 50%;
	background: #fff;
	color: var(--nlm-overlay-accent);
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon svg,
.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon img {
	display: block;
	width: var(--nlm-overlay-icon-size, 22px);
	height: var(--nlm-overlay-icon-size, 22px);
	object-fit: contain;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon .nlm-mega-panel__overlay-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon .nlm-mega-panel__overlay-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon .nlm-mega-panel__overlay-icon-svg svg *,
.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon .nlm-mega-panel__overlay-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-icon .nlm-mega-panel__overlay-icon-svg--fill [fill="none"] {
	fill: none;
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-label {
	margin: 0;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-heading {
	margin: 0 0 0.65rem;
	padding: 0;
	clear: none;
	font-family: var(--Raleway, Raleway, serif);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.3;
	font-weight: 500;
	color: var(--dark-blue, #182841);
}

.nlm-mega-panel--locations .nlm-mega-panel__location-card-description {
	margin: 0;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.82rem;
	line-height: 1.55;
	color: #5d6778;
}

.nlm-mega-panel--locations .nlm-mega-panel__info-bar {
	display: flex;
	flex-shrink: 0;
	background: #eef4ff;
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
	padding: 1rem 1.25rem;
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point + .nlm-mega-panel__info-point {
	border-left: 1px solid rgba(24, 40, 65, 0.08);
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-icon svg,
.nlm-mega-panel--locations .nlm-mega-panel__info-point-icon img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-icon svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mega-panel__info-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mega-panel__info-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-content {
	min-width: 0;
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-label {
	margin: 0 0 0.2rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-heading {
	margin: 0 0 0.2rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--dark-blue, #182841);
}

.nlm-mega-panel--locations .nlm-mega-panel__info-point-description {
	margin: 0;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.78rem;
	line-height: 1.45;
	color: #5d6778;
}

/* Mobile split locations template */
.nlm-mobile-sub--locations .nlm-mobile-sub__description {
	margin: 0 1.25rem 1rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.9rem;
	line-height: 1.6;
	color: #5d6778;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__locations-stack {
	margin: 0 1.25rem 1.25rem;
	border-radius: 14px;
	overflow: hidden;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__locations-media {
	position: relative;
	min-height: 200px;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__locations-image {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 320px;
	padding: 1rem 1.15rem;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(24, 40, 65, 0.12);
	color: var(--dark-blue, #182841);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon {
	--nlm-overlay-accent: var(--nlm-accent, #3ec8ff);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border: 1px solid var(--nlm-overlay-accent);
	border-radius: 50%;
	background: #fff;
	color: var(--nlm-overlay-accent);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon svg,
.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon img {
	display: block;
	width: var(--nlm-overlay-icon-size, 20px);
	height: var(--nlm-overlay-icon-size, 20px);
	object-fit: contain;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon .nlm-mega-panel__overlay-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon .nlm-mega-panel__overlay-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon .nlm-mega-panel__overlay-icon-svg svg *,
.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon .nlm-mega-panel__overlay-icon-svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-icon .nlm-mega-panel__overlay-icon-svg--fill [fill="none"] {
	fill: none;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-label {
	margin: 0;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.65rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-heading {
	margin: 0 0 0.55rem;
	padding: 0;
	clear: none;
	font-family: var(--Raleway, Raleway, serif);
	font-size: 1.05rem;
	line-height: 1.3;
	font-weight: 500;
	color: var(--dark-blue, #182841);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__location-card-description {
	margin: 0;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.8rem;
	line-height: 1.55;
	color: #5d6778;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-bar {
	display: flex;
	flex-direction: column;
	background: #eef4ff;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.15rem;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point + .nlm-mobile-sub__info-point {
	border-top: 1px solid rgba(24, 40, 65, 0.08);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-icon svg,
.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-icon img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-icon svg * {
	fill: inherit;
	stroke: inherit;
}

.nlm-mobile-sub__info-icon-svg--stroke {
	fill: none;
	stroke: currentColor;
}

.nlm-mobile-sub__info-icon-svg--fill {
	fill: currentColor;
	stroke: none;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-content {
	min-width: 0;
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-label {
	margin: 0 0 0.15rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.65rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nlm-accent, #3ec8ff);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-heading {
	margin: 0 0 0.15rem;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--dark-blue, #182841);
}

.nlm-mobile-sub--locations .nlm-mobile-sub__info-point-description {
	margin: 0;
	font-family: var(--Montserrat, Montserrat, sans-serif);
	font-size: 0.76rem;
	line-height: 1.45;
	color: #5d6778;
}

.nlm-br--desktop-only,
.nlm-br--mobile-only {
	display: none;
}

@media (min-width: 992px) {
	.nlm-br--desktop-only {
		display: revert;
	}
}

@media (max-width: 991px) {
	.nlm-br--mobile-only {
		display: revert;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nlm-mega-menu-header .nlm-header__cta,
	.nlm-mega-menu-header .nlm-header__cta::before,
	.nlm-mega-menu-header .main-navigation #nlm-mega-menu-list > li > a::after,
	.nlm-mega-menu-header .nlm-mega-menu__toggle-bar,
	.nlm-mega-menu-header .nlm-mega-menu__chevron-icon {
		transition: none !important;
	}

	.nlm-mega-menu-header .nlm-header__cta:hover,
	.nlm-mega-menu-header .nlm-header__cta:focus {
		transform: none;
	}

	.nlm-mobile-menu__track,
	.nlm-mobile-menu__row,
	.nlm-mobile-menu__cta,
	.nlm-mobile-sub__link,
	.nlm-mobile-sub__cta-button {
		transition: none !important;
	}

	.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__item,
	.nlm-mobile-menu__view--primary.nlm-mobile-menu__view--animating .nlm-mobile-menu__footer {
		animation: none !important;
	}
}
