/* =========================
   Fonts
========================= */
@font-face {
	font-family: "Proxima Nova";
	src:
		url("/wp-content/themes/salient-child/fonts/ProximaNovaRegular.eot");
	src:
		url("/wp-content/themes/salient-child/fonts/ProximaNovaRegular.eot?#iefix") format("embedded-opentype"),
		url("/wp-content/themes/salient-child/fonts/ProximaNovaRegular.woff") format("woff"),
		url("/wp-content/themes/salient-child/fonts/ProximaNovaRegular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Proxima Nova";
	src:
		url("/wp-content/themes/salient-child/fonts/ProximaNovaBold.eot");
	src:
		url("/wp-content/themes/salient-child/fonts/ProximaNovaBold.eot?#iefix") format("embedded-opentype"),
		url("/wp-content/themes/salient-child/fonts/ProximaNovaBold.woff") format("woff"),
		url("/wp-content/themes/salient-child/fonts/ProximaNovaBold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

/* =========================
   Root Tokens
========================= */
:root {
	--sc-font-primary: "Proxima Nova", sans-serif;
	--sc-font-secondary: "Roboto", sans-serif;
	--sc-font-ui: "Inter", sans-serif;

	--sc-color-white: #fff;
	--sc-color-black: #000;
	--sc-color-text: #03102c;
	--sc-color-text-dark: #072057;
	--sc-color-heading: #003154;
	--sc-color-muted: #7a8aa7;
	--sc-color-primary: #0094ff;
	--sc-color-primary-dark: #0b7fda;
	--sc-color-secondary: #0A3184;
	--sc-color-accent: #326eef;
	--sc-color-surface: #eff4f9;
	--sc-color-border: #dbdde0;
	--sc-color-overlay: #07205766;

	--sc-header-height: 68px;
	--sc-radius-xs: 5px;
	--sc-radius-sm: 6px;
	--sc-radius-md: 8px;
	--sc-radius-lg: 11px;
	--sc-radius-xl: 28px;
	--sc-radius-2xl: 40px;

	--sc-shadow-soft: 0 18px 50px rgba(3, 16, 44, 0.12);
	--sc-shadow-icon: 0 4px 5px 0 #00315433;
	--sc-shadow-button: 0 4px 12px 0 #326eef40;

	--sc-transition-fast: 0.2s ease;
	--sc-transition-base: 0.25s ease;

	--mobile-header-background: linear-gradient(90deg, var(--sc-color-text) 5.77%, var(--sc-color-secondary) 42.31%, var(--sc-color-primary) 100%);
	--dektop-header-background: linear-gradient(90deg, var(--sc-color-text) 50%, var(--sc-color-primary) 100%);
}

/* =========================
   Global Header Base
========================= */
body:has(header.new-sc-header) {
	margin-top: var(--sc-header-height);
}

html:has(.sc-mobile-dropdown.is-open, .sc-header__search.is-open, .sc-header__lang-nav.is-open) {
	/* overflow: hidden; */
}

html:has(.sc-mobile-dropdown.is-open, .sc-header__search.is-open, .sc-header__lang-nav.is-open, li.sc-header__nav-item.has-mega-menu.is-active) div#ajax-content-wrap::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 111;
	width: 100%;
	height: 100%;
	background: var(--sc-color-overlay);
	background-blend-mode: multiply;
	backdrop-filter: blur(14px);
}

.new-sc-header,
.new-sc-header * {
	box-sizing: border-box;
}

.new-sc-header {
	position: fixed;
	z-index: 9999;
	font-family: inherit;
}

.sc-header__top {
	position: relative;
	background: var(--mobile-header-background);
}

.sc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 100px;
	min-height: var(--sc-header-height);
}

.sc-header__logo,
.sc-header__actions,
.sc-header__search {
	display: flex;
	align-items: center;
}

.sc-header__logo {
	flex: 0 0 auto;
}

.sc-header__logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

/* =========================
   Navigation
========================= */
.sc-header__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.sc-header__nav-list {
	display: flex;
	align-items: center;
	/* gap: 75px; */
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-header__nav-item {
	position: relative;
	margin: 0;
	padding: 0;
}

.sc-header__nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--sc-header-height);
	padding: 0 30px;
	border: 0;
	background: transparent;
	color: var(--sc-color-white);
	font: 700 16px/20px var(--sc-font-secondary);
	text-decoration: none;
	cursor: pointer;
	transition: opacity var(--sc-transition-fast), color var(--sc-transition-fast);
	min-width: 125px;
}

