	/**
 * Header CSS for juuzbot_kps theme
 * This file contains styles specific to the header section of the juuzbot_kps WordPress theme.
 * It ensures a cohesive design and responsive layout for the header across all devices.
 */
	/* =============================
   HEADER
============================= */
	/* =========================================================
   SONA PULP HEADER
========================================================= */
	/* =========================================================
   SONA PULP HEADER
   DESKTOP — TRANSPARENT → GLASSMORPHISM ON SCROLL
========================================================= */
	/* =========================================================
   SONA PULP HEADER
   COMPLETE HEADER CSS
========================================================= */
	/* =========================================================
   VARIABLES
========================================================= */
	.sona_pulp_header {
		--sona-green: #176b4d;
		--sona-green-hover: #21815e;
		--sona-black: #080b0a;
		--sona-white: #ffffff;
		--sona-text-light: rgba(255, 255, 255, 0.76);
		--sona-text-muted: rgba(255, 255, 255, 0.52);
		--sona-border-light: rgba(255, 255, 255, 0.1);
		--sona-glass: rgba(7, 10, 9, 0.72);
		--sona-transition: cubic-bezier(0.16, 1, 0.3, 1);
		position: relative;
		width: 100%;
		z-index: 99999;
	}
	/* =========================================================
   RESET ONLY INSIDE HEADER
========================================================= */
	.sona_pulp_header *,
	.sona_pulp_header *::before,
	.sona_pulp_header *::after {
		box-sizing: border-box;
	}
	/* =========================================================
   HEADER BAR
========================================================= */
	.sona_pulp_header_bar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 90px;
		padding: 0 clamp(25px, 7vw, 140px);
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: #176b4dad;
		backdrop-filter: blur(22px) saturate(150%);
		border-bottom: 1px solid transparent;
		z-index: 99999;
		transition: background 0.55s var(--sona-transition), border-color 0.55s ease,
			backdrop-filter 0.55s ease, -webkit-backdrop-filter 0.55s ease,
			box-shadow 0.55s ease;
	}
	/* =========================================================
   SCROLLED HEADER
========================================================= */
	.sona_pulp_header.sona-pulp-scrolled .sona_pulp_header_bar {
		border-bottom: 1px solid var(--sona-border-light);
		backdrop-filter: blur(22px) saturate(150%);
		background: #5b5b5b91 !important;
		-webkit-backdrop-filter: blur(22px) saturate(150%);
		box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
	}
	/* =========================================================
   LOGO
========================================================= */
	.sona_pulp_header_logo {
		position: relative;
		z-index: 10;
		flex: 0 0 auto;
	}
	/* Logo link */
	.sona_pulp_header_logo a {
		display: inline-flex;
		align-items: center;
		color: #fff;
		text-decoration: none;
	}
	/* WordPress custom logo */
	.sona_pulp_header_logo .custom-logo-link {
		display: flex;
		align-items: center;
	}
	/* Logo image */
	.sona_pulp_header_logo img {
		display: block;
		width: auto;
		max-width: 200px;
		max-height: 70px;
		object-fit: contain;
		transition: transform 0.4s var(--sona-transition), opacity 0.3s ease;
	}
	/* Logo hover */
	.sona_pulp_header_logo a:hover img {
		transform: scale(1.025);
	}
	/* Text fallback */
	.sona_pulp_header_logo a:not(:has(img)) {
		color: var(--sona-green);
		font-family: Arial, Helvetica, sans-serif;
		font-size: 24px;
		line-height: 1;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}
	/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
	.sona_pulp_header_desktop_nav {
		display: flex;
		align-items: center;
		margin-left: auto;
		margin-right: clamp(20px, 2.5vw, 45px);
	}
	/* WordPress UL */
	.sona_pulp_header_menu {
		display: flex;
		align-items: center;
		gap: clamp(18px, 2vw, 34px);
		margin: 0;
		padding: 0;
		list-style: none;
	}
	/* Every item */
	.sona_pulp_header_menu li {
		position: relative;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	/* Main links */
	.sona_pulp_header_menu>li>a {
		    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 90px;
    padding: 0;
    color: #fff;
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Inter", sans-serif !important;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    transition: color 0.3s ease;
	}
	/* Main link hover */
	.sona_pulp_header_menu>li>a:hover {
		color: var(--sona-white);
	}
	/* =========================================================
   NAV UNDERLINE
========================================================= */
	.sona_pulp_header_menu>li>a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 24px;
		width: 0;
		height: 2px;
		background: var(--sona-green);
		border-radius: 10px;
		transition: width 0.4s var(--sona-transition);
	}
	.sona_pulp_header_menu>li>a:hover::after {
		width: 100%;
	}
	/* Current menu */
	.sona_pulp_header_menu .current-menu-item>a {
		color: var(--sona-white);
	}
	.sona_pulp_header_menu .current-menu-item>a::after {
		width: 100%;
	}
	/* =========================================================
   MENU ITEM WITH CHILDREN
========================================================= */
	.sona_pulp_header_menu .menu-item-has-children>a {
		padding-right: 2px;
	}
	/* Arrow */
	.sona_pulp_header_menu .menu-item-has-children>a::before {
		content: "";
		width: 6px;
		height: 6px;
		margin-top: -4px;
		border-right: 1px solid currentColor;
		border-bottom: 1px solid currentColor;
		transform: rotate(45deg);
		order: 2;
		transition: transform 0.3s var(--sona-transition);
	}
	/* Arrow hover */
	.sona_pulp_header_menu .menu-item-has-children:hover>a::before {
		transform: rotate(225deg);
	}
	/* =========================================================
   DESKTOP DROPDOWN
========================================================= */
	.sona_pulp_header_menu .sub-menu {
		position: absolute;
		top: calc(100% - 1px);
		left: 50%;
		width: 300px;
		margin: 0;
		padding: 10px;
		list-style: none;
		background: rgba(7, 10, 9, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.09);
		box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, 18px);
		transition: opacity 0.3s ease, transform 0.45s var(--sona-transition),
			visibility 0.3s ease;
	}
	/* Open dropdown */
	.sona_pulp_header_menu .menu-item-has-children:hover>.sub-menu,
	.sona_pulp_header_menu .menu-item-has-children.sona-pulp-focus>.sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}
	/* =========================================================
   DROPDOWN ITEMS
========================================================= */
	.sona_pulp_header_menu .sub-menu li {
		width: 100%;
	}
	/* Dropdown links */
	.sona_pulp_header_menu .sub-menu li a {
		position: relative;
		min-height: 50px;
		width: 100%;
		padding: 0 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		color: rgba(255, 255, 255, 0.68);
		background: transparent;
		text-decoration: none;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		transition: color 0.3s ease, background 0.3s ease,
			padding 0.3s var(--sona-transition);
	}
	/* Dropdown arrow */
	.sona_pulp_header_menu .sub-menu li a::after {
		content: "↗";
		color: var(--sona-green);
		opacity: 0;
		transform: translateX(-8px);
		transition: opacity 0.3s ease, transform 0.3s var(--sona-transition);
	}
	/* Dropdown hover */
	.sona_pulp_header_menu .sub-menu li a:hover {
		color: #ffffff;
		padding-left: 21px;
		background: rgba(23, 107, 77, 0.16);
	}
	.sona_pulp_header_menu .sub-menu li a:hover::after {
		opacity: 1;
		transform: translateX(0);
	}
	/* =========================================================
   NESTED DROPDOWNS
========================================================= */
	.sona_pulp_header_menu .sub-menu .menu-item-has-children>.sub-menu {
		top: -11px;
		left: 100%;
		transform: translate(15px, 0);
	}
	.sona_pulp_header_menu .sub-menu .menu-item-has-children:hover>.sub-menu,
	.sona_pulp_header_menu .sub-menu .menu-item-has-children.sona-pulp-focus>.sub-menu {
		transform: translate(0, 0);
	}
	/* =========================================================
   PRODUCTS MEGA DROPDOWN
========================================================= */
	/*
   If Products is a top-level parent,
   make its dropdown larger.
*/
	.sona_pulp_header_menu>.menu-item-has-children>.sub-menu {
		width: min(480px, 40vw);
		padding: 18px;
	}
	/* Two-column Products */
	.sona_pulp_header_menu>.menu-item-has-children>.sub-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 4px;
	}
	/* Product links */
	.sona_pulp_header_menu>.menu-item-has-children>.sub-menu>li>a {
		min-height: 58px;
		border: 1px solid transparent;
	}
	/* Product hover */
	.sona_pulp_header_menu>.menu-item-has-children>.sub-menu>li>a:hover {
		border-color: rgba(255, 255, 255, 0.07);
	}
	/* =========================================================
   REQUEST QUOTE
========================================================= */
	.sona_pulp_header_desktop_cta {
		flex: 0 0 auto;
	}
	/* CTA */
	.sona_pulp_header_cta {
		min-width: 154px;
		height: 48px;
		padding: 0 22px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid transparent;
		border-radius: 100px;
		color: #ffffff;
		background: var(--sona-green);
		text-decoration: none;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 13px;
		line-height: 1;
		font-weight: 800;
		letter-spacing: 0.02em;
		text-transform: uppercase;
		transition: background 0.3s ease, transform 0.35s var(--sona-transition),
			box-shadow 0.35s ease;
	}
	.sona_pulp_header_cta:hover {
		color: #ffffff;
		background: var(--sona-green-hover);
		transform: translateY(-2px);
		box-shadow: 0 12px 35px rgba(23, 107, 77, 0.35);
	}
	/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
	.sona_pulp_header_toggle {
		display: none;
		position: relative;
		width: 48px;
		height: 48px;
		flex: 0 0 48px;
		padding: 0;
		margin: 0;
		border: 0;
		border-radius: 50%;
		background: var(--sona-green);
		cursor: pointer;
		z-index: 100000;
		-webkit-tap-highlight-color: transparent;
	}
	.sona_pulp_header_toggle span {
		position: absolute;
		left: 15px;
		width: 18px;
		height: 1px;
		background: #ffffff;
		transition: transform 0.45s var(--sona-transition),
			top 0.45s var(--sona-transition);
	}
	.sona_pulp_header_toggle span:first-child {
		top: 20px;
	}
	.sona_pulp_header_toggle span:last-child {
		top: 27px;
	}
	/* OPEN HAMBURGER */
	.sona_pulp_header.is-open .sona_pulp_header_toggle span:first-child {
		top: 24px;
		transform: rotate(45deg);
	}
	.sona_pulp_header.is-open .sona_pulp_header_toggle span:last-child {
		top: 24px;
		transform: rotate(-45deg);
	}
	/* =========================================================
   MOBILE FULLSCREEN MENU
========================================================= */
	.sona_pulp_header_mobile_menu {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		padding-top: 72px;
		background: #f1f2ed;
		z-index: 99998;
		overflow-y: auto;
		overflow-x: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-25px);
		transition: opacity 0.35s ease, transform 0.55s var(--sona-transition),
			visibility 0.35s ease;
	}
	/* Open mobile menu */
	.sona_pulp_header.is-open .sona_pulp_header_mobile_menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
	/* =========================================================
   MOBILE INNER
========================================================= */
	.sona_pulp_header_mobile_inner {
		width: 100%;
		min-height: calc(100dvh - 72px);
		padding: 25px 7vw 30px;
		display: flex;
		flex-direction: column;
	}
	/* =========================================================
   MOBILE TOP
========================================================= */
	.sona_pulp_header_mobile_top {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 18px;
		border-bottom: 1px solid rgba(10, 13, 12, 0.12);
		color: rgba(10, 13, 12, 0.45);
		font-size: 16px;
		line-height: 1;
		font-weight: 800;
		letter-spacing: 0.2em;
	}
	.sona_pulp_header_mobile_count {
		color: var(--sona-green);
	}
	/* =========================================================
   MOBILE NAV
========================================================= */
	.sona_pulp_header_mobile_nav {
		flex: 1;
		width: 100%;
		padding: 20px 0 30px;
	}
	/* Mobile menu UL */
	.sona_pulp_header_mobile_list {
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	/* Mobile item */
	.sona_pulp_header_mobile_list>li {
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
		opacity: 0;
		transform: translateY(20px);
	}
	/* Animate when opened */
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li {
		animation: sonaPulpMenuItem 0.55s var(--sona-transition) forwards;
	}
	/* Animation delays */
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(1) {
		animation-delay: 0.08s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(2) {
		animation-delay: 0.13s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(3) {
		animation-delay: 0.18s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(4) {
		animation-delay: 0.23s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(5) {
		animation-delay: 0.28s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(6) {
		animation-delay: 0.33s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(7) {
		animation-delay: 0.38s;
	}
	.sona_pulp_header.is-open .sona_pulp_header_mobile_list>li:nth-child(8) {
		animation-delay: 0.43s;
	}
	@keyframes sonaPulpMenuItem {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	/* =========================================================
   MOBILE MAIN LINKS
========================================================= */
	.sona_pulp_header_mobile_list>li>a {
		width: 100%;
		min-height: 68px;
		padding: 0 4px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		color: #0a0d0c;
		background: transparent;
		border-bottom: 1px solid rgba(10, 13, 12, 0.12);
		text-decoration: none;
		font-family: Arial, Helvetica, sans-serif;
		font-size: clamp(28px, 7vw, 43px);
		line-height: 1;
		font-weight: 500;
		letter-spacing: -0.045em;
		transition: color 0.3s ease, padding 0.3s var(--sona-transition);
	}
	/* Hover */
	.sona_pulp_header_mobile_list>li>a:hover {
		color: var(--sona-green);
		padding-left: 12px;
	}
	/* =========================================================
   MOBILE PARENT + BUTTON
========================================================= */
	.sona_pulp_header_mobile_list .menu-item-has-children>a::after {
		content: "+";
		width: 36px;
		height: 36px;
		flex: 0 0 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(10, 13, 12, 0.2);
		border-radius: 50%;
		color: #0a0d0c;
		font-size: 20px;
		line-height: 1;
		font-weight: 300;
		transition: transform 0.35s var(--sona-transition), color 0.35s ease,
			background 0.35s ease, border-color 0.35s ease;
	}
	/* Open */
	.sona_pulp_header_mobile_list .menu-item-has-children.sona-pulp-sub-open>a::after {
		content: "−";
		color: #ffffff;
		background: var(--sona-green);
		border-color: var(--sona-green);
	}
	/* =========================================================
   MOBILE SUBMENU
========================================================= */
	.sona_pulp_header_mobile_list .sub-menu {
		display: none;
		width: 100%;
		margin: 0;
		padding: 7px 0 10px 18px;
		list-style: none;
		border-left: 1px solid rgba(23, 107, 77, 0.3);
	}
	/* Open */
	.sona_pulp_header_mobile_list li.sona-pulp-sub-open>.sub-menu {
		display: block;
		animation: sonaPulpSubmenuOpen 0.35s ease forwards;
	}
	@keyframes sonaPulpSubmenuOpen {
		from {
			opacity: 0;
			transform: translateY(-8px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	/* =========================================================
   MOBILE SUBMENU ITEMS
========================================================= */
	.sona_pulp_header_mobile_list .sub-menu li {
		width: 100%;
		margin: 0;
		padding: 0;
		opacity: 1;
		transform: none;
		animation: none !important;
	}
	.sona_pulp_header_mobile_list .sub-menu li a {
		position: relative;
		width: 100%;
		min-height: 52px;
		padding: 0 12px;
		display: flex;
		align-items: center;
		color: rgba(10, 13, 12, 0.65);
		text-decoration: none;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 14px;
		line-height: 1.2;
		font-weight: 500;
		transition: color 0.25s ease, padding 0.3s var(--sona-transition);
	}
	/* Dash */
	.sona_pulp_header_mobile_list .sub-menu li a::before {
		content: "—";
		margin-right: 10px;
		color: var(--sona-green);
	}
	/* Hover */
	.sona_pulp_header_mobile_list .sub-menu li a:hover {
		color: var(--sona-green);
		padding-left: 20px;
	}
	/* =========================================================
   MOBILE FOOTER
========================================================= */
	.sona_pulp_header_mobile_footer {
		width: 100%;
		padding-top: 22px;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 20px;
		border-top: 1px solid rgba(10, 13, 12, 0.12);
	}
	/* Footer label */
	.sona_pulp_header_mobile_footer span {
		display: block;
		margin-bottom: 8px;
		color: rgba(10, 13, 12, 0.4);
		font-size: 16px;
		line-height: 1.2;
		font-weight: 800;
		letter-spacing: 0.15em;
	}
	/* Footer email */
	.sona_pulp_header_mobile_footer>div>a {
		color: #0a0d0c;
		text-decoration: none;
		font-size: 20px;
		font-weight: 600;
	}
	/* Contact */
	.sona_pulp_header_mobile_contact {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 9px;
		min-height: 44px;
		padding: 0 17px;
		border-radius: 100px;
		color: #ffffff !important;
		background: var(--sona-green);
		text-decoration: none;
		font-size: 12px !important;
		line-height: 1 !important;
		font-weight: 800 !important;
		letter-spacing: 0.1em;
	}
	/* Contact arrow */
	.sona_pulp_header_mobile_contact span {
		margin: 0 !important;
		color: #ffffff !important;
		font-size: 15px !important;
		line-height: 1 !important;
	}
	/* =========================================================
   BODY LOCK
========================================================= */
	body.sona_pulp_menu_locked {
		overflow: hidden;
	}
	/* =========================================================
   TABLET
========================================================= */
	@media (max-width: 1200px) {
		.sona_pulp_header_bar {
			padding: 0 35px;
		}
		.sona_pulp_header_menu {
			gap: 20px;
		}
		.sona_pulp_header_desktop_nav {
			margin-right: 20px;
		}
		.sona_pulp_header_cta {
			min-width: 135px;
			padding: 0 17px;
		}
	}
	/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */
	@media (max-width: 1000px) {
		.sona_pulp_header_menu {
			gap: 14px;
		}
		.sona_pulp_header_menu>li>a {
			font-size: 12px;
		}
		.sona_pulp_header_cta {
			min-width: 120px;
			font-size: 12px;
		}
	}
	/* =========================================================
   MOBILE
========================================================= */
	@media (max-width: 767px) {
		/* Header */
		.sona_pulp_header_bar {
			height: 72px;
			padding: 0 20px;
		}
		/* Logo */
		.sona_pulp_header_logo img {
			max-width: 140px;
			max-height: 40px;
		}
		/* Hide desktop */
		.sona_pulp_header_desktop_nav,
		.sona_pulp_header_desktop_cta {
			display: none;
		}
		/* Show hamburger */
		.sona_pulp_header_toggle {
			display: block;
		}
		/* Mobile menu */
		.sona_pulp_header_mobile_menu {
			padding-top: 72px;
		}
		/* Inner */
		.sona_pulp_header_mobile_inner {
			min-height: calc(100dvh - 72px);
			padding: 24px 20px 25px;
		}
		/* Navigation */
		.sona_pulp_header_mobile_nav {
			padding: 18px 0 25px;
		}
		/* Main links */
		.sona_pulp_header_mobile_list>li>a {
			min-height: 64px;
			font-size: clamp(29px, 8vw, 38px);
		}
		/* Footer */
		.sona_pulp_header_mobile_footer {
			align-items: flex-start;
			flex-direction: column;
		}
		.sona_pulp_header_mobile_contact {
			align-self: flex-start;
		}
	}
	/* =========================================================
   SMALL MOBILE
========================================================= */
	@media (max-width: 480px) {
		.sona_pulp_header_bar {
			height: 68px;
			padding: 0 16px;
		}
		.sona_pulp_header_logo img {
			max-width: 125px;
		}
		.sona_pulp_header_toggle {
			width: 44px;
			height: 44px;
			flex-basis: 44px;
		}
		.sona_pulp_header_toggle span {
			left: 13px;
			width: 18px;
		}
		.sona_pulp_header_toggle span:first-child {
			top: 18px;
		}
		.sona_pulp_header_toggle span:last-child {
			top: 25px;
		}
		.sona_pulp_header.is-open .sona_pulp_header_toggle span:first-child,
		.sona_pulp_header.is-open .sona_pulp_header_toggle span:last-child {
			top: 22px;
		}
		.sona_pulp_header_mobile_menu {
			padding-top: 68px;
		}
		.sona_pulp_header_mobile_inner {
			min-height: calc(100dvh - 68px);
			padding: 22px 18px;
		}
		.sona_pulp_header_mobile_list>li>a {
			min-height: 60px;
			font-size: 29px;
		}
		.sona_pulp_header_mobile_list .menu-item-has-children>a::after {
			width: 32px;
			height: 32px;
			flex-basis: 32px;
		}
		.sona_pulp_header_mobile_footer {
			gap: 16px;
		}
	}
	/* =========================================================
   VERY SMALL DEVICES
========================================================= */
	@media (max-width: 360px) {
		.sona_pulp_header_mobile_list>li>a {
			font-size: 26px;
			min-height: 56px;
		}
		.sona_pulp_header_mobile_inner {
			padding-left: 15px;
			padding-right: 15px;
		}
	}
	/* =========================================================
   REDUCED MOTION
========================================================= */
	@media (prefers-reduced-motion: reduce) {
		.sona_pulp_header *,
		.sona_pulp_header *::before,
		.sona_pulp_header *::after {
			animation-duration: 0.01ms !important;
			animation-iteration-count: 1 !important;
			transition-duration: 0.01ms !important;
			scroll-behavior: auto !important;
		}
	}
