/* Global floating offset for the desktop header panel. */
:root {
	--idl-header-gap: 18px;
}

/*
Theme Name: Porto Child
Theme URI: https://www.portotheme.com/wordpress/porto
Author: P-THEMES
Author URI: https://www.portotheme.com/
Description: Porto Responsive WordPress + eCommerce Theme.
Version: 1.1
Template: porto
License: Commercial
License URI: http://themeforest.net/licenses/regular_extended
Tags: woocommerce, corporate, ecommerce, responsive, blue, black, green, white, light, dark, red, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
*/

/*************** ADD YOUR CUSTOM CSS HERE  ***************/

body #header.sticky-header,
body #header.fixed-header,
body .header-wrapper.sticky-header,
body .sticky-header-active #header,
body.sticky-header-active #header {
	background: transparent !important;
	background-color: transparent !important;
	border-top-color: transparent !important;
}

body #header.sticky-header .header-main.sticky,
body #header.sticky-header .header-main.sticky.change-logo,
body.sticky-header-active #header .header-main.sticky,
body.sticky-header-active #header .header-main.sticky.change-logo {
	background: #ffffff !important;
	background-color: #ffffff !important;
}

/*
 * Keep the sticky menu aligned exactly like the static menu.
 *
 * The theme centers the sticky bar with `left: 50%` plus
 * `translateX(-50%)`, while the default bar uses auto margins.
 * At zoomed-out viewport scales that mismatch causes a visible
 * horizontal jump when the sticky state activates.
 */
body #header .header-main.sticky,
body #header .header-main.sticky.change-logo,
body.sticky-header-active #header .header-main.sticky,
body.sticky-header-active #header .header-main.sticky.change-logo {
	left: 0 !important;
	right: 0 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	transform: none !important;
}

/*
 * Keep desktop dropdowns clickable.
 *
 * The menu was given visual spacing via `.popup { margin-top: 10px }`
 * in the frontend-generated header CSS, which creates a hover gap
 * between the top-level item and the submenu. Replace that gap with
 * internal padding and keep the popup above the page content.
 */
body #header .main-menu,
body #header .main-menu > li.menu-item {
	position: relative;
	z-index: 10000;
}

body #header .main-menu > li.menu-item > .popup {
	margin-top: 0 !important;
	padding-top: 10px !important;
	z-index: 10001 !important;
	pointer-events: auto !important;
}

body #header .main-menu > li.menu-item > .popup,
body #header .main-menu > li.menu-item > .popup .inner,
body #header .main-menu > li.menu-item > .popup .sub-menu,
body #header .main-menu > li.menu-item > .popup a {
	pointer-events: auto !important;
}

body:not(.home) .page-top {
	position: relative !important;
	z-index: 0 !important;
	overflow: visible !important;
}

body:not(.home) .page-top::before {
	content: "" !important;
	position: absolute !important;
	top: calc( -1 * ( var( --pz-header-height ) + var( --pz-header-offset ) + 32px ) ) !important;
	right: 0 !important;
	left: 0 !important;
	bottom: 0 !important;
	background: inherit !important;
	z-index: -1 !important;
}

body:not(.home) .page-top > .container,
body:not(.home) .page-top .page-title-wrap,
body:not(.home) .page-top .breadcrumbs-wrap {
	position: relative !important;
	z-index: 1 !important;
}

body #header .idl-menu-bar-section {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

body #header .idl-menu-bar-section > :not(.idl-menu-bar-bg):not(.idl-menu-bar-reveal-mask) {
	position: relative;
	z-index: 1;
}

body #header .idl-menu-bar-section > .idl-menu-bar-bg,
body #header .idl-menu-bar-section > .idl-menu-bar-reveal-mask {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

body #header .idl-menu-bar-section > .idl-menu-bar-bg {
	z-index: 0;
	transform-origin: left center;
}

body #header .idl-menu-bar-section > .idl-menu-bar-reveal-mask {
	z-index: 2;
}

/*
 * Keep the frontend header attached to the admin bar for logged-in users.
 *
 * WordPress normally bumps the whole page with `html { margin-top }`.
 * On this Porto layout that leaves a white strip above the overlay header,
 * so we remove the page bump and offset only the header itself.
 */
html {
	margin-top: 0 !important;
}

body.admin-bar.fixed-header #header {
	top: 32px !important;
}

body.admin-bar #header .header-main.sticky,
body.admin-bar #header .header-main.sticky.change-logo,
body.admin-bar.sticky-header-active #header .header-main.sticky,
body.admin-bar.sticky-header-active #header .header-main.sticky.change-logo {
	top: 32px !important;
}

/*
 * Remove the extra white band above and below the header content.
 *
 * Porto adds vertical padding to the header columns and logo by default,
 * which leaves the navigation floating inside a tall white bar.
 */
body #header .header-main {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

body #header .header-main > .container {
	min-height: 0 !important;
}

body #header .header-main .header-left,
body #header .header-main .header-center,
body #header .header-main .header-right,
body #header .logo {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

@media screen and (max-width: 782px) {
	body.admin-bar.fixed-header #header {
		top: 46px !important;
	}

	body.admin-bar #header .header-main.sticky,
	body.admin-bar #header .header-main.sticky.change-logo,
	body.admin-bar.sticky-header-active #header .header-main.sticky,
	body.admin-bar.sticky-header-active #header .header-main.sticky.change-logo {
		top: 46px !important;
	}
}