.sc-header__nav-link:hover,
.sc-header__nav-link:focus {
	color: var(--sc-color-white);
	opacity: 0.88;
	outline: none;
}

.sc-header__nav-link svg {
	position: absolute;
	bottom: 9px;
}

.sc-header__nav-item:not(.is-active) svg {
	display: none;
}

.sc-header__nav-item.is-active::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 5;
	width: 100px;
	height: 12px;
	margin-top: -1px;
	pointer-events: none;
	transform: translateX(-50%);
	background-attachment: fixed;
	clip-path: path("M 0 0 C 15 0 20 0 25 3 C 32 6 38 12 50 12 C 62 12 68 6 75 3 C 80 0 85 0 100 0 Z");
}

ul.sc-header__nav-list .sc-header__nav-item.is-active::after {
	/* background: linear-gradient(90deg, var(--sc-color-text) 70%, var(--sc-color-text) 100%); */
}

ul.sc-header__nav-list .sc-header__nav-item.is-active:not(:last-child)::after {
	background: linear-gradient(90deg, var(--sc-color-text) 70%, var(--sc-color-text) 100%);
}

ul.sc-header__nav-list .sc-header__nav-item.is-active:last-child::after {
	background: linear-gradient(90deg, #031f44 70%, #021636 100%);
}

/* =========================
   Header Actions
========================= */
.sc-header__actions {
	flex: 0 0 auto;
	gap: 46px;
}

.sc-header__buttons {
	display: flex;
	align-items: center;
	gap: 46px;
}

/* =========================
   Search
========================= */
.sc-header__search {
	position: relative;
}

.sc-header__search-toggle,
.sc-header__search-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--sc-color-white);
	cursor: pointer;
}

.sc-header__search-toggle {
	width: 24px;
	height: 24px;
}

.sc-header__search-toggle svg {
	width: 20px;
	height: 20px;
}

.sc-header__search-close {
	width: 28px;
	height: 28px;
}

.sc-header__search-form {
	position: absolute;
	top: 50%;
	right: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	width: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	background: transparent;
	transform: translateY(-50%);
}

.sc-header__search.is-open .sc-header__search-form {
	width: 360px;
	opacity: 1;
	visibility: visible;
}

.sc-header__inner:has(.sc-header__search.js-sc-search.is-open) nav.sc-header__nav {
	opacity: 0;
	visibility: hidden;
}

.sc-header__search-input {
	flex: 1 1 auto;
	height: 40px;
	padding: 0 0 0 6px;
	border: 0;
	outline: none;
	box-shadow: none;
	font-size: 14px;
	font-weight: 500;
}

.sc-header__search-input::placeholder {
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}


/* =========================
   Language Switcher
========================= */
.sc-header__lang {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 51px;
	padding-left: 3px;
	color: var(--sc-color-white);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}

.sc-header__lang-switcher,
.sc-header__lang-switcher * {
	color: var(--sc-color-white);
	font: 400 21px/24px var(--sc-font-secondary);
}

.sc-header__lang .sc-header__lang-switcher a,
.sc-header__lang-nav:not(.is-open) .sc-mobile-header__lang {
	display: none;
}

.sc-header__lang-nav {
	position: relative;
}

.sc-header__lang-nav .sc-mobile-header__lang {
	background: var(--sc-color-white);
	border-radius: 12px;
	position: absolute;
	width: 235px;
	padding: 30px 18px;
	transform: translateX(-50%);
	left: 50%;
	top: 50px;
}

.sc-header__lang-nav .sc-mobile-header__lang::before {
	content: "";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 15px;
	background: var(--sc-color-white);
	clip-path: path('M 30 0 Q 34 0 40 4 L 60 15 L 0 15 L 20 4 Q 26 0 30 0 Z ');
}

.sc-header__lang-nav .sc-mobile-header__lang .sc-language-switcher-card__list {
	gap: 10px;
}

.sc-header__lang-nav .sc-mobile-header__lang span.sc-language-switcher-card__item.is-active {
	border-bottom: 1px solid #00000033;
	padding-bottom: 10px;
}

