@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&family=Fira+Sans:wght@300;400;500;600;700;900&display=swap");

de-shared-navigation {
	display: block;
	position: relative;
	z-index: 99990;
	--de-nav-blue: #002f87;
	--de-nav-navy: #1d3b7e;
	--de-nav-bar-bg: #002f87;
	--de-nav-panel-bg: #fff;
	--de-nav-divider: #e9ecf3;
	--de-nav-scrollbar: #b7c3d4;
	--de-nav-faded: .38;
	--de-nav-pill-bg: #eef0f5;
	--de-nav-pill-active-bg: #d8dee9;
	--de-nav-serif: "Cormorant Garamond", Georgia, serif;
	--de-nav-sans: "Fira Sans", Arial, sans-serif;
	--de-nav-bar-height: 84px;
	--de-nav-news-height: 72px;
	--de-nav-open-duration: 550ms;
	font-family: var(--de-nav-sans);
}

/* Prevent fallback flash while scripting starts. With scripting disabled this
 * does not apply. If the component script is blocked, the fallback returns
 * after the same eight-second window used by the endpoint timeout. */
@media (scripting: enabled) {
	de-shared-navigation:not(:defined) {
		opacity: 0;
		pointer-events: none;
		transform: translateY(-100%);
		animation: de-nav-uninitialized-fallback .01ms linear 8s forwards;
	}
}

de-shared-navigation:defined {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition: opacity 380ms ease-out, transform 720ms cubic-bezier(.22,1,.36,1);
}