/*
 * Keep the Porto corporate header stable on desktop.
 *
 * The previous desktop override centered `#main-menu` with absolute positioning.
 * That looked fine at some widths, but on the initial render the menu could
 * collide with the search block / utility items and appear broken. Use a
 * normal two-column utility layout instead so the menu always owns real space.
 */
@media (min-width: 992px) {
	body #header.header-corporate .header-main,
	body #header.header-corporate .header-main.header-body {
		overflow: visible;
	}

	body #header.header-corporate .header-main .header-container,
	body #header.header-corporate .header-main > .container {
		display: flex;
		align-items: center;
		gap: clamp(20px, 2vw, 40px);
		min-height: clamp(88px, 7vw, 118px);
	}

	body #header.header-corporate .header-main .header-left {
		flex: 0 1 clamp(190px, 19vw, 300px);
		max-width: clamp(190px, 19vw, 300px);
		min-width: 0;
	}

	body #header.header-corporate .header-main .header-right {
		flex: 1 1 auto;
		min-width: 0;
		margin-left: auto;
	}

	body #header.header-corporate.header-10 .header-main .header-right {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	body #header.header-corporate.header-10 .header-main .header-right-top {
		display: flex;
		align-items: center;
		min-width: 0;
		gap: clamp(12px, 1vw, 20px);
		justify-content: flex-end;
	}

	body #header.header-corporate.header-10 .header-main .header-right-bottom,
	body #header.header-corporate.header-11 .header-main .header-right {
		display: grid;
		align-items: center;
		min-width: 0;
		width: 100%;
		max-width: 100%;
		column-gap: clamp(16px, 1.2vw, 24px);
		grid-template-columns: minmax(0, 1fr);
		grid-auto-flow: column;
		grid-auto-columns: max-content;
	}

	body #header.header-corporate.header-10 .header-main #main-menu,
	body #header.header-corporate.header-11 .header-main #main-menu {
		order: 1;
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		justify-content: center;
		width: 100%;
		max-width: 100%;
	}

	body #header.header-corporate.header-11 .header-main .searchform-popup,
	body #header.header-corporate.header-11 .header-main .share-links,
	body #header.header-corporate.header-11 .header-main #mini-cart,
	body #header.header-corporate.header-11 .header-main .tooltip-icon,
	body #header.header-corporate.header-11 .header-main .block-inline,
	body #header.header-corporate.header-10 .header-main .share-links,
	body #header.header-corporate.header-10 .header-main .mobile-toggle,
	body #header.header-corporate.header-10 .header-main .tooltip-icon,
	body #header.header-corporate.header-10 .header-main #mini-cart,
	body #header.header-corporate.header-10 .header-main .searchform-popup,
	body #header.header-corporate.header-10 .header-main .header-contact,
	body #header.header-corporate.header-11 .header-main .mobile-toggle {
		order: 2;
		flex: 0 0 auto;
		justify-self: end;
		max-width: 100%;
	}

	body #header.header-corporate .header-main #main-menu .main-menu,
	body #header.header-corporate .header-main #main-menu .mega-menu {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	body #header.header-corporate .header-main .main-menu > li.menu-item > a {
		padding-left: clamp(8px, 0.7vw, 14px) !important;
		padding-right: clamp(8px, 0.7vw, 14px) !important;
		font-size: clamp(14px, 0.82vw, 16px) !important;
		line-height: 1.2 !important;
		white-space: nowrap;
	}

	body #header.header-corporate .header-main .share-links {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin-left: clamp(8px, 0.8vw, 16px);
	}

	body #header.header-corporate .header-main .logo img {
		width: 100%;
		height: auto;
	}
}

@media (min-width: 992px) and (max-width: 1279px) {
	body #header.header-corporate .header-main .header-container,
	body #header.header-corporate .header-main > .container {
		gap: 16px;
	}

	body #header.header-corporate .header-main .header-left {
		flex-basis: clamp(160px, 18vw, 220px);
		max-width: clamp(160px, 18vw, 220px);
	}

	body #header.header-corporate .header-main .main-menu > li.menu-item > a {
		padding-left: 9px !important;
		padding-right: 9px !important;
		font-size: 14px !important;
	}

	body #header.header-corporate.header-10 .header-main .header-right-top {
		margin-bottom: 2px;
	}
}

@media (max-width: 991px) {
	body #header .header-main {
		border-radius: 0 !important;
		overflow: visible;
	}

	body #header .header-main > .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
	}

	body #header .header-main .header-left,
	body #header .header-main .header-right {
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		min-width: 0;
	}

	body #header .header-main .header-left {
		flex: 1 1 auto;
		min-width: 0;
	}

	body #header .header-main .header-right {
		flex: 0 0 auto;
		margin-left: auto;
		justify-content: flex-end;
		width: auto;
	}

	body #header .header-main .header-right > * {
		flex: 0 0 auto;
	}

	body #header > .main-menu-wrap,
	body #header .main-menu-wrap,
	body #header .header-bottom,
	body #header .header-main #main-menu,
	body #header .header-main .main-menu,
	body #header .header-main .menu-custom-block,
	body #header .header-main .header-contact,
	body #header .header-main .searchform,
	body #header .header-main .share-links,
	body #header .header-main #mini-cart,
	body #header .header-main .tooltip-icon,
	body #header .header-main .block-inline {
		display: none !important;
	}

	body #header .header-main .mobile-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		margin-left: auto;
		background-color: #59125f !important;
		color: #ffffff !important;
	}

	body #header .header-main .mobile-toggle:hover,
	body #header .header-main .mobile-toggle:focus {
		background-color: #59125f !important;
		color: #ffffff !important;
	}

	body #header .header-main .logo {
		max-width: calc(100% - 72px);
	}

	body #header .header-main .logo img {
		display: block;
		height: auto;
		max-width: 100%;
	}

	body #header .idl-menu-bar-section {
		overflow: visible;
	}

	body #header #nav-panel {
		background-color: #ffffff;
		position: relative;
		z-index: 10002;
		padding-bottom: 0;
		width: 100%;
	}
}


