.shyam-header,
.shyam-header * {
	box-sizing: border-box;
}

.shyam-header {
	position: relative;
	width: 100%;
	color: inherit;
	font: inherit;
}

.shyam-header--sticky {
	position: sticky;
}

.shyam-header__inner {
	position: relative;
	display: flex;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.shyam-header__brand {
	flex: 0 0 auto;
	line-height: 1;
}

.shyam-header__brand-link {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	color: inherit;
	text-decoration: none;
}

.shyam-header__logo-image {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.shyam-header__brand-text,
.shyam-header__brand-title,
.shyam-header__brand-subtitle,
.shyam-header__brand-tagline {
	display: block;
}

.shyam-header__brand-text {
	color: inherit;
	line-height: 1.05;
}

.shyam-header__nav {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	align-items: center;
}

.shyam-header__menu,
.shyam-header__menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.shyam-header__menu {
	display: flex;
	align-items: center;
	justify-content: inherit;
	width: 100%;
	row-gap: 12px;
}

.shyam-header__menu > li {
	position: relative;
	flex: 0 0 auto;
}

.shyam-header__menu a {
	font-family: inherit;
}

.shyam-header__menu > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #000000;
	line-height: 1.25;
	text-decoration: none;
	transition: color 180ms ease;
}

.shyam-header__menu > li > a::after {
	position: absolute;
	left: 50%;
	content: "";
	background: var(--shyam-active-underline, #0b6b46);
	opacity: 0;
	transform: translateX(-50%) scaleX(.25);
	transform-origin: center;
	transition: opacity 180ms ease, transform 180ms ease;
}

.shyam-header__menu > li.is-active > a,
.shyam-header__menu > li.current-menu-item > a,
.shyam-header__menu > li.current_page_item > a {
	color: #0b6b46;
}

.shyam-header__menu > li.is-active > a::after,
.shyam-header__menu > li.current-menu-item > a::after,
.shyam-header__menu > li.current_page_item > a::after {
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.shyam-header__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 220px;
	padding: 10px;
	background: var(--e-global-color-secondary, #fff);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.shyam-header__menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

.shyam-header__menu li:hover > .sub-menu,
.shyam-header__menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.shyam-header__menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	color: inherit;
	text-decoration: none;
}

.shyam-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-left: auto;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
	background: transparent;
	border: 0;
}

.shyam-header__toggle-icon,
.shyam-header__toggle-icon i,
.shyam-header__toggle-icon svg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	fill: currentColor;
}

.shyam-header__fallback-bars {
	display: inline-flex;
	width: 1em;
	flex-direction: column;
	gap: .18em;
}

.shyam-header__fallback-bars span {
	display: block;
	width: 100%;
	height: .09em;
	background: currentColor;
	border-radius: 99px;
}

.shyam-header__editor-message {
	width: 100%;
	padding: 12px 16px;
	border: 1px dashed currentColor;
	text-align: center;
}

.shyam-header__toggle:focus-visible,
.shyam-header__menu a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.shyam-header__menu > li > a,
	.shyam-header__menu > li > a::after,
	.shyam-header__menu .sub-menu {
		transition: none;
	}
}


.shyam-header__mobile-overlay,
.shyam-header__mobile-panel-head,
.shyam-header__mobile-close {
	display: none;
}

.shyam-header__mobile-menu-body {
	display: contents;
}

body.shyam-mobile-menu-open {
	overflow: hidden;
	touch-action: none;
}

.shyam-header__mobile-close span {
	display: block;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
	.shyam-header__nav,
	.shyam-header__mobile-overlay,
	.shyam-header__menu > li,
	.shyam-header__mobile-close,
	.shyam-header__toggle {
		transition: none !important;
	}
}