de-shared-navigation:defined[data-status="ready"],
de-shared-navigation:defined[data-status="empty"],
de-shared-navigation:defined[data-status="error"] {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@keyframes de-nav-uninitialized-fallback {
	to { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

de-shared-navigation *,
de-shared-navigation *::before,
de-shared-navigation *::after { box-sizing: border-box; }

de-shared-navigation [data-enhanced="true"] > .de-shared-navigation__fallback,
de-shared-navigation[data-enhanced="true"] > .de-shared-navigation__fallback { display: none; }

de-shared-navigation .de-shared-navigation__fallback {
	background: #fff;
	border: 1px solid #dcdcde;
	color: #1d3b7e;
	padding: 16px;
}

de-shared-navigation .de-shared-navigation__fallback p { margin: 8px 0 0; }
de-shared-navigation .de-shared-navigation__fallback-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
de-shared-navigation .de-shared-navigation__fallback-links a { color: #002f87; font-weight: 600; }
de-shared-navigation .de-nav { color: #222; }

/* Opt-in underline utility for links in Divi modules or other layout widgets.
 * Add de-nav-underline-links to the containing widget, not each link. */
.de-nav-underline-links a {
	position: relative;
	text-decoration: none;
}

.de-nav-underline-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 1px;
	background: #cc9800;
	pointer-events: none;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}

.de-nav-underline-links a:focus-visible::after,
.de-nav-underline-links a:active::after,
.de-nav-underline-links a[aria-current="page"]::after {
	transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
	.de-nav-underline-links a:hover::after { transform: scaleX(1); }
}

de-shared-navigation .de-nav__menu {
	height: 0;
	overflow: hidden;
	background: var(--de-nav-panel-bg);
	transition: height var(--de-nav-open-duration) cubic-bezier(.34,1.28,.64,1);
}

de-shared-navigation .de-nav.is-open .de-nav__menu { height: calc(100vh - var(--de-nav-bar-height)); }
de-shared-navigation .de-nav:not(.is-open) .de-nav__menu { transition: height 420ms cubic-bezier(.4,0,.2,1); }

de-shared-navigation .de-nav__frame {
	height: calc(100vh - var(--de-nav-bar-height));
	display: flex;
	flex-direction: column;
	opacity: 0;
	transition: opacity 1200ms ease-out;
}

de-shared-navigation .de-nav.is-open .de-nav__frame { opacity: 1; transition-delay: 280ms; }

@supports (height: 100dvh) {
	de-shared-navigation .de-nav.is-open .de-nav__menu,
	de-shared-navigation .de-nav__frame { height: calc(100dvh - var(--de-nav-bar-height)); }
}

de-shared-navigation .de-nav__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
	display: grid;
	place-items: center;
	z-index: 5;
}

de-shared-navigation .de-nav__close svg { width: 18px; height: 18px; fill: #002f87; }

de-shared-navigation .de-nav__body {
	flex: 1;
	display: grid;
	grid-template-columns: minmax(220px,280px) repeat(3, fit-content(420px));
	min-height: 0;
	padding: 26px 40px 10px 0;
}

de-shared-navigation .de-nav__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	padding: 30px 7px 0 10px;
	text-align: center;
	color: var(--de-nav-blue);
	font-size: 12.8px;
	font-weight: 400;
	line-height: 1.55;
}

de-shared-navigation .de-nav__info img { width: 160px; height: auto; display: block; }
de-shared-navigation .de-nav__info p { margin: 0; white-space: pre-line; }
de-shared-navigation .de-nav__info p:first-of-type::first-line,
de-shared-navigation .de-nav__info p:nth-of-type(2)::first-line { font-weight: 700; }
de-shared-navigation .de-nav__info a { color: inherit; text-decoration: underline; }
de-shared-navigation .de-nav__socials { display: flex; align-items: center; gap: 12px; }
de-shared-navigation .de-nav__social-link { display: block; width: 26px; height: 26px; text-decoration: none; border-radius: 50%; }
de-shared-navigation .de-nav__social-link svg { display: block; width: 26px; height: 26px; }

de-shared-navigation .de-nav__column {
	position: relative;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 26px 34px;
	scrollbar-width: thin;
	scrollbar-color: var(--de-nav-scrollbar) transparent;
}

de-shared-navigation .de-nav__column::-webkit-scrollbar { width: 6px; }
de-shared-navigation .de-nav__column::-webkit-scrollbar-track { background: transparent; }
de-shared-navigation .de-nav__column::-webkit-scrollbar-thumb { background: var(--de-nav-scrollbar); border-radius: 99px; }
de-shared-navigation .de-nav__level-two,
de-shared-navigation .de-nav__level-three,
de-shared-navigation .de-nav__level-four,
de-shared-navigation .de-nav__level-five { border-left: 5px solid transparent; margin-left: 6px; opacity: 0; visibility: hidden; transform: translateX(18px); transition: opacity .3s, transform .3s, visibility .3s; }
de-shared-navigation .de-nav__level-four,
de-shared-navigation .de-nav__level-five { display: none; }
de-shared-navigation .de-nav__level-one { padding-top: 34px; padding-left: 7px; }
de-shared-navigation [data-step="2"] .de-nav__level-two,
de-shared-navigation [data-step="3"] .de-nav__level-two,
de-shared-navigation [data-step="4"] .de-nav__level-two,
de-shared-navigation [data-step="3"] .de-nav__level-three,
de-shared-navigation [data-step="4"] .de-nav__level-three,
de-shared-navigation [data-step="5"] .de-nav__level-three,
de-shared-navigation [data-step="4"] .de-nav__level-four,
de-shared-navigation [data-step="5"] .de-nav__level-four,
de-shared-navigation [data-step="5"] .de-nav__level-five { opacity: 1; visibility: visible; transform: none; }
de-shared-navigation [data-step="4"] .de-nav__level-one,
de-shared-navigation [data-step="5"] .de-nav__level-one,
de-shared-navigation [data-step="5"] .de-nav__level-two { display: none; }
de-shared-navigation [data-step="4"] .de-nav__level-four,
de-shared-navigation [data-step="5"] .de-nav__level-four,
de-shared-navigation [data-step="5"] .de-nav__level-five { display: block; }

de-shared-navigation .de-nav__l1-item,
de-shared-navigation .de-nav__item,
de-shared-navigation .de-nav__marketing,
de-shared-navigation .de-nav__back {
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	color: var(--de-nav-blue);
	cursor: pointer;
	text-decoration: none;
}

de-shared-navigation .de-nav__l1-item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	text-align: left;
	font-family: var(--de-nav-serif);
	font-size: 2.5rem;
	font-weight: 300;
	color: var(--de-nav-navy);
	padding: 0 0 6px;
	margin: 0 0 40px;
	line-height: 1.1;
	transition: opacity .25s;
}

de-shared-navigation [data-step="2"] .de-nav__l1-item:not(.is-selected),
de-shared-navigation [data-step="3"] .de-nav__l1-item:not(.is-selected),
de-shared-navigation [data-step="4"] .de-nav__l1-item:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__l1-item:not(.is-selected),
de-shared-navigation [data-step="3"] .de-nav__level-two .de-nav__item:not(.is-selected),
de-shared-navigation [data-step="3"] .de-nav__level-two .de-nav__marketing:not(.is-selected),
de-shared-navigation [data-step="4"] .de-nav__level-two .de-nav__item:not(.is-selected),
de-shared-navigation [data-step="4"] .de-nav__level-two .de-nav__marketing:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__level-two .de-nav__item:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__level-two .de-nav__marketing:not(.is-selected),
de-shared-navigation [data-step="4"] .de-nav__level-three .de-nav__item:not(.is-selected),
de-shared-navigation [data-step="4"] .de-nav__level-three .de-nav__marketing:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__level-three .de-nav__item:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__level-three .de-nav__marketing:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__level-four .de-nav__item:not(.is-selected),
de-shared-navigation [data-step="5"] .de-nav__level-four .de-nav__marketing:not(.is-selected) { opacity: var(--de-nav-faded); }
de-shared-navigation .de-nav__l1-item.is-selected,
de-shared-navigation .de-nav__item.is-selected,
de-shared-navigation .de-nav__marketing.is-selected { color: #002f87; opacity: 1; }

de-shared-navigation .de-nav__item {
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	text-align: left;
	font-family: var(--de-nav-sans);
	font-weight: 300;
	font-size: 1.2rem;
	padding: 0;
	margin: 0 0 26px;
	transition: opacity .25s;
}

de-shared-navigation .de-nav__arrow { flex: 0 0 auto; width: 17px; height: 14px; }
de-shared-navigation .de-nav__arrow path { stroke: var(--de-nav-blue); }
de-shared-navigation .de-nav__arrow--back { transform: rotate(180deg); }
de-shared-navigation .de-nav__l1-item > .de-nav__arrow { display: inline-block; width: 20px; height: 16px; }

de-shared-navigation .de-nav__marketing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	text-align: left;
	font-family: var(--de-nav-sans);
	font-weight: 500;
	font-size: 21px;
	line-height: 1.25;
	padding: 0;
	margin: 0 0 30px;
}

de-shared-navigation .de-nav__item-label,
de-shared-navigation .de-nav__marketing-label { position: relative; display: inline-block; overflow-wrap: anywhere; }
de-shared-navigation .de-nav__item-label::after,
de-shared-navigation .de-nav__marketing-label::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 1px;
	background: #cc9800;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}

de-shared-navigation .de-nav__l1-item .de-nav__item-label::after { bottom: -8px; height: 1.5px; }
de-shared-navigation .de-nav__l1-item:hover .de-nav__item-label::after,
de-shared-navigation .de-nav__l1-item.is-selected .de-nav__item-label::after,
de-shared-navigation .de-nav__item:hover .de-nav__item-label::after,
de-shared-navigation .de-nav__item.is-selected .de-nav__item-label::after,
de-shared-navigation .de-nav__marketing:hover .de-nav__marketing-label::after,
de-shared-navigation [aria-current="page"] .de-nav__item-label::after { transform: scaleX(1); }

de-shared-navigation .de-nav__back {
	display: none;
	align-items: center;
	gap: 16px;
	font-family: var(--de-nav-serif);
	font-size: 34px;
	font-weight: 300;
	color: var(--de-nav-navy);
	text-align: left;
	padding: 0;
	margin: 0 0 22px;
}
de-shared-navigation .de-nav__back .de-nav__arrow { width: 20px; height: 16px; }
de-shared-navigation .de-nav__deep-list { list-style: none; padding: 0 0 0 18px; margin: -12px 0 20px; border-left: 1px solid var(--de-nav-divider); }
de-shared-navigation .de-nav__deep-list .de-nav__item { font-size: .9rem; margin-bottom: 16px; }

@media (min-width: 1181px) {
	de-shared-navigation .de-nav__level-one {
		width: max-content;
		max-width: 420px;
	}
	de-shared-navigation .de-nav__l1-item {
		font-size: 2rem;
		margin: 0 0 30px;
	}
	de-shared-navigation [data-step="4"] .de-nav__level-two .de-nav__back,
	de-shared-navigation [data-step="5"] .de-nav__level-three .de-nav__back {
		display: flex;
	}
}

de-shared-navigation .de-nav__news {
	position: relative;
	z-index: 2;
	border-top: 0;
	min-height: var(--de-nav-news-height);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 40px;
	background-image: url("../images/quick-links-fade.png");
	background-repeat: repeat-x;
	background-position: left top;
	background-size: auto 100%;
	color: var(--de-nav-blue);
	flex-wrap: nowrap;
	overflow: hidden;
}
de-shared-navigation .de-nav__news-scroll {
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 4px 0 8px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
}
de-shared-navigation .de-nav__news-scroll::-webkit-scrollbar { display: none; width: 0; height: 0; }
de-shared-navigation .de-nav__news-scroll.is-dragging { cursor: grabbing; user-select: none; }
de-shared-navigation .de-nav__news-inline { display: flex; align-items: center; gap: 10px; width: max-content; }
de-shared-navigation .de-nav__category { flex: 0 0 auto; color: var(--de-nav-blue); font-weight: 400; font-size: 95%; text-decoration: none; white-space: nowrap; }
de-shared-navigation .de-nav__category .de-nav__arrow,
de-shared-navigation .de-nav__pill .de-nav__arrow { display: none; }
de-shared-navigation .de-nav__category:focus-visible .de-nav__item-label::after,
de-shared-navigation .de-nav__category:active .de-nav__item-label::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) {
	de-shared-navigation .de-nav__category:hover .de-nav__item-label::after { transform: scaleX(1); }
}
de-shared-navigation .de-nav__separator { opacity: .7; font-weight: 300; }
de-shared-navigation .de-nav__news-pills { display: none; }

de-shared-navigation .de-nav__bar {
	position: sticky;
	top: 0;
	height: var(--de-nav-bar-height);
	overflow: hidden;
	background: var(--de-nav-bar-bg);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 0 34px;
	z-index: 2;
}

de-shared-navigation .de-nav__login,
de-shared-navigation .de-nav__bar-link,
de-shared-navigation .de-nav__wordmark { color: #fff; text-decoration: none; }
de-shared-navigation .de-nav__login { display: flex; align-items: center; white-space: nowrap; flex: 0 0 48px; width: 48px; height: 48px; }
de-shared-navigation .de-nav__login-icon { display: block; position: relative; flex: 0 0 48px; width: 48px; height: 48px; }
de-shared-navigation .de-nav__login-state { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
de-shared-navigation .de-nav__wordmark { position: relative; flex: 1 1 auto; min-width: 0; width: min(460px,100%); max-width: 460px; height: 48px; display: flex; align-items: center; justify-content: flex-start; z-index: 1; }
de-shared-navigation .de-nav__wordmark picture { display: flex; align-items: center; justify-content: flex-start; width: auto; height: 100%; max-width: 100%; }
de-shared-navigation .de-nav__wordmark img { display: block; width: auto; height: 100%; max-width: 100%; }
de-shared-navigation .de-nav__login,
de-shared-navigation .de-nav__bar-actions { position: relative; z-index: 1; }
de-shared-navigation .de-nav__bar-actions { display: flex; align-items: center; gap: 26px; margin-left: auto; }
de-shared-navigation .de-nav__bar-link { position: relative; font-weight: 500; font-size: 1rem; white-space: nowrap; }
de-shared-navigation .de-nav__bar-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1.5px;
	background: #cc9800;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
de-shared-navigation .de-nav__bar-link:focus-visible::after,
de-shared-navigation .de-nav__bar-link:active::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) {
	de-shared-navigation .de-nav__bar-link:hover::after { transform: scaleX(1); }
}
de-shared-navigation .de-nav__burger { background: none; border: 0; cursor: pointer; display: grid; place-items: center; padding: 4px; }
de-shared-navigation .de-nav__burger svg { width: 34px; height: auto; display: block; fill: #fff; transition: fill .25s ease; }
de-shared-navigation .de-nav__burger:focus-visible svg,
de-shared-navigation .de-nav__burger:active svg { fill: #cc9800; }
@media (hover: hover) and (pointer: fine) {
	de-shared-navigation .de-nav__burger:hover svg { fill: #cc9800; }
}
de-shared-navigation .de-nav__mobile-logo { display: none; }

de-shared-navigation[data-status="ready"] .de-nav__login-icon,
de-shared-navigation[data-status="empty"] .de-nav__login-icon,
de-shared-navigation[data-status="ready"] .de-nav__burger svg,
de-shared-navigation[data-status="empty"] .de-nav__burger svg {
	animation: de-nav-control-arrive 650ms cubic-bezier(.2,.8,.2,1) both;
}
de-shared-navigation[data-status="ready"] .de-nav__burger svg,
de-shared-navigation[data-status="empty"] .de-nav__burger svg { animation-delay: 90ms; }
de-shared-navigation[data-status="ready"] .de-nav__wordmark img,
de-shared-navigation[data-status="empty"] .de-nav__wordmark img {
	animation: de-nav-wordmark-arrive 650ms ease-out 80ms both;
}

@keyframes de-nav-control-arrive {
	0% { opacity: 0; transform: scale(1.28); }
	68% { opacity: 1; transform: scale(.95); }
	84% { transform: scale(1.035); }
	100% { opacity: 1; transform: scale(1); }
}

@keyframes de-nav-wordmark-arrive {
	from { opacity: 0; }
	to { opacity: 1; }
}

de-shared-navigation button:focus-visible,
de-shared-navigation a:focus-visible { outline: 3px solid #cc9800; outline-offset: 4px; }
de-shared-navigation [data-input-method="touch"] button:focus,
de-shared-navigation [data-input-method="touch"] a:focus { outline: none; box-shadow: none; }

@media (hover: none) and (pointer: coarse) {
	de-shared-navigation button,
	de-shared-navigation a { -webkit-tap-highlight-color: transparent; }
	de-shared-navigation button:focus,
	de-shared-navigation button:focus-visible,
	de-shared-navigation a:focus,
	de-shared-navigation a:focus-visible { outline: none !important; box-shadow: none !important; }
}

.de-shared-navigation-preview { min-height: 84px; padding: 20px; display: flex; flex-direction: column; justify-content: center; background: #002f87; color: #fff; font-family: Arial,sans-serif; }
.de-shared-navigation-preview span { font-size: 13px; opacity: .85; margin-top: 4px; }

@media (min-width: 1181px) {
	de-shared-navigation .de-nav__bar--hide-quick-links-desktop .de-nav__primary-quick-link { display: none; }
	de-shared-navigation .de-nav__bar--hide-quick-links-desktop .de-nav__wordmark { width: min(540px,65vw); max-width: 540px; height: 56px; }
}

@media (min-width: 741px) and (max-width: 1180px) {
	de-shared-navigation .de-nav__bar--hide-quick-links-tablet .de-nav__primary-quick-link { display: none; }
	de-shared-navigation .de-nav__bar--hide-quick-links-tablet .de-nav__wordmark { width: min(480px,55vw); max-width: 480px; height: 50px; }
}

@media (max-width: 1180px) {
	html.de-shared-navigation-open,
	html.de-shared-navigation-open body { overflow: hidden !important; }
	de-shared-navigation .de-nav__body { grid-template-columns: minmax(200px,240px) minmax(0,1fr) minmax(0,1fr); padding-right: 24px; }
	de-shared-navigation [data-step="1"] .de-nav__level-two,
	de-shared-navigation [data-step="1"] .de-nav__level-three,
	de-shared-navigation [data-step="1"] .de-nav__level-four,
	de-shared-navigation [data-step="1"] .de-nav__level-five,
	de-shared-navigation [data-step="2"] .de-nav__level-one,
	de-shared-navigation [data-step="2"] .de-nav__level-three,
	de-shared-navigation [data-step="2"] .de-nav__level-four,
	de-shared-navigation [data-step="2"] .de-nav__level-five,
	de-shared-navigation [data-step="3"] .de-nav__level-one,
	de-shared-navigation [data-step="3"] .de-nav__level-four,
	de-shared-navigation [data-step="3"] .de-nav__level-five,
	de-shared-navigation [data-step="4"] .de-nav__level-one,
	de-shared-navigation [data-step="4"] .de-nav__level-two,
	de-shared-navigation [data-step="4"] .de-nav__level-five,
	de-shared-navigation [data-step="5"] .de-nav__level-one,
	de-shared-navigation [data-step="5"] .de-nav__level-two,
	de-shared-navigation [data-step="5"] .de-nav__level-three { display: none; }
	de-shared-navigation [data-step="2"] .de-nav__level-two,
	de-shared-navigation [data-step="3"] .de-nav__level-two,
	de-shared-navigation [data-step="4"] .de-nav__level-three,
	de-shared-navigation [data-step="5"] .de-nav__level-four { border-left: 0; margin-left: 0; }
	de-shared-navigation [data-step="2"] .de-nav__level-two .de-nav__back,
	de-shared-navigation [data-step="3"] .de-nav__level-two .de-nav__back,
	de-shared-navigation [data-step="4"] .de-nav__level-three .de-nav__back,
	de-shared-navigation [data-step="5"] .de-nav__level-four .de-nav__back { display: flex; }
	de-shared-navigation [data-step="2"] .de-nav__level-two,
	de-shared-navigation [data-step="3"] .de-nav__level-two,
	de-shared-navigation [data-step="4"] .de-nav__level-three,
	de-shared-navigation [data-step="5"] .de-nav__level-four { padding-top: 30px; }
	de-shared-navigation .de-nav__login-icon { width: 48px; height: 48px; }
	de-shared-navigation .de-nav__wordmark { width: min(420px,50vw); max-width: 420px; height: 44px; }
	de-shared-navigation .de-nav__bar-actions { gap: 16px; }
	de-shared-navigation .de-nav__bar-link { font-size: .9rem; padding-right: 1em; overflow: hidden; text-overflow: ellipsis; }
	de-shared-navigation .de-nav__bar-link--apply { max-width: 54px; }
	de-shared-navigation .de-nav__bar-link--give { max-width: 50px; }
	de-shared-navigation .de-nav__search-link { max-width: 60px; }
}

@media (max-width: 740px) {
	de-shared-navigation { --de-nav-bar-height: 64px; }
	de-shared-navigation .de-nav__frame { display: block; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
	de-shared-navigation .de-nav__body { display: block; overflow: visible; padding: 18px 22px 10px; transition: opacity 400ms ease-out; }
	de-shared-navigation .de-nav__body.is-fading { opacity: 0; }
	de-shared-navigation .de-nav__info { display: none; }
	de-shared-navigation .de-nav__mobile-logo { width: 100px; display: grid; place-items: center; margin: 6px 0 34px; }
	de-shared-navigation .de-nav__mobile-logo img { width: 100%; height: auto; display: block; }
	de-shared-navigation .de-nav__column { overflow: visible; padding: 0; border: 0; margin: 0; }
	de-shared-navigation [data-step="1"] .de-nav__level-two,
	de-shared-navigation [data-step="1"] .de-nav__level-three,
	de-shared-navigation [data-step="1"] .de-nav__level-four,
	de-shared-navigation [data-step="1"] .de-nav__level-five,
	de-shared-navigation [data-step="2"] .de-nav__level-one,
	de-shared-navigation [data-step="2"] .de-nav__level-three,
	de-shared-navigation [data-step="2"] .de-nav__level-four,
	de-shared-navigation [data-step="2"] .de-nav__level-five,
	de-shared-navigation [data-step="3"] .de-nav__level-one,
	de-shared-navigation [data-step="3"] .de-nav__level-two,
	de-shared-navigation [data-step="3"] .de-nav__level-four,
	de-shared-navigation [data-step="3"] .de-nav__level-five,
	de-shared-navigation [data-step="4"] .de-nav__level-one,
	de-shared-navigation [data-step="4"] .de-nav__level-two,
	de-shared-navigation [data-step="4"] .de-nav__level-three,
	de-shared-navigation [data-step="4"] .de-nav__level-five,
	de-shared-navigation [data-step="5"] .de-nav__level-one,
	de-shared-navigation [data-step="5"] .de-nav__level-two,
	de-shared-navigation [data-step="5"] .de-nav__level-three,
	de-shared-navigation [data-step="5"] .de-nav__level-four { display: none; }
	de-shared-navigation .de-nav__level-two,
	de-shared-navigation .de-nav__level-three,
	de-shared-navigation .de-nav__level-four,
	de-shared-navigation .de-nav__level-five { opacity: 1; visibility: visible; transform: none; }
	de-shared-navigation .de-nav__l1-item { font-size: 2rem; margin-bottom: 23px; display: flex; align-items: center; gap: 12px; }
	de-shared-navigation .de-nav__l1-item > .de-nav__arrow { display: inline-block; width: 20px; height: 16px; }
	de-shared-navigation .de-nav__l1-item > .de-nav__arrow path { stroke: var(--de-nav-navy); }
	de-shared-navigation .de-nav__level-two .de-nav__back,
	de-shared-navigation .de-nav__level-three .de-nav__back,
	de-shared-navigation .de-nav__level-four .de-nav__back,
	de-shared-navigation .de-nav__level-five .de-nav__back { display: flex; border-bottom: 1.5px solid var(--de-nav-blue); padding-bottom: 20px; margin-bottom: 26px; width: 100%; font-size: 32px; }
	de-shared-navigation .de-nav__item { margin-bottom: 30px; }
	de-shared-navigation .de-nav__marketing { border-bottom: 1.5px solid var(--de-nav-blue); padding-bottom: 22px; margin-bottom: 24px; }
	de-shared-navigation [data-step="2"] .de-nav__news,
	de-shared-navigation [data-step="3"] .de-nav__news,
	de-shared-navigation [data-step="4"] .de-nav__news,
	de-shared-navigation [data-step="5"] .de-nav__news { display: none; }
	de-shared-navigation .de-nav__news { border-top: 0; display: block; padding: 26px 22px calc(180px + env(safe-area-inset-bottom, 0px)); }
	de-shared-navigation .de-nav__news-scroll { width: 100%; overflow: visible; padding: 4px 0 8px; cursor: auto; }
	de-shared-navigation .de-nav__news-inline { display: none; }
	de-shared-navigation .de-nav__news-pills { display: flex; flex-wrap: wrap; gap: 10px; width: auto; }
	de-shared-navigation .de-nav__pill { background: var(--de-nav-pill-bg); color: var(--de-nav-blue); font-weight: 400; font-size: 95%; text-decoration: none; padding: 9px 18px; border-radius: 999px; white-space: nowrap; transition: background-color .2s ease; }
	de-shared-navigation .de-nav__pill .de-nav__item-label::after { display: none; }
	de-shared-navigation .de-nav__pill:focus-visible,
	de-shared-navigation .de-nav__pill:active { background: var(--de-nav-pill-active-bg); }
	de-shared-navigation .de-nav__bar { padding: 0 16px; gap: 12px; }
	de-shared-navigation .de-nav__wordmark { flex: 0 0 72px; width: 72px; max-width: 72px; height: 36px; }
	de-shared-navigation .de-nav__login { flex: 0 0 48px; width: 48px; height: 48px; }
	de-shared-navigation .de-nav__login-icon { width: 48px; height: 48px; }
	de-shared-navigation .de-nav__bar-actions { gap: 12px; }
	de-shared-navigation .de-nav__bar-link { font-size: .9rem; }
	de-shared-navigation .de-nav__burger { transform: scale(.765); transform-origin: right center; }
	de-shared-navigation .de-nav__close { top: 10px; right: 10px; }
	de-shared-navigation .de-nav__bar--hide-quick-links-mobile .de-nav__primary-quick-link { display: none; }
	de-shared-navigation .de-nav__bar--hide-quick-links-mobile .de-nav__wordmark { flex: 0 1 100px; width: 100px; max-width: 100px; height: 44px; }
}

@media (max-width: 740px) and (hover: hover) {
	de-shared-navigation .de-nav__pill:hover { background: var(--de-nav-pill-active-bg); }
}

@media (max-width: 600px) {
	de-shared-navigation .de-nav__bar { padding: 0 10px; }
	de-shared-navigation .de-nav__login-icon { width: 48px; height: 48px; }
	de-shared-navigation .de-nav__bar-actions { display: flex; gap: 12px; margin-left: auto; }
	de-shared-navigation .de-nav__bar-link { position: relative; transform: none; font-size: .9rem; }
	de-shared-navigation .de-nav__login { position: relative; transform: none; flex: 0 0 48px; width: 48px; height: 48px; }
	de-shared-navigation .de-nav__burger { position: static; width: 28px; height: 28px; padding: 0; transform: none; }
	de-shared-navigation .de-nav__burger svg { width: 28px; }
	de-shared-navigation .de-nav__bar--hide-quick-links-mobile .de-nav__wordmark { flex: 0 1 100px; width: 100px; max-width: 100px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
	.de-nav-underline-links a::after { transition-duration: .01ms !important; }
	de-shared-navigation { transition: none !important; }
	de-shared-navigation *,
	de-shared-navigation *::before,
	de-shared-navigation *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