/*
 * IT dla Lekarzy – cleanup of the desktop header.
 *
 * The live site should show only the logo + main navigation on desktop.
 * Remove Porto utility icons from the right side (search, tooltip,
 * socials, cart, contact block and desktop hamburger) and let the menu
 * take the full available width.
 */
@media (min-width: 992px) {
	body #header.header-corporate.header-10 .header-main .header-right-top,
	body #header.header-corporate .header-main .searchform-popup,
	body #header.header-corporate .header-main .share-links,
	body #header.header-corporate .header-main #mini-cart,
	body #header.header-corporate .header-main .porto-tooltip,
	body #header.header-corporate .header-main .tooltip-icon,
	body #header.header-corporate .header-main .header-contact,
	body #header.header-corporate .header-main .block-inline,
	body #header.header-corporate .header-main .mobile-toggle {
		display: none !important;
	}

	body #header.header-corporate.header-10 .header-main .header-right,
	body #header.header-corporate.header-11 .header-main .header-right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex: 1 1 auto;
		min-width: 0;
	}

	body #header.header-corporate.header-10 .header-main .header-right-bottom,
	body #header.header-corporate.header-11 .header-main .header-right {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		max-width: 100%;
		grid-template-columns: none !important;
		grid-auto-flow: initial !important;
		grid-auto-columns: initial !important;
	}

	body #header.header-corporate.header-10 .header-main #main-menu,
	body #header.header-corporate.header-11 .header-main #main-menu {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
		justify-content: center;
	}
}


/* ITDL MENU MARGIN + OFFSET GUARD V7.8.5.7
 * Cel: zostawić poprzedni wygląd, marginesy i animację menu.
 * Poprawka dotyka tylko przełączania stanu sticky przy przewijaniu do samej góry.
 */
@media (min-width: 992px) {
	/* Usuwamy prawe narzędzia Porto, ale bez ruszania marginesów i wysokości belki. */
	body #header .porto-tooltip-wrap.empty-tooltip,
	body #header .porto-tooltip,
	body #header .tooltip-icon,
	body #header .tooltip-popup,
	body #header .header-contact,
	body #header .searchform-popup,
	body #header .searchform,
	body #header .share-links,
	body #header #mini-cart,
	body #header .mini-cart,
	body #header .header-minicart,
	body #header .my-account,
	body #header .myaccount,
	body #header .wishlist,
	body #header .yith-wcwl-add-to-wishlist,
	body #header .yith-woocompare-open,
	body #header .compare-count,
	body #header .hamburguer-btn,
	body #header .mobile-toggle {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	/* Porto przy sticky potrafi przeliczyć top na 0 i wtedy menu robi „skok”.
	   Top jest brany z faktycznej pozycji menu po załadowaniu strony, więc zachowuje istniejący margines. */
	body.idl-menu-offset-guard #header,
	body.idl-menu-offset-guard.fixed-header #header,
	body.idl-menu-offset-guard.sticky-header-active #header,
	body.idl-menu-offset-guard #header.sticky-header,
	body.idl-menu-offset-guard #header.fixed-header,
	body.idl-menu-offset-guard .header-wrapper.sticky-header {
		top: var(--idl-header-natural-top, inherit) !important;
	}

	body.idl-menu-offset-guard #header .header-main.sticky,
	body.idl-menu-offset-guard #header .header-main.sticky.change-logo,
	body.idl-menu-offset-guard.sticky-header-active #header .header-main.sticky,
	body.idl-menu-offset-guard.sticky-header-active #header .header-main.sticky.change-logo {
		top: var(--idl-header-natural-top, inherit) !important;
		left: 0 !important;
		right: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	/* Na samej górze strony wyłączamy tylko przejściowy ruch top/transform.
	   Nie dotykamy paddingów, marginów, gapów, wysokości ani animacji reveal menu. */
	body.idl-menu-is-at-top #header,
	body.idl-menu-is-at-top #header .header-main,
	body.idl-menu-is-at-top #header .header-main.sticky,
	body.idl-menu-is-at-top #header .header-main.sticky.change-logo {
		transition-property: background-color, border-color, box-shadow, opacity !important;
		-webkit-transform: none !important;
		transform: none !important;
	}
}


/* ========================================================================
   ITDL SOFT SECTION RHYTHM + RESPONSIVE POLISH V7.8.5.9
   Cel: delikatnie ujednolicić rytm sekcji bez narzucania jednego
   sztywnego marginesu wszystkim elementom. Reguły mają niską specyficzność,
   więc istniejące ustawienia Elementor/Porto nadal wygrywają tam, gdzie
   strona ma zaprojektowany indywidualny układ.
   ======================================================================== */
:root {
	--idl-section-y: clamp(46px, 5.4vw, 86px);
	--idl-section-y-compact: clamp(32px, 4vw, 58px);
	--idl-content-gap: clamp(16px, 1.8vw, 26px);
	--idl-mobile-section-y: clamp(34px, 9vw, 52px);
	--idl-mobile-content-gap: 18px;
}

html,
body {
	max-width: 100%;
	overflow-x: clip;
}