/* =========================
   Buttons
========================= */
.sc-header__button,
.sc-mega__promo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--sc-radius-sm);
	background: transparent;
	color: var(--sc-color-white);
	font: 700 14px/20px var(--sc-font-secondary);
	text-decoration: none;
	white-space: nowrap;
	transition:
		background var(--sc-transition-fast),
		color var(--sc-transition-fast),
		border-color var(--sc-transition-fast),
		opacity var(--sc-transition-fast);
}

.sc-mega__promo-button:not(:hover) {
	background: var(--sc-color-primary);
}

.sc-header__button:hover {
	border-color: var(--sc-color-white);
	background: var(--sc-color-white);
	color: var(--sc-color-primary);
	text-decoration: none;
	opacity: 0.87 !important;
}

.sc-header__buttons .sc-header__button:first-child {
	border-color: var(--sc-color-white);
	background: var(--sc-color-white);
	color: var(--sc-color-primary);
}

.sc-header__buttons .sc-header__button:hover {
	background: var(--sc-color-text);
	border-color: var(--sc-color-text);
	color: #fff;
}

/* =========================
   Mega Menu
========================= */
.sc-mega {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease;
}

.sc-mega.is-open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sc-mega__panel {
	padding-top: 0;
}

.sc-mega__inner {
	display: grid;
	align-items: stretch;
	background: var(--sc-color-surface);
	border-radius: 0 0 var(--sc-radius-2xl) var(--sc-radius-2xl);
	box-shadow: var(--sc-shadow-soft);
	backdrop-filter: blur(12px);
}

.sc-mega__inner:has(.sc-mega__sidebar) {
	grid-template-columns: 296px minmax(0, 1fr);
}

.sc-mega__content__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 28px;
	align-items: stretch;
}

.sc-mega__sidebar:hover .sc-mega__sidebar-header,
.sc-mega__sidebar:hover p.sc-mega__sidebar-text,
.sc-mega__sidebar-image,
.sc-mega__sidebar {
	transition: 0.3s;
}

.sc-mega__sidebar {
	padding: 50px 32px 25px;
	background: var(--sc-color-white);
	border-radius: 0 0 var(--sc-radius-2xl) var(--sc-radius-2xl);
}

.sc-mega__sidebar:hover {
	box-shadow: 5px 0px 12px 0px #00000040;
}

.sc-mega__sidebar-image {
	margin-bottom: 18px;
	border-radius: 17px;
	position: relative;
}


.sc-mega__sidebar-image img {
	border-radius: 17px;
}

aside.sc-mega__sidebar:hover .sc-mega__sidebar-image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 111;
	width: 100%;
	height: 100%;
	background-blend-mode: multiply;
	border-radius: 17px;
	background: linear-gradient(110.13deg, rgba(0, 148, 255, 0.5) 2.71%, rgba(10, 49, 132, 0.5) 91.35%);
}

.sc-mega__sidebar-image img,
.sc-mega__promo-image img {
	display: block;
	width: 100%;
	height: auto;
}

.sc-mega__sidebar-header {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--sc-color-border);
}

.sc-mega__sidebar-header-inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.sc-mega__sidebar-header a:hover svg * {
	/* stroke: var(--sc-color-primary) !important; */
}

.sc-mega__sidebar-header-inner svg {
	margin-bottom: 10px;
}

.sc-mega__sidebar-title {
	margin-bottom: 0 !important;
	color: #2c3751;
	font: 700 21px/24px var(--sc-font-secondary);
	max-width: 190px;
}

aside.sc-mega__sidebar:hover .sc-mega__sidebar-header svg {
	width: 22px;
	height: 22px;
}

aside.sc-mega__sidebar:hover .sc-mega__sidebar-header svg>g {
	opacity: 1;
}

.sc-mega__sidebar-title a,
.sc-mega__subtitle a {
	color: inherit;
	text-decoration: none;
}

.sc-mega__sidebar-title a:hover,
.sc-mega__subtitle a:hover {
	color: #0c63c7;
	text-decoration: none;
}

.sc-mega__sidebar-text {
	color: var(--sc-color-text);
	font: 400 14px/20px var(--sc-font-secondary);
}

.sc-mega__sidebar:hover .sc-mega__sidebar-header {
	padding-top: 10px;
}

.sc-mega__sidebar:hover .sc-mega__sidebar-header,
.sc-mega__sidebar:hover p.sc-mega__sidebar-text {
	padding-left: 10px;
}

