.rgh-shell,
.rgh-shell * {
	box-sizing: border-box;
}

.rgh-shell {
	width: 100%;
	margin: 0;
	padding: 0;
	background: var(--rgh-shell-bg, #fff);
	font-family: var(--rgh-font-family, "Arial Narrow", Arial, sans-serif) !important;
}

.rgh-header,
.rgh-nav,
.rgh-desktop,
.rgh-mobile {
	width: 100%;
	margin: 0;
	padding: 0;
}

.rgh-desktop-stage {
	position: relative;
	isolation: isolate;
	width: 100%;
	margin: 0;
	padding: var(--rgh-desktop-padding, 52px) 0;
	padding-bottom: max(
		var(--rgh-desktop-padding, 52px),
		calc(var(--rgh-logo-lower-overhang, 44px) + var(--rgh-logo-bottom-spacing, 24px))
	);
	background: var(--rgh-shell-bg, #fff);
}

.rgh-desktop-bar {
	position: relative;
	width: 100%;
	height: var(--rgh-bar-height, 92px);
	margin: 0;
	background: var(--rgh-bar-color, #319313);
	overflow: visible;
}

.rgh-nav {
	height: 100%;
}

.rgh-desktop-menu {
	display: grid;
	align-items: stretch;
	justify-items: stretch;
	width: 100%;
	max-width: var(--rgh-max-width, 2048px);
	height: 100%;
	margin: 0 auto !important;
	padding: 0 var(--rgh-desktop-side-padding, 64px) !important;
	column-gap: 0;
	list-style: none !important;
}

.rgh-desktop-menu > li,
.rgh-menu-item,
.rgh-logo-cell {
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.rgh-menu-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.rgh-menu-link {
	position: relative;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto;
	max-width: calc(100% - 16px);
	height: 100%;
	min-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--rgh-text-color, #fff) !important;
	font-family: var(--rgh-font-family, "Arial Narrow", Arial, sans-serif) !important;
	font-size: var(--rgh-font-size, 24px) !important;
	font-style: normal !important;
	font-weight: var(--rgh-font-weight, 400) !important;
	line-height: 1 !important;
	letter-spacing: var(--rgh-letter-spacing, 0) !important;
	text-align: center;
	text-decoration: none !important;
	text-indent: 0;
	text-shadow: none !important;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: color var(--rgh-hover-duration, 220ms) ease !important;
}

.rgh-menu-link span {
	display: block;
	overflow: hidden;
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: 0 solid transparent;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-family: var(--rgh-font-family, "Arial Narrow", Arial, sans-serif) !important;
	font: inherit;
	line-height: 1 !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: translateY(var(--rgh-menu-y, 0));
	transition:
		transform var(--rgh-hover-duration, 220ms) ease,
		background-color var(--rgh-hover-duration, 220ms) ease,
		border-radius var(--rgh-hover-duration, 220ms) ease;
}

.rgh-menu-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(0px - var(--rgh-line-offset, 8px));
	width: 0;
	height: var(--rgh-line-height, 3px);
	border-radius: 999px;
	background: var(--rgh-hover-line, #fff);
	transform: translateX(-50%);
	transition:
		width var(--rgh-hover-duration, 220ms) ease,
		background-color var(--rgh-hover-duration, 220ms) ease;
}

.rgh-desktop .rgh-menu-link:focus-visible {
	outline: 2px solid currentColor !important;
	outline-offset: 5px;
}

/* Desktop hover choices */
.rgh-hover-none .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-none .rgh-desktop .rgh-menu-link:focus-visible {
	color: var(--rgh-text-color, #fff) !important;
}

.rgh-hover-none .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-none .rgh-desktop .rgh-menu-link:focus-visible::after {
	width: 0;
}

.rgh-hover-underline-center .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-underline-center .rgh-desktop .rgh-menu-link:focus-visible,
.rgh-hover-underline-left .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-underline-left .rgh-desktop .rgh-menu-link:focus-visible,
.rgh-hover-background .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-background .rgh-desktop .rgh-menu-link:focus-visible,
.rgh-hover-pill .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-pill .rgh-desktop .rgh-menu-link:focus-visible,
.rgh-hover-lift .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-lift .rgh-desktop .rgh-menu-link:focus-visible,
.rgh-hover-scale .rgh-desktop .rgh-menu-link:hover,
.rgh-hover-scale .rgh-desktop .rgh-menu-link:focus-visible {
	color: var(--rgh-hover-text, #fff) !important;
}

.rgh-hover-underline-center .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-underline-center .rgh-desktop .rgh-menu-link:focus-visible::after {
	width: 100%;
}

.rgh-hover-underline-left .rgh-desktop .rgh-menu-link::after {
	left: 0;
	transform: none;
}

.rgh-hover-underline-left .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-underline-left .rgh-desktop .rgh-menu-link:focus-visible::after {
	width: 100%;
}

.rgh-hover-background .rgh-desktop .rgh-menu-link span,
.rgh-hover-pill .rgh-desktop .rgh-menu-link span {
	padding: 9px 14px;
}

.rgh-hover-background .rgh-desktop .rgh-menu-link:hover span,
.rgh-hover-background .rgh-desktop .rgh-menu-link:focus-visible span {
	background: var(--rgh-hover-bg, #26780f);
	border-radius: 0;
}

.rgh-hover-pill .rgh-desktop .rgh-menu-link:hover span,
.rgh-hover-pill .rgh-desktop .rgh-menu-link:focus-visible span {
	background: var(--rgh-hover-bg, #26780f);
	border-radius: var(--rgh-hover-radius, 8px);
}

.rgh-hover-background .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-background .rgh-desktop .rgh-menu-link:focus-visible::after,
.rgh-hover-pill .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-pill .rgh-desktop .rgh-menu-link:focus-visible::after,
.rgh-hover-lift .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-lift .rgh-desktop .rgh-menu-link:focus-visible::after,
.rgh-hover-scale .rgh-desktop .rgh-menu-link:hover::after,
.rgh-hover-scale .rgh-desktop .rgh-menu-link:focus-visible::after {
	width: 0;
}

.rgh-hover-lift .rgh-desktop .rgh-menu-link:hover span,
.rgh-hover-lift .rgh-desktop .rgh-menu-link:focus-visible span {
	transform: translateY(calc(var(--rgh-menu-y, 0px) - var(--rgh-hover-lift, 3px)));
}

.rgh-hover-scale .rgh-desktop .rgh-menu-link:hover span,
.rgh-hover-scale .rgh-desktop .rgh-menu-link:focus-visible span {
	transform: translateY(var(--rgh-menu-y, 0px)) scale(1.07);
}

.rgh-menu-item.is-active .rgh-menu-link {
	color: var(--rgh-active-text, #111) !important;
}

.rgh-menu-item.is-active .rgh-menu-link::after {
	width: 100%;
	background: var(--rgh-active-line, #111);
}

.rgh-logo-cell {
	position: relative;
	display: block;
	height: 100%;
	z-index: 3;
}

.rgh-logo-cell::before {
	content: "";
	position: absolute;
	left: 50%;
	top: calc(0px - var(--rgh-desktop-padding, 52px));
	z-index: 0;
	width: var(--rgh-logo-backdrop-width, 220px);
	height: var(--rgh-logo-backdrop-height, 200px);
	border-radius: 0 0 999px 999px;
	background: var(--rgh-logo-backdrop, #c8ef14);
	transform: translateX(-50%);
	pointer-events: none;
}

.rgh-logo-link {
	position: relative;
	z-index: 1;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: var(--rgh-logo-width, 180px);
	height: var(--rgh-logo-width, 180px);
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: var(--rgh-logo-circle-bg, #fff) !important;
	box-shadow: 0 8px 12px rgba(0, 0, 0, .28) !important;
	overflow: hidden;
	text-decoration: none !important;
}

.rgh-logo-cell > .rgh-logo-link {
	position: absolute;
	left: 50%;
	top: calc(50% + var(--rgh-logo-y, 0px));
	transform: translate(-50%, -50%);
}

.rgh-logo-image {
	display: block;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	object-fit: contain;
	transform: scale(var(--rgh-logo-scale, 1));
	transform-origin: center;
}

.rgh-logo-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 18px;
	border: 3px solid currentColor;
	border-radius: 50%;
	background: var(--rgh-logo-circle-bg, #fff);
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}

.rgh-mobile {
	display: none;
	background: transparent !important;
}

.rgh-mobile-frame {
	position: relative;
	width: 100%;
	margin: 0;
	border: var(--rgh-mobile-border-width, 0) solid var(--rgh-mobile-border-color, #444);
	background: var(--rgh-mobile-bg, #fff) !important;
	box-shadow: none;
}

.rgh-mobile-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--rgh-mobile-height, 96px);
	margin: 0;
	padding: 0 var(--rgh-mobile-padding, 22px);
	background: var(--rgh-mobile-bg, #fff) !important;
}

.rgh-mobile-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	background: transparent !important;
}

.rgh-mobile-logo .rgh-logo-link {
	position: relative;
	left: auto;
	top: auto;
	justify-content: center !important;
	width: var(--rgh-mobile-logo-width, 76px);
	height: var(--rgh-mobile-logo-width, 76px);
	transform: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .2) !important;
}

.rgh-mobile-logo .rgh-logo-image {
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
}

.rgh-mobile-logo .rgh-logo-fallback {
	width: 100%;
	height: 100%;
	padding: 8px;
	font-size: 10px;
}

.rgh-toggle,
.rgh-toggle:hover,
.rgh-toggle:focus,
.rgh-toggle:active {
	-webkit-appearance: none !important;
	appearance: none !important;
	display: inline-flex !important;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--rgh-hamburger-gap, 9px);
	width: calc(var(--rgh-hamburger-width, 44px) + 20px);
	height: calc(var(--rgh-hamburger-thickness, 5px) + var(--rgh-hamburger-thickness, 5px) + var(--rgh-hamburger-thickness, 5px) + var(--rgh-hamburger-gap, 9px) + var(--rgh-hamburger-gap, 9px) + 16px);
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 8px 10px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: inherit !important;
	font-size: 0 !important;
	line-height: 0 !important;
	transform: none !important;
	cursor: pointer;
}

.rgh-toggle span {
	display: block !important;
	flex: 0 0 var(--rgh-hamburger-thickness, 5px);
	width: var(--rgh-hamburger-width, 44px) !important;
	height: var(--rgh-hamburger-thickness, 5px) !important;
	min-height: var(--rgh-hamburger-thickness, 5px) !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--rgh-hamburger-color, #319313) !important;
	box-shadow: none !important;
	transform-origin: center;
	transition: transform .2s ease, opacity .2s ease;
}

.rgh-toggle:focus-visible {
	outline: 2px solid var(--rgh-hamburger-color, #319313) !important;
	outline-offset: 4px;
}

.rgh-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(calc(var(--rgh-hamburger-thickness, 5px) + var(--rgh-hamburger-gap, 9px))) rotate(45deg);
}

.rgh-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.rgh-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(calc(0px - var(--rgh-hamburger-thickness, 5px) - var(--rgh-hamburger-gap, 9px))) rotate(-45deg);
}

.rgh-mobile-panel {
	position: absolute;
	left: calc(0px - var(--rgh-mobile-border-width, 0));
	right: calc(0px - var(--rgh-mobile-border-width, 0));
	top: 100%;
	z-index: 10;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(0, 0, 0, .08);
	background: var(--rgh-mobile-menu-bg, #fff) !important;
	box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
}

.rgh-mobile-panel[hidden] {
	display: none !important;
}

.rgh-mobile-menu {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 !important;
	padding: 10px var(--rgh-mobile-padding, 22px) 16px !important;
	background: var(--rgh-mobile-menu-bg, #fff) !important;
	list-style: none !important;
}

.rgh-menu-item--mobile {
	justify-content: flex-start;
	width: 100%;
	height: auto;
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	background: transparent !important;
}

.rgh-menu-item--mobile:last-child {
	border-bottom: 0;
}

.rgh-menu-item--mobile .rgh-menu-link,
.rgh-menu-item--mobile .rgh-menu-link:hover,
.rgh-menu-item--mobile .rgh-menu-link:focus,
.rgh-menu-item--mobile .rgh-menu-link:focus-visible,
.rgh-menu-item--mobile .rgh-menu-link:active {
	-webkit-appearance: none !important;
	appearance: none !important;
	justify-content: flex-start !important;
	width: 100%;
	max-width: none;
	height: auto;
	padding: 16px 2px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--rgh-mobile-menu-text, #222) !important;
	font-family: var(--rgh-font-family, "Arial Narrow", Arial, sans-serif) !important;
	font-size: clamp(18px, 5vw, 24px) !important;
	font-weight: var(--rgh-font-weight, 400) !important;
	letter-spacing: var(--rgh-letter-spacing, 0) !important;
	text-align: left;
	text-decoration: none !important;
	transform: none !important;
	transition: none !important;
}

.rgh-menu-item--mobile .rgh-menu-link span,
.rgh-menu-item--mobile .rgh-menu-link:hover span,
.rgh-menu-item--mobile .rgh-menu-link:focus span,
.rgh-menu-item--mobile .rgh-menu-link:active span {
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	font-family: var(--rgh-font-family, "Arial Narrow", Arial, sans-serif) !important;
	transform: none !important;
	transition: none !important;
}

.rgh-menu-item--mobile .rgh-menu-link::after,
.rgh-menu-item--mobile .rgh-menu-link:hover::after,
.rgh-menu-item--mobile .rgh-menu-link:focus-visible::after,
.rgh-menu-item--mobile.is-active .rgh-menu-link::after {
	display: none !important;
	content: none !important;
}

.rgh-menu-item--mobile.is-active .rgh-menu-link,
.rgh-menu-item--mobile.is-active .rgh-menu-link:hover,
.rgh-menu-item--mobile.is-active .rgh-menu-link:focus {
	color: var(--rgh-active-text, #111) !important;
}

@media (prefers-reduced-motion: reduce) {
	.rgh-menu-link,
	.rgh-menu-link span,
	.rgh-menu-link::after,
	.rgh-toggle span {
		transition: none !important;
	}
}