body,
body * {
	box-sizing: border-box;
}

body :where(#main, .page-wrapper, .main-content, .content-area, .page-content, .entry-content, .elementor, .elementor-section, .elementor-container, .e-con, .e-con-inner, .vc_row, .row) {
	max-width: 100%;
}

/* Rytm pionowy dotyczy tylko dużych sekcji treści, nie każdego elementu strony. */
body :where(.entry-content > .elementor > .elementor-section.elementor-top-section, .page-content > .elementor > .elementor-section.elementor-top-section, .elementor > .elementor-section.elementor-top-section, .entry-content > .e-con.e-parent, .page-content > .e-con.e-parent, #main > .porto-block, .entry-content > .wp-block-group, .page-content > .wp-block-group):not(.idl-no-global-spacing):not(.elementor-section-height-full):not(.elementor-section-height-min-height) {
	padding-block: var(--idl-section-y);
}

/* Sekcje zwarte nadal mają jeden wspólny rytm, ale bez „napompowania” całej strony. */
body :where(.idl-section-compact, .elementor-section.idl-section-compact, .e-con.idl-section-compact, .porto-block.idl-section-compact) {
	padding-block: var(--idl-section-y-compact);
}

/* Gdy sekcje występują jedna po drugiej, nie dokładamy twardych marginesów. */
body :where(.entry-content, .page-content) > :where(.elementor, .e-con, .wp-block-group, .porto-block):first-child {
	margin-top: 0;
}

body :where(.entry-content, .page-content) > :where(.elementor, .e-con, .wp-block-group, .porto-block):last-child {
	margin-bottom: 0;
}

/* Delikatne ujednolicenie odstępów wewnątrz treści. */
body :where(.elementor-widget:not(:last-child), .wpb_content_element:not(:last-child), .porto-u-main-heading:not(:last-child), .porto-sicon-box:not(:last-child), .wp-block-heading:not(:last-child)) {
	margin-bottom: var(--idl-content-gap);
}

body :where(p:last-child, ul:last-child, ol:last-child, .elementor-widget-container > :last-child, .wpb_wrapper > :last-child) {
	margin-bottom: 0;
}

body :where(h1, h2, h3, h4, h5, h6) {
	text-wrap: balance;
}

body :where(p, li) {
	text-wrap: pretty;
}

/* Media i elementy osadzone nie mogą rozwalać layoutu. */
body :where(img, svg, video, iframe, canvas) {
	max-width: 100%;
}

body :where(img, video) {
	height: auto;
}

body :where(iframe) {
	border: 0;
}

body :where(.elementor-widget-image img, .wpb_single_image img, .porto-carousel img) {
	display: block;
}

body :where(.table-responsive, .wp-block-table, .entry-content > table, .page-content > table) {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

body :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], select, textarea) {
	max-width: 100%;
}

body :where(textarea) {
	resize: vertical;
}

/* Tablet i mniejsze ekrany: mniej powietrza, bez naruszania indywidualnych sekcji. */
@media (max-width: 991px) {
	:root {
		--idl-section-y: clamp(40px, 6vw, 64px);
		--idl-content-gap: 20px;
	}

	body :where(.elementor-container, .e-con, .e-con-inner, .vc_row, .row, .elementor-column, .vc_column_container, [class*="col-"]) {
		min-width: 0;
	}

	body :where(.elementor-widget-wrap, .elementor-column-wrap, .vc_column-inner, .wpb_wrapper) {
		max-width: 100%;
	}
}

/* Mobile: główna korekta responsywności bez wymuszania sztywnego layoutu na całej stronie. */
@media (max-width: 767px) {
	:root {
		--idl-section-y: var(--idl-mobile-section-y);
		--idl-content-gap: var(--idl-mobile-content-gap);
	}

	html,
	body,
	body :where(#main, .page-wrapper, .main-content, .content-area, .page-content, .entry-content, .elementor, .elementor-section, .elementor-container, .e-con, .e-con-inner) {
		width: 100%;
		max-width: 100%;
		overflow-x: clip;
	}

	body :where(.entry-content > .elementor > .elementor-section.elementor-top-section, .page-content > .elementor > .elementor-section.elementor-top-section, .elementor > .elementor-section.elementor-top-section, .entry-content > .e-con.e-parent, .page-content > .e-con.e-parent, #main > .porto-block, .entry-content > .wp-block-group, .page-content > .wp-block-group):not(.idl-no-global-spacing):not(.elementor-section-height-full):not(.elementor-section-height-min-height) {
		padding-block: var(--idl-section-y);
	}

	body :where(.elementor-row, .elementor-container, .e-con, .e-con-inner, .vc_row, #main .row) {
		row-gap: clamp(22px, 7vw, 36px);
	}

	body :where(.elementor-column, .wpb_column, .vc_column_container, #main [class*="col-"]) {
		min-width: 0;
		max-width: 100%;
	}

	body :where(h1) {
		font-size: clamp(30px, 9vw, 44px);
		line-height: 1.08;
	}

	body :where(h2) {
		font-size: clamp(25px, 7.2vw, 36px);
		line-height: 1.14;
	}

	body :where(h3) {
		font-size: clamp(21px, 5.8vw, 29px);
		line-height: 1.2;
	}

	body :where(p, li) {
		font-size: 16px;
		line-height: 1.62;
	}

	body :where(.btn, .button, button, input[type="submit"], .elementor-button, .wpforms-submit, .wpcf7-submit) {
		max-width: 100%;
		white-space: normal;
	}

	body :where(table) {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 480px) {
	:root {
		--idl-section-y: clamp(32px, 10vw, 46px);
		--idl-content-gap: 16px;
	}

	body :where(h1) {
		font-size: clamp(28px, 10vw, 38px);
	}

	body :where(h2) {
		font-size: clamp(24px, 8vw, 32px);
	}
}

/* ========================================================================
   ITDL v22 — stabilny nagłówek, prawdziwa jasna stopka, bez cofania
   ======================================================================== */
:root {
	--itdl-v22-header-h: 94px;
	--itdl-v22-header-h-mobile: 76px;
	--itdl-v22-purple: #59125f;
	--itdl-v22-text: #071126;
}

html,
body {
	margin-top: 0 !important;
}

body .header-wrapper,
body .header-wrapper.wide,
body .header-wrapper.fixed-header,
body .header-wrapper.sticky-header,
body .header-wrapper.header-reveal {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	z-index: 1000 !important;
}

body #header.itdl-header-v22,
body #header.itdl-header-v22.header-corporate,
body #header.itdl-header-v22.sticky-header,
body #header.itdl-header-v22.fixed-header {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	border: 0 !important;
}

body #header.itdl-header-v22 .header-main,
body #header.itdl-header-v22 .header-main.header-body,
body #header.itdl-header-v22 .header-main.sticky,
body #header.itdl-header-v22 .header-main.sticky.change-logo,
body.sticky-header-active #header.itdl-header-v22 .header-main,
body.sticky-header-active #header.itdl-header-v22 .header-main.sticky,
body.sticky-header-active #header.itdl-header-v22 .header-main.sticky.change-logo {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: var(--itdl-v22-header-h) !important;
	height: var(--itdl-v22-header-h) !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	border: 0 !important;
	overflow: visible !important;
}

body #header.itdl-header-v22 .itdl-header-inner,
body #header.itdl-header-v22 .header-container.container,
body #header.itdl-header-v22 .header-main > .container {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	flex-wrap: nowrap !important;
	gap: clamp(24px, 4vw, 72px) !important;
	width: 100% !important;
	max-width: none !important;
	min-height: var(--itdl-v22-header-h) !important;
	height: var(--itdl-v22-header-h) !important;
	margin: 0 auto !important;
	padding: 0 clamp(28px, 4vw, 74px) !important;
	background: #ffffff !important;
}

body #header.itdl-header-v22 .itdl-header-logo,
body #header.itdl-header-v22 .header-left {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: min(260px, 26vw) !important;
	min-width: 170px !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v22 .logo,
body #header.itdl-header-v22 .logo a {
	display: flex !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v22 .logo img {
	display: block !important;
	width: clamp(172px, 12vw, 226px) !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: 68px !important;
	object-fit: contain !important;
	margin: 0 !important;
}

body #header.itdl-header-v22 .itdl-header-nav,
body #header.itdl-header-v22 .header-right {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v22 #main-menu,
body #header.itdl-header-v22 .itdl-main-menu {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
}

body #header.itdl-header-v22 #main-menu .main-menu,
body #header.itdl-header-v22 #main-menu .mega-menu,
body #header.itdl-header-v22 #main-menu ul {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: nowrap !important;
	gap: clamp(18px, 2.1vw, 42px) !important;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body #header.itdl-header-v22 #main-menu li,
body #header.itdl-header-v22 #main-menu .menu-item {
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
}

body #header.itdl-header-v22 #main-menu a,
body #header.itdl-header-v22 .main-menu > li.menu-item > a,
body #header.itdl-header-v22 .mega-menu > li.menu-item > a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 8px 0 !important;
	margin: 0 !important;
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
	font-size: clamp(14px, .88vw, 16px) !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: -0.01em !important;
	color: var(--itdl-v22-text) !important;
	text-decoration: none !important;
	white-space: nowrap !important;
}

body #header.itdl-header-v22 #main-menu a:hover,
body #header.itdl-header-v22 #main-menu a:focus {
	color: var(--itdl-v22-purple) !important;
}

body #header.itdl-header-v22 .header-right-top,
body #header.itdl-header-v22 .searchform-popup,
body #header.itdl-header-v22 .searchform,
body #header.itdl-header-v22 .share-links,
body #header.itdl-header-v22 #mini-cart,
body #header.itdl-header-v22 .mini-cart,
body #header.itdl-header-v22 .header-minicart,
body #header.itdl-header-v22 .porto-tooltip,
body #header.itdl-header-v22 .porto-tooltip-wrap,
body #header.itdl-header-v22 .tooltip-icon,
body #header.itdl-header-v22 .tooltip-popup,
body #header.itdl-header-v22 .header-contact,
body #header.itdl-header-v22 .block-inline,
body #header.itdl-header-v22 .hamburguer-btn,
body #header.itdl-header-v22 .itdl-v12-burger,
body #header.itdl-header-v22 .itdl-v12-menu-panel {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body:not(.elementor-editor-active) #main,
body:not(.elementor-editor-active) .main,
body:not(.elementor-editor-active) .main-content,
body:not(.elementor-editor-active) .main-content-wrap,
body:not(.elementor-editor-active) #content,
body:not(.elementor-editor-active) .entry-content,
body:not(.elementor-editor-active) .page-content {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.home:not(.elementor-editor-active) #content > :first-child,
body.home:not(.elementor-editor-active) .entry-content > :first-child,
body.home:not(.elementor-editor-active) .page-content > :first-child,
body.home:not(.elementor-editor-active) .idl-hero-only:first-child,
body.home:not(.elementor-editor-active) section.idl-hero-only {
	margin-top: 0 !important;
}

body.home:not(.elementor-editor-active) .idl-hero-only,
body.home:not(.elementor-editor-active) section.idl-hero-only,
body.home:not(.elementor-editor-active) .elementor-section:first-of-type,
body.home:not(.elementor-editor-active) .e-con:first-of-type {
	min-height: calc(100vh - var(--itdl-v22-header-h)) !important;
}

body .footer-wrapper,
body .footer-wrapper.wide {
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	border: 0 !important;
}

body .footer-wrapper > *,
body #footer.itdl-footer-v22,
body footer.itdl-footer-v22 {
	background: #ffffff !important;
	background-color: #ffffff !important;
	color: var(--itdl-v22-text) !important;
}

body #footer.itdl-footer-v22 {
	width: 100% !important;
	margin: 0 !important;
	padding: 22px 0 !important;
	border-top: 1px solid #edf0f5 !important;
	box-shadow: none !important;
}

body #footer.itdl-footer-v22 .itdl-footer-v22__inner {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 24px !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 54px !important;
	margin: 0 auto !important;
	padding: 0 clamp(28px, 4vw, 74px) !important;
}

body #footer.itdl-footer-v22 .itdl-footer-v22__copy {
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	color: rgba(7, 17, 38, .72) !important;
	white-space: nowrap !important;
}

body #footer.itdl-footer-v22 .itdl-footer-v22__nav {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: wrap !important;
	gap: 10px 24px !important;
}

body #footer.itdl-footer-v22 .itdl-footer-v22__nav a {
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--itdl-v22-text) !important;
	text-decoration: none !important;
}

body #footer.itdl-footer-v22 .itdl-footer-v22__nav a:hover,
body #footer.itdl-footer-v22 .itdl-footer-v22__nav a:focus {
	color: var(--itdl-v22-purple) !important;
}

html #topcontrol,
body #topcontrol,
body .scroll-to-top,
body .back-to-top,
body .go-to-top,
body .porto-scroll-top,
body .porto-scroll-to-top,
body .btn-scroll-top,
body a[href="#top"],
body a[href="#top"].scroll-to-top {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 1199px) {
	body #header.itdl-header-v22 #main-menu .main-menu,
	body #header.itdl-header-v22 #main-menu .mega-menu,
	body #header.itdl-header-v22 #main-menu ul {
		gap: 20px !important;
	}

	body #header.itdl-header-v22 .logo img {
		width: clamp(160px, 18vw, 200px) !important;
	}
}

@media (max-width: 991px) {
	body #header.itdl-header-v22 .header-main,
	body #header.itdl-header-v22 .header-main.header-body,
	body #header.itdl-header-v22 .header-main.sticky,
	body #header.itdl-header-v22 .header-main.sticky.change-logo,
	body #header.itdl-header-v22 .itdl-header-inner,
	body #header.itdl-header-v22 .header-container.container,
	body #header.itdl-header-v22 .header-main > .container {
		min-height: var(--itdl-v22-header-h-mobile) !important;
		height: var(--itdl-v22-header-h-mobile) !important;
	}

	body #header.itdl-header-v22 .itdl-header-inner,
	body #header.itdl-header-v22 .header-container.container,
	body #header.itdl-header-v22 .header-main > .container {
		padding: 0 20px !important;
		gap: 16px !important;
	}

	body #header.itdl-header-v22 .itdl-header-logo,
	body #header.itdl-header-v22 .header-left {
		min-width: 0 !important;
		max-width: calc(100% - 72px) !important;
	}

	body #header.itdl-header-v22 .logo img {
		width: clamp(144px, 42vw, 185px) !important;
		max-height: 56px !important;
	}

	body #header.itdl-header-v22 #main-menu,
	body #header.itdl-header-v22 .itdl-main-menu {
		display: none !important;
	}

	body #header.itdl-header-v22 .mobile-toggle {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		margin-left: auto !important;
		border-radius: 12px !important;
		background: var(--itdl-v22-purple) !important;
		color: #ffffff !important;
		font-size: 18px !important;
		text-decoration: none !important;
	}

	body.home:not(.elementor-editor-active) .idl-hero-only,
	body.home:not(.elementor-editor-active) section.idl-hero-only,
	body.home:not(.elementor-editor-active) .elementor-section:first-of-type,
	body.home:not(.elementor-editor-active) .e-con:first-of-type {
		min-height: calc(100vh - var(--itdl-v22-header-h-mobile)) !important;
	}

	body #footer.itdl-footer-v22 .itdl-footer-v22__inner {
		align-items: flex-start !important;
		flex-direction: column !important;
		gap: 14px !important;
		padding: 0 20px !important;
	}

	body #footer.itdl-footer-v22 .itdl-footer-v22__copy {
		white-space: normal !important;
	}

	body #footer.itdl-footer-v22 .itdl-footer-v22__nav {
		justify-content: flex-start !important;
		gap: 10px 18px !important;
	}
}


/* ========================================================================
   ITDL v23 CLEAN LIGHT HEADER + FOOTER
   Deterministic light layout for the installed theme package.
   ======================================================================== */
:root {
	--itdl-v23-bg: #f8fafc;
	--itdl-v23-surface: #ffffff;
	--itdl-v23-surface-soft: #f3f5f9;
	--itdl-v23-border: #e5e9f2;
	--itdl-v23-ink: #101828;
	--itdl-v23-muted: #667085;
	--itdl-v23-purple: #59125f;
	--itdl-v23-purple-2: #7c2a84;
	--itdl-v23-shadow: 0 18px 48px rgba(16, 24, 40, .08);
	--itdl-v23-header-h: 82px;
}