.sc-mega__sidebar .sc-mega__sidebar-header,
.sc-mega__sidebar p.sc-mega__sidebar-text {
	max-width: 222px;
	margin-left: auto;
	margin-right: auto;
}

.sc-mega__content {
	min-width: 0;
	padding: 50px 25px 25px 50px;
}

.sc-mega__title {
	margin: 0 0 26px;
	color: var(--sc-color-heading);
	font: 400 28px/32px var(--sc-font-secondary);
}

.sc-mega__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
	gap: 24px 22px;
}

.sc-mega__column {
	min-width: 0;
}

.sc-mega__column-head,
.sc-mobile-mega__column-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.sc-mega__column a.sc-mega__column-head:not(:hover) .sc-mega__column-text span,
.sc-mega__column div.sc-mega__column-head .sc-mega__column-text span {
	opacity: 0;
}

.sc-mega__column a.sc-mega__column-head:hover .sc-mega__column-text h4.sc-mega__subtitle img {
	opacity: 0.75;
}

.sc-mega__column a.sc-mega__column-head:hover .sc-mega__icon {
	background: var(--sc-color-primary);
}

.sc-mega__column a.sc-mega__column-head:hover .sc-mega__icon svg * {
	stroke: var(--sc-color-white);
}

.sc-mega__icon,
.sc-mobile-mega__icon {
	display: flex;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--sc-color-white);
	border-radius: var(--sc-radius-xs);
	box-shadow: var(--sc-shadow-icon);
}

.sc-mega__icon img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.sc-mega__column-text {
	min-width: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 10px;
}

.sc-mega__subtitle {
	margin: 0;
	color: var(--sc-color-text);
	font: 700 21px/20px var(--sc-font-secondary);
}

.sc-mega__excerpt {
	margin: 0;
	padding-bottom: 10px;
	color: var(--sc-color-text);
	font: 400 12px/1 var(--sc-font-secondary);
}

.sc-mega__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-mega__list-item {
	margin: 0;
	padding: 0;
}

.sc-mega__list-item a {
	color: var(--sc-color-text-dark) !important;
	font: 700 14px/1 var(--sc-font-secondary);
	text-decoration: none;
	transition: color var(--sc-transition-fast);
}

.sc-mega__list-item a:hover {
	text-decoration: none;
}

.sc-mega__list-item a:not(:hover) {
	opacity: 50%;
}

/* =========================
   Promo Box
========================= */
.sc-mega__promo {
	display: flex;
	flex-direction: column;
	align-self: start;
	padding: 40px 15px;
	background: var(--sc-color-white);
	border-radius: var(--sc-radius-xl);
}

.sc-mega__promo-image {
	margin-bottom: 14px;
	overflow: hidden;
}

.sc-mega__promo-title {
	margin: 0 0 10px;
	color: var(--sc-color-text-dark);
	font: 700 16px/20px var(--sc-font-secondary);
}

.sc-mega__promo-text {
	padding-bottom: 15px;
	color: var(--sc-color-text-dark);
	font: 400 12px/16px var(--sc-font-secondary);
}

.sc-mega__promo-button {
	align-self: flex-start;
	padding: 0 10px;
	border-color: var(--sc-color-primary);
	box-shadow: var(--sc-shadow-button);
}

a.sc-mega__promo-button:not(:hover) {
	background: var(--sc-color-primary);
	color: var(--sc-color-white);
}

.sc-mega__promo-button:hover {
	color: var(--sc-color-text);
}

/* =========================
   Mobile Language Card
========================= */
.sc-mobile-header__lang {
	padding: 30px 20px 50px;
	border-top: 1px solid #0000001a;
}

.sc-language-switcher-card__title {
	margin: 0 0 24px;
	color: var(--sc-color-accent);
	font: 600 20px/1 var(--sc-font-secondary);
}

.sc-language-switcher-card__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sc-language-switcher-card__item {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	color: #111;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.sc-language-switcher-card__item:hover {
	color: #111;
	text-decoration: none;
}

.sc-language-switcher-card__item.is-active {
	cursor: default;
}

.sc-language-switcher-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: var(--sc-radius-xs);
	background: var(--sc-color-primary);
	box-shadow: var(--sc-shadow-icon);
	color: var(--sc-color-white);
	font: 600 12px/1 var(--sc-font-ui);
	text-transform: uppercase;
}

.sc-language-switcher-card__label {
	display: inline-block;
	color: var(--sc-color-black);
	font: 600 18px/1 var(--sc-font-ui);
}