html,
body {
	background: var(--itdl-v23-bg) !important;
	color: var(--itdl-v23-ink) !important;
}

body .page-wrapper,
body #main,
body .main,
body .main-content,
body .page-content,
body .entry-content {
	background: transparent !important;
}

body .header-wrapper,
body .header-wrapper.wide,
body .header-wrapper.fixed-header,
body .header-wrapper.sticky-header,
body .header-wrapper.header-reveal {
	position: sticky !important;
	top: 0 !important;
	z-index: 9999 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--itdl-v23-surface) !important;
	border: 0 !important;
	border-bottom: 1px solid var(--itdl-v23-border) !important;
	box-shadow: 0 10px 30px rgba(16, 24, 40, .04) !important;
	transform: none !important;
}

body.admin-bar .header-wrapper,
body.admin-bar .header-wrapper.fixed-header,
body.admin-bar .header-wrapper.sticky-header {
	top: 32px !important;
}

body #header.itdl-header-v23,
body #header.itdl-header-v23 * {
	box-sizing: border-box !important;
}

body #header.itdl-header-v23 {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: 10000 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--itdl-v23-surface) !important;
	color: var(--itdl-v23-ink) !important;
	border: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	overflow: visible !important;
}

body #header.itdl-header-v23 .itdl-header-v23__bar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: clamp(20px, 3vw, 52px) !important;
	width: 100% !important;
	min-height: var(--itdl-v23-header-h) !important;
	margin: 0 auto !important;
	padding: 0 clamp(22px, 4vw, 74px) !important;
	background: var(--itdl-v23-surface) !important;
}

body #header.itdl-header-v23 .itdl-header-v23__logo {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	flex: 0 0 auto !important;
	min-width: 148px !important;
	max-width: min(270px, 26vw) !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v23 .logo,
body #header.itdl-header-v23 .logo a,
body #header.itdl-header-v23 .itdl-header-v23__brand-text {
	display: inline-flex !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--itdl-v23-ink) !important;
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
	font-size: 20px !important;
	font-weight: 800 !important;
	letter-spacing: -.03em !important;
	text-decoration: none !important;
}

body #header.itdl-header-v23 .logo img {
	display: block !important;
	width: clamp(154px, 13vw, 222px) !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: 58px !important;
	object-fit: contain !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v23 .itdl-header-v23__nav {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu,
body #header.itdl-header-v23 .itdl-header-v23__menu ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex-wrap: nowrap !important;
	gap: clamp(18px, 2vw, 34px) !important;
	width: auto !important;
	max-width: 100% !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu > li {
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 10px 0 !important;
	margin: 0 !important;
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
	font-size: clamp(14px, .9vw, 16px) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: -.015em !important;
	color: var(--itdl-v23-ink) !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	transition: color .18s ease, opacity .18s ease !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu a:hover,
body #header.itdl-header-v23 .itdl-header-v23__menu a:focus,
body #header.itdl-header-v23 .itdl-header-v23__menu .current-menu-item > a,
body #header.itdl-header-v23 .itdl-header-v23__menu .current-menu-ancestor > a {
	color: var(--itdl-v23-purple) !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu li ul {
	position: absolute !important;
	top: calc(100% + 10px) !important;
	left: 0 !important;
	display: grid !important;
	gap: 2px !important;
	min-width: 230px !important;
	padding: 12px !important;
	background: var(--itdl-v23-surface) !important;
	border: 1px solid var(--itdl-v23-border) !important;
	border-radius: 18px !important;
	box-shadow: var(--itdl-v23-shadow) !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-4px) !important;
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
	z-index: 10020 !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu li:hover > ul,
body #header.itdl-header-v23 .itdl-header-v23__menu li:focus-within > ul {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu li ul a {
	justify-content: flex-start !important;
	width: 100% !important;
	padding: 10px 12px !important;
	border-radius: 12px !important;
	font-size: 14px !important;
	font-weight: 650 !important;
}

body #header.itdl-header-v23 .itdl-header-v23__menu li ul a:hover,
body #header.itdl-header-v23 .itdl-header-v23__menu li ul a:focus {
	background: var(--itdl-v23-surface-soft) !important;
}

body #header.itdl-header-v23 .itdl-header-v23__toggle,
body #header.itdl-header-v23 .itdl-header-v23__mobile {
	display: none !important;
}

body #header.itdl-header-v23 .searchform-popup,
body #header.itdl-header-v23 .searchform,
body #header.itdl-header-v23 .share-links,
body #header.itdl-header-v23 #mini-cart,
body #header.itdl-header-v23 .mini-cart,
body #header.itdl-header-v23 .header-minicart,
body #header.itdl-header-v23 .porto-tooltip,
body #header.itdl-header-v23 .porto-tooltip-wrap,
body #header.itdl-header-v23 .tooltip-icon,
body #header.itdl-header-v23 .tooltip-popup,
body #header.itdl-header-v23 .header-contact,
body #header.itdl-header-v23 .block-inline,
body #header.itdl-header-v23 .hamburguer-btn,
body #header.itdl-header-v23 .mobile-toggle,
body #header.itdl-header-v23 #main-menu,
body #header.itdl-header-v23 .main-menu-wrap {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body .footer-wrapper,
body .footer-wrapper.wide,
body .footer-wrapper.footer-reveal {
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--itdl-v23-surface) !important;
	border: 0 !important;
	box-shadow: none !important;
}

body #footer.itdl-footer-v23,
body footer.itdl-footer-v23 {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--itdl-v23-surface) !important;
	color: var(--itdl-v23-ink) !important;
	border-top: 1px solid var(--itdl-v23-border) !important;
	box-shadow: none !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__inner {
	display: grid !important;
	grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
	align-items: center !important;
	gap: 24px !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 auto !important;
	padding: 24px clamp(22px, 4vw, 74px) !important;
	background: var(--itdl-v23-surface) !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__brand {
	display: grid !important;
	gap: 3px !important;
	justify-self: start !important;
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__brand strong {
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	letter-spacing: -.02em !important;
	color: var(--itdl-v23-ink) !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__brand span,
body #footer.itdl-footer-v23 .itdl-footer-v23__copy {
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	color: var(--itdl-v23-muted) !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__nav,
body #footer.itdl-footer-v23 .itdl-footer-v23__menu {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-wrap: wrap !important;
	gap: 10px 22px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__menu li {
	margin: 0 !important;
	padding: 0 !important;
}

body #footer.itdl-footer-v23 a {
	font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--itdl-v23-ink) !important;
	text-decoration: none !important;
}

body #footer.itdl-footer-v23 a:hover,
body #footer.itdl-footer-v23 a:focus {
	color: var(--itdl-v23-purple) !important;
}

body #footer.itdl-footer-v23 .itdl-footer-v23__copy {
	justify-self: end !important;
	text-align: right !important;
}

html #topcontrol,
body #topcontrol,
body .scroll-to-top,
body .back-to-top,
body .go-to-top,
body .porto-scroll-top,
body .porto-scroll-to-top,
body .btn-scroll-top,
body a[href="#top"],
body a[href="#top"].scroll-to-top {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 1180px) {
	body #header.itdl-header-v23 .itdl-header-v23__menu {
		gap: 18px !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__menu a {
		font-size: 14px !important;
	}
}

@media (max-width: 991px) {
	:root {
		--itdl-v23-header-h: 72px;
	}

	body.admin-bar .header-wrapper,
	body.admin-bar .header-wrapper.fixed-header,
	body.admin-bar .header-wrapper.sticky-header {
		top: 46px !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__bar {
		min-height: var(--itdl-v23-header-h) !important;
		padding: 0 18px !important;
		gap: 14px !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__logo {
		min-width: 0 !important;
		max-width: calc(100% - 64px) !important;
	}

	body #header.itdl-header-v23 .logo img {
		width: clamp(142px, 46vw, 188px) !important;
		max-height: 52px !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__nav {
		display: none !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__toggle {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex-direction: column !important;
		gap: 5px !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		margin: 0 0 0 auto !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 14px !important;
		background: var(--itdl-v23-purple) !important;
		color: #ffffff !important;
		box-shadow: none !important;
		cursor: pointer !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__toggle span {
		display: block !important;
		width: 18px !important;
		height: 2px !important;
		border-radius: 99px !important;
		background: #ffffff !important;
		transition: transform .18s ease, opacity .18s ease !important;
	}

	body #header.itdl-header-v23.is-open .itdl-header-v23__toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg) !important;
	}

	body #header.itdl-header-v23.is-open .itdl-header-v23__toggle span:nth-child(2) {
		opacity: 0 !important;
	}

	body #header.itdl-header-v23.is-open .itdl-header-v23__toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg) !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__mobile {
		position: absolute !important;
		top: 100% !important;
		left: 0 !important;
		right: 0 !important;
		display: block !important;
		padding: 0 18px 18px !important;
		background: var(--itdl-v23-surface) !important;
		border-bottom: 1px solid var(--itdl-v23-border) !important;
		box-shadow: var(--itdl-v23-shadow) !important;
		z-index: 10030 !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__mobile[hidden] {
		display: none !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__mobile-menu,
	body #header.itdl-header-v23 .itdl-header-v23__mobile-menu ul {
		list-style: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__mobile-menu {
		display: grid !important;
		gap: 6px !important;
		padding-top: 10px !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__mobile-menu a {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		padding: 13px 14px !important;
		border-radius: 14px !important;
		background: var(--itdl-v23-surface-soft) !important;
		font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
		font-size: 15px !important;
		font-weight: 750 !important;
		line-height: 1.2 !important;
		color: var(--itdl-v23-ink) !important;
		text-decoration: none !important;
	}

	body #header.itdl-header-v23 .itdl-header-v23__mobile-menu a:hover,
	body #header.itdl-header-v23 .itdl-header-v23__mobile-menu a:focus {
		color: var(--itdl-v23-purple) !important;
	}

	body #footer.itdl-footer-v23 .itdl-footer-v23__inner {
		grid-template-columns: 1fr !important;
		align-items: start !important;
		gap: 16px !important;
		padding: 24px 18px !important;
	}

	body #footer.itdl-footer-v23 .itdl-footer-v23__nav,
	body #footer.itdl-footer-v23 .itdl-footer-v23__menu {
		justify-content: flex-start !important;
		gap: 10px 18px !important;
	}

	body #footer.itdl-footer-v23 .itdl-footer-v23__copy {
		justify-self: start !important;
		text-align: left !important;
	}
}

@media (max-width: 380px) {
	body #header.itdl-header-v23 .itdl-header-v23__bar {
		padding-inline: 14px !important;
	}

	body #header.itdl-header-v23 .logo img {
		width: clamp(132px, 48vw, 168px) !important;
	}
}