/* =========================
   Mobile Dropdown
========================= */
.sc-mobile-dropdown:not(.is-open) {
	display: none;
}

.sc-mobile-dropdown {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	min-height: 90dvh;
	overflow-y: auto;
	border-radius: 0 0 var(--sc-radius-2xl) var(--sc-radius-2xl);
	background: var(--sc-color-white);
	box-shadow: var(--sc-shadow-soft);
	backdrop-filter: blur(12px);
	-webkit-overflow-scrolling: touch;
}

/* =========================
   Tablet / Small Desktop
========================= */
@media (max-width: 1199px) {
	.sc-header__inner {
		flex-wrap: wrap;
		row-gap: 14px;
		padding: 12px 0;
	}

	.sc-header__nav {
		order: 3;
		flex: 1 1 100%;
		justify-content: center;
	}

	.sc-header__nav-list {
		flex-wrap: wrap;
	}

	.sc-header__nav-link {
		min-height: auto;
	}

	.sc-header__nav-item.is-active::after {
		top: 35px;
	}

	.sc-header__nav-link svg {
		bottom: -9px;
	}

	.sc-mega {
		position: relative;
		top: auto;
		left: auto;
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.sc-mega.is-open {
		display: block;
	}

	.sc-mega__inner {
		border-radius: 0 0 20px 20px;
	}
}

/* =========================
   Desktop
========================= */
@media (min-width: 768px) {

	.sc-header__logo img.mobile-only-logo.skip-lazy,
	.sc-mobile-dropdown,
	.sc-mobile-header__hamburger,
	.sc-mobile-search__button {
		display: none;
	}

	.sc-header__top {
		background: var(--dektop-header-background);
	}

	.sc-header__search.is-open .sc-header__search-toggle {
		pointer-events: none;
		opacity: 0;
	}

	.sc-header__search-form {
		transition: width var(--sc-transition-base),
			opacity var(--sc-transition-fast),
			visibility var(--sc-transition-fast);
	}

	.sc-header__search-input {
		border-bottom: 2px solid rgba(255, 255, 255, 0.8) !important;
		background: transparent !important;
		color: var(--sc-color-white) !important;
	}


}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {

	.sc-header__logo img.stnd.skip-lazy.default-logo,
	nav.sc-header__nav,
	.sc-header__actions .sc-header__lang,
	.sc-header__actions .sc-header__buttons,
	.sc-header__search-close {
		display: none;
	}

	.sc-mobile-header__hamburger {
		display: flex;
		width: 30px;
		text-align: right;
	}

	.sc-mobile-header__hamburger:not(.is-active) .close,
	.sc-mobile-header__hamburger.is-active .open {
		display: none;
	}

	button.sc-header__search-toggle.js-sc-search-toggle svg path {
		/* stroke: var(--sc-color-text-dark); */
	}

	.sc-mobile-mega__panel {
		border-bottom: 1px solid #0000001a;
	}

	.sc-mobile-mega__panel:not(.is-active) .sc-mobile-mega__content__box {
		display: none;
	}

	.sc-mobile-mega__panel.is-active .sc-mobile-mega__content__list>.sc-mobile-mega__more-list>svg {
		transform: rotate(270deg);
	}

	.sc-mobile-mega__column {
		padding-bottom: 20px;
	}

	.sc-mobile-mega__content__list {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 81px;
		padding: 0 20px;
	}

	.sc-mobile-mega__content__box {
		padding: 0 35px;
	}

	span.sc-mobile-mega__more-list {
		width: 30px;
		text-align: right;
	}

	h2.sc-mobile-mega__title {
		color: var(--sc-color-accent);
		font: 600 20px/1 var(--sc-font-secondary);
	}

	h4.sc-mobile-mega__subtitle {
		margin: 0;
		color: var(--sc-color-black);
		font: 600 18px/1 var(--sc-font-ui);
	}

	p.sc-mobile-mega__excerpt {
		padding-bottom: 8px;
		color: var(--sc-color-text);
		font: 400 16px/20px var(--sc-font-secondary);
	}

	ul.sc-mobile-mega__list {
		padding: 0 0 0 10px;
	}

	ul.sc-mobile-mega__list li.sc-mobile-mega__list-item {
		padding-bottom: 8px;
	}

	li.sc-mobile-mega__list-item a {
		color: var(--sc-color-muted);
		font: 700 14px/1 var(--sc-font-secondary);
	}

	.sc-mobile-mega__icon {
		flex: 0 0 27px;
		width: 27px;
		height: 27px;
		background: var(--sc-color-primary);
	}

	.sc-mobile-mega__icon svg {
		width: 17px;
		height: 17px;
	}

	.sc-mobile-mega__icon svg path {
		stroke: var(--sc-color-white);
	}

	.sc-header__inner {
		gap: 12px;
	}

	.sc-header__actions {
		flex-wrap: wrap;
		gap: 26px;
	}

	.sc-header__buttons {
		flex-wrap: wrap;
	}

	.sc-header__actions:has(.sc-mobile-header__hamburger.is-active) .sc-header__search {
		display: none;
	}

	.sc-header__search.is-open .sc-header__search-form {
		position: fixed;
		top: 90px;
		left: 50%;
		width: 290px;
		min-width: 90%;
		padding: 5px;
		background: var(--sc-color-white) !important;
		border-radius: var(--sc-radius-lg);
		transform: translateX(-50%);
	}

	.sc-header__search.is-open .sc-header__search-form::after {
		content: "";
		position: absolute;
		right: 67px;
		width: 1px;
		height: 20px;
		background-color: var(--sc-color-black);
	}

	input.sc-header__search-input {
		background-color: var(--sc-color-white) !important;
		color: var(--sc-color-black) !important;
	}

	input.sc-header__search-input::placeholder {
		color: #333;
	}

	button.sc-mobile-search__button {
		margin-right: 4px;
		padding: 8px;
		border-radius: var(--sc-radius-md);
		background: var(--sc-color-primary) !important;
		font: 600 14px/1 var(--sc-font-secondary);
	}

	.sc-mega__grid {
		grid-template-columns: 1fr;
	}

	.sc-mega__title {
		font-size: 28px;
	}
}

/* =========================
   Wide Desktop
========================= */
@media only screen and (min-width: 1000px) {

	.new-sc-header .sc-mega .container,
	.new-sc-header .sc-header__top .container {
		max-width: 1672px;
	}

	.new-sc-header .sc-mega .container {
		padding: 0;
	}
}

/* =========================
   Medium Layout Offset
========================= */
@media (max-width: 1198px) and (min-width: 767px) {
	body:has(header.new-sc-header) {
		margin-top: 100px;
	}
}

/* Menu Animation Arrow */

.sc-mega__list-item a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-mega__list-item a::after {
	content: "";
	display: inline-block;
	width: 17px !important;
	min-width: 17px !important;
	height: 17px !important;
	margin-left: 6px;
	background-image: url("/wp-content/uploads/menuarrow.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-mega__list-item a:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.sc-mega__list-item a:hover {
	color: #0094FF;
}


.sc-mega__list-item a {
	justify-content: space-between;
	width: 100%;
}


@media(min-width:1350px) {

	/* Menu product column fixing */
	div#sc-panel-menu-0 .sc-mega__grid .sc-mega__column:nth-child(4),
	div#sc-panel-menu-0 .sc-mega__grid .sc-mega__column:nth-child(5) {
		grid-column: 3;
	}

	html[lang="en-US"] div#sc-panel-menu-0 .sc-mega__grid .sc-mega__column:nth-child(4) {
		margin-top: -240px;
	}

	html[lang="en-US"] div#sc-panel-menu-0 .sc-mega__grid .sc-mega__column:nth-child(5) {
		margin-top: -180px;
	}

	html[lang="de-DE"] div#sc-panel-menu-0 .sc-mega__grid .sc-mega__column:nth-child(4) {
		margin-top: -240px;
	}

	html[lang="de-DE"] div#sc-panel-menu-0 .sc-mega__grid .sc-mega__column:nth-child(5) {
		margin-top: -215px;
	}

	html[lang="de-DE"] .sc-header__nav-link {
		white-space: nowrap;
	}
}

@media (min-width: 1661px) {
	html[lang="en-US"] div#sc-panel-menu-1 .sc-mega__grid .sc-mega__column:nth-child(6) {
		grid-column: 5;
		margin-top: -190px;
	}

	html[lang="de-DE"] div#sc-panel-menu-1 .sc-mega__grid .sc-mega__column:nth-child(6) {
		grid-column: 5;
		margin-top: -190px;
	}
}