/* Copyright © 2026 KomoneValley Co., Ltd. */
:where(a, button, input, select, textarea, summary, [role="button"], [tabindex]):focus-visible {
	outline: 3px solid #145a32 !important;
	outline-offset: 3px !important;
}

html body :where(
	.kmv-button,
	.entry-content .wp-block-button > .wp-block-button__link,
	.kmv-global-search__control button,
	.kmv-analytics-feedback button
) {
	align-items: center;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.875rem !important;
	font-weight: 750 !important;
	gap: 0.4rem;
	justify-content: center;
	line-height: 1.25;
	min-height: 44px !important;
	padding: 0.7rem 1.1rem !important;
	border-radius: var(--kmv-button-radius) !important;
	box-shadow: none;
	text-align: center;
	text-decoration: none !important;
	transform: none;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 80ms ease;
	-webkit-tap-highlight-color: rgba(23, 107, 58, 0.18);
}

html body :where(.kmv-button--compact, .kmv-analytics-feedback button) {
	font-size: 0.78rem !important;
	min-height: 36px !important;
	padding: 0.5rem 0.8rem !important;
}

html body .kmv-button.kmv-button--icon {
	flex: 0 0 36px;
	height: 36px !important;
	min-height: 36px !important;
	min-width: 36px !important;
	padding: 0 !important;
	width: 36px !important;
}

html body :is(.kmv-global-search__control button, .kmv-analytics-feedback button) {
	border-radius: var(--kmv-button-radius) !important;
}

html body .kmv-global-search__control button {
	font-size: 0.875rem !important;
	min-height: 44px !important;
	padding: 0.7rem 1.1rem !important;
}

html body .kmv-analytics-feedback button {
	font-size: 0.78rem !important;
	min-height: 36px !important;
	padding: 0.5rem 0.8rem !important;
}

html body :is(
	.kmv-button.kmv-button--primary,
	.entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-primary > .wp-block-button__link
),
html body :is(
	.kmv-button.kmv-button--primary,
	.entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-primary > .wp-block-button__link
):visited,
html body :is(
	.kmv-button.kmv-button--primary,
	.entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-primary > .wp-block-button__link
):focus:not(:active),
html body :is(
	.kmv-button.kmv-button--primary,
	.entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-primary > .wp-block-button__link
):focus-visible:not(:active) {
	background: var(--kmv-button-primary) !important;
	border: 2px solid var(--kmv-button-primary) !important;
	color: var(--kmv-button-on-green) !important;
	-webkit-text-fill-color: var(--kmv-button-on-green) !important;
}

html body :is(
	.kmv-button.kmv-button--secondary,
	.entry-content .wp-block-button.is-style-outline > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-secondary > .wp-block-button__link
),
html body :is(
	.kmv-button.kmv-button--secondary,
	.entry-content .wp-block-button.is-style-outline > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-secondary > .wp-block-button__link
):visited,
html body :is(
	.kmv-button.kmv-button--secondary,
	.entry-content .wp-block-button.is-style-outline > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-secondary > .wp-block-button__link
):focus:not(:active),
html body :is(
	.kmv-button.kmv-button--secondary,
	.entry-content .wp-block-button.is-style-outline > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-secondary > .wp-block-button__link
):focus-visible:not(:active) {
	background: #ffffff !important;
	border: 2px solid var(--kmv-button-primary-hover) !important;
	color: var(--kmv-button-ink) !important;
	-webkit-text-fill-color: var(--kmv-button-ink) !important;
}

html body :is(.kmv-button.kmv-button--quiet, .kmv-analytics-feedback button),
html body .kmv-button.kmv-button--quiet:focus:not(:active),
html body .kmv-button.kmv-button--quiet:focus-visible:not(:active) {
	background: #ffffff !important;
	border: 1px solid var(--kmv-button-quiet-border) !important;
	color: var(--kmv-button-quiet-text) !important;
	-webkit-text-fill-color: var(--kmv-button-quiet-text) !important;
}

@media (hover: hover) and (pointer: fine) {
	html body :is(
		.kmv-button.kmv-button--primary,
		.entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link,
		.entry-content .wp-block-button.is-style-kmv-primary > .wp-block-button__link
	):hover {
		background: var(--kmv-button-primary-hover) !important;
		border-color: var(--kmv-button-primary-hover) !important;
		color: var(--kmv-button-on-green) !important;
		-webkit-text-fill-color: var(--kmv-button-on-green) !important;
	}

	html body :is(
		.kmv-button.kmv-button--secondary,
		.entry-content .wp-block-button.is-style-outline > .wp-block-button__link,
		.entry-content .wp-block-button.is-style-kmv-secondary > .wp-block-button__link
	):hover {
		background: var(--kmv-button-secondary-hover) !important;
		border-color: var(--kmv-button-primary-hover) !important;
		color: var(--kmv-button-on-green) !important;
		-webkit-text-fill-color: var(--kmv-button-on-green) !important;
	}

	html body :is(.kmv-button.kmv-button--quiet, .kmv-analytics-feedback button):hover {
		background: #eef5f2 !important;
		border-color: #7f9990 !important;
		color: #234b43 !important;
		-webkit-text-fill-color: #234b43 !important;
	}
}

html body :is(
	.kmv-button.kmv-button--primary,
	.entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-primary > .wp-block-button__link
):active {
	background: var(--kmv-button-primary-active) !important;
	border-color: var(--kmv-button-primary-active) !important;
	color: var(--kmv-button-on-green) !important;
	transform: translateY(1px);
	box-shadow: inset 0 2px 0 rgba(23, 49, 63, 0.22);
	-webkit-text-fill-color: var(--kmv-button-on-green) !important;
}

html body :is(
	.kmv-button.kmv-button--secondary,
	.entry-content .wp-block-button.is-style-outline > .wp-block-button__link,
	.entry-content .wp-block-button.is-style-kmv-secondary > .wp-block-button__link
):active {
	background: var(--kmv-button-secondary-active) !important;
	border-color: var(--kmv-button-primary-active) !important;
	color: var(--kmv-button-on-green) !important;
	transform: translateY(1px);
	box-shadow: inset 0 2px 0 rgba(23, 49, 63, 0.22);
	-webkit-text-fill-color: var(--kmv-button-on-green) !important;
}

html body :is(.kmv-button.kmv-button--quiet, .kmv-analytics-feedback button):active {
	background: #dfeae6 !important;
	border-color: #6f8d82 !important;
	color: #173d35 !important;
	transform: translateY(1px);
	-webkit-text-fill-color: #173d35 !important;
}

html body :where(.kmv-button, .entry-content .wp-block-button__link, .kmv-global-search__control button, .kmv-analytics-feedback button):disabled,
html body :where(.kmv-button, .entry-content .wp-block-button__link, .kmv-global-search__control button, .kmv-analytics-feedback button)[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.58;
	transform: none;
}

html body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark > .wp-block-button__link,
html body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark > .wp-block-button__link:visited,
html body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark > .wp-block-button__link:focus:not(:active),
html body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark > .wp-block-button__link:focus-visible:not(:active) {
	background: transparent !important;
	border: 2px solid #ffffff !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

@media (hover: hover) and (pointer: fine) {
	html body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark > .wp-block-button__link:hover {
		background: #ffffff !important;
		color: #17313f !important;
		-webkit-text-fill-color: #17313f !important;
	}
}

html body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark > .wp-block-button__link:active {
	background: #dfeae6 !important;
	border-color: #dfeae6 !important;
	color: #17313f !important;
	-webkit-text-fill-color: #17313f !important;
}

html body.home #inquiry .wp-block-button > .wp-block-button__link,
html body.home #inquiry .wp-block-button > .wp-block-button__link:visited,
html body.home #inquiry .wp-block-button > .wp-block-button__link:focus:not(:active),
html body.home #inquiry .wp-block-button > .wp-block-button__link:focus-visible:not(:active) {
	background: #ffffff !important;
	border-color: #ffffff !important;
	color: #17313f !important;
	-webkit-text-fill-color: #17313f !important;
}

@media (hover: hover) and (pointer: fine) {
	html body.home #inquiry .wp-block-button > .wp-block-button__link:hover {
		background: #eef5f1 !important;
		border-color: #eef5f1 !important;
		color: #17313f !important;
		-webkit-text-fill-color: #17313f !important;
	}
}

html body.home #inquiry .wp-block-button > .wp-block-button__link:active {
	background: #d9e9e2 !important;
	border-color: #d9e9e2 !important;
	color: #17313f !important;
	-webkit-text-fill-color: #17313f !important;
}

.site-header :where(a, button, input, select, textarea, summary, [role="button"], [tabindex]):focus-visible,
.site-footer :where(a, button, input, select, textarea, summary, [role="button"], [tabindex]):focus-visible {
	outline-color: #ffffff !important;
}

:where(button, input[type="button"], input[type="submit"], input[type="reset"], [role="button"], summary) {
	min-height: 24px;
	min-width: 24px;
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto !important;
	}

	.kmv-hero-slider *,
.kmv-chapter-navigation,
.kmv-chapter-navigation__backdrop,
.kmv-button {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

body {
	color: #241913;
}

.kmv-hero-slider {
	background: #2c3e50;
	color: #fff;
	display: grid;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: 570px;
	overflow: hidden;
	position: relative;
	width: 100vw;
}

body.home .entry-content > .kmv-hero-slider {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 100vw !important;
	width: 100vw !important;
}

body.page:not(.home) .entry-content > .wp-block-group:first-child {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 100vw !important;
	width: 100vw !important;
}

body.kmv-has-full-intro .entry-header {
	display: none;
}

body.kmv-has-full-intro .ast-article-single {
	padding: 0 !important;
}

body.kmv-has-full-intro #primary {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

body.kmv-has-full-intro .entry-content > .wp-block-group:first-child h1 {
	color: #ffffff !important;
}

body.kmv-has-full-intro .entry-content > .wp-block-group.alignwide {
	box-sizing: border-box;
	max-width: 1180px !important;
	width: calc(100% - 3rem) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.kmv-has-full-intro .site-header,
body.kmv-has-full-intro .ast-primary-header-bar,
body.kmv-has-full-intro .ast-primary-header-bar .site-primary-header-wrap,
body.kmv-has-full-intro .ast-primary-header-bar .ast-builder-grid-row-container,
body.kmv-has-full-intro .ast-primary-header-bar .ast-builder-grid-row,
body.kmv-has-full-intro .ast-below-header-bar,
body.kmv-has-full-intro .ast-below-header-bar .ast-builder-grid-row-container,
body.kmv-has-full-intro .ast-below-header-bar .ast-builder-grid-row {
	background-color: #47b39d !important;
}

body.kmv-has-full-intro .site-header .site-title a,
body.kmv-has-full-intro .site-header .main-header-menu .menu-link {
	color: #2c3e50 !important;
}

body.kmv-has-full-intro .site-header .main-header-menu .current-menu-item > .menu-link,
body.kmv-has-full-intro .site-header .main-header-menu .current_page_item > .menu-link,
body.kmv-has-full-intro .site-header .main-header-menu .menu-link:hover,
body.kmv-has-full-intro .site-header .main-header-menu .menu-link:focus-visible {
	color: #2c3e50 !important;
}

.site-header,
.site-header .ast-primary-header-bar,
.site-header .ast-primary-header-bar .site-primary-header-wrap,
.site-header .ast-primary-header-bar .ast-builder-grid-row-container,
.site-header .ast-primary-header-bar .ast-builder-grid-row,
.site-header .ast-below-header-bar,
.site-header .ast-below-header-bar .ast-builder-grid-row-container,
.site-header .ast-below-header-bar .ast-builder-grid-row {
	background-color: #2c3e50 !important;
}

.site-header .site-title a,
.site-header .main-header-menu .menu-link {
	color: #ffffff !important;
}

.site-header .main-header-menu .current-menu-item > .menu-link,
.site-header .main-header-menu .current_page_item > .menu-link,
.site-header .main-header-menu .menu-link:hover,
.site-header .main-header-menu .menu-link:focus-visible {
	color: #47b39d !important;
}

@media (min-width: 783px) {
	body.page:not(.home) .entry-content > .wp-block-group:first-child {
		padding-top: 128px !important;
	}
}

.site-header .ast-custom-button {
	background: #47b39d;
	color: #2c3e50;
}

.site-header .ast-custom-button,
.site-header .ast-custom-button *,
.site-header .ast-builder-html-element,
.site-header .ast-builder-html-element * {
	border-color: #47b39d;
	color: #2c3e50;
}

.site-header .ast-custom-button-link:hover .ast-custom-button,
.site-header .ast-custom-button-link:focus-visible .ast-custom-button {
	background: #ffffff;
	color: #1e8449;
}

.site-header .main-header-menu .current-menu-item > .menu-link,
.site-header .main-header-menu .current_page_item > .menu-link,
.site-header .main-header-menu .menu-link:hover,
.site-header .main-header-menu .menu-link:focus-visible,
.site-header .menu-toggle,
.site-header .menu-toggle *,
.wp-block-button__link {
	border-color: #47b39d !important;
	color: #57bca8 !important;
}

.site-header,
.site-header .ast-primary-header-bar,
.site-header .ast-primary-header-bar .site-primary-header-wrap,
.site-header .ast-primary-header-bar .ast-builder-grid-row-container,
.site-header .ast-primary-header-bar .ast-builder-grid-row,
.site-header .ast-below-header-bar,
.site-header .ast-below-header-bar .ast-builder-grid-row-container,
.site-header .ast-below-header-bar .ast-builder-grid-row {
	background-color: #47b39d !important;
}

.site-header .site-title a,
.site-header .main-header-menu .menu-link {
	color: #2c3e50 !important;
}

.site-header .site-branding {
	align-items: center;
	display: inline-flex;
	min-height: 42px;
}

.site-header .site-title {
	display: block;
	margin: 0;
}

.site-header .site-title a {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.25;
	white-space: nowrap;
}

.site-header .main-header-menu .current-menu-item > .menu-link,
.site-header .main-header-menu .current_page_item > .menu-link,
.site-header .main-header-menu .menu-link:hover,
.site-header .main-header-menu .menu-link:focus-visible {
	border-bottom: 2px solid #2c3e50;
	color: #2c3e50 !important;
	font-weight: 700;
}

.site-header .ast-custom-button,
.site-header .ast-custom-button *,
.site-header .ast-builder-html-element .ast-custom-button,
.site-header .ast-builder-html-element .ast-custom-button * {
	background-color: #2c3e50 !important;
	border-color: #2c3e50 !important;
	color: #ffffff !important;
}

.site-header .ast-custom-button-link:hover .ast-custom-button,
.site-header .ast-custom-button-link:focus-visible .ast-custom-button {
	background-color: #ffffff !important;
	border-color: #ffffff !important;
	color: #2c3e50 !important;
}

.site-header .menu-toggle,
.site-header .menu-toggle * {
	border-color: #2c3e50 !important;
	color: #2c3e50 !important;
}

.site-header .menu-toggle .ahfb-svg-iconset svg,
.site-header .menu-toggle .ahfb-svg-iconset svg path {
	fill: #2c3e50 !important;
}

@media (min-width: 922px) {
	.site-header #ast-desktop-header {
		align-items: stretch;
		display: flex;
		min-height: 71px;
	}

	.site-header #ast-desktop-header > .ast-main-header-wrap {
		flex: 0 0 320px;
		width: 320px;
	}

	.site-header #ast-desktop-header > .ast-below-header-wrap {
		flex: 1 1 auto;
		min-width: 0;
		width: auto;
	}

	.site-header #ast-desktop-header .ast-below-header-bar {
		margin-top: 0 !important;
	}

	.site-header #ast-desktop-header .ast-primary-header-bar,
.site-header #ast-desktop-header .ast-below-header-bar,
.site-header #ast-desktop-header .site-primary-header-wrap,
.site-header #ast-desktop-header .site-below-header-wrap,
.site-header #ast-desktop-header .ast-builder-grid-row-container,
.site-header #ast-desktop-header .ast-builder-grid-row {
		height: 71px;
		min-height: 71px;
	}

	.site-header #ast-desktop-header .ast-primary-header-bar .ast-builder-grid-row-container,
.site-header #ast-desktop-header .ast-below-header-bar .ast-builder-grid-row-container {
		max-width: none;
		width: 100%;
	}

	.site-header #ast-desktop-header .main-header-menu {
		flex-wrap: nowrap;
	}

	.site-header #ast-desktop-header .main-header-menu .menu-link {
		padding-inline: 12px;
		white-space: nowrap;
	}
}

.ast-builder-social-element .ahfb-svg-iconset svg,
.ast-builder-social-element .ahfb-svg-iconset svg path,
.site-header .menu-toggle .ahfb-svg-iconset svg,
.site-header .menu-toggle .ahfb-svg-iconset svg path {
	fill: #47b39d !important;
}

.site-header .menu-toggle,
.site-header .menu-toggle * {
	color: #2c3e50 !important;
}

.site-header .menu-toggle .ahfb-svg-iconset svg,
.site-header .menu-toggle .ahfb-svg-iconset svg path {
	fill: #2c3e50 !important;
}

@media (max-width: 921px) {
	.site-header .site-title a {
		font-size: 16px;
	}

	.site-header .menu-toggle {
		align-items: center;
		background: #ffffff !important;
		border: 1px solid #2c3e50 !important;
		border-radius: 3px;
		justify-content: center;
		min-height: 40px;
		min-width: 40px;
		padding: 7px;
	}
}

.kmv-breadcrumb {
	background: #f7f7f7;
	border-bottom: 1px solid #e5e5e5;
	color: #51616d;
}

.kmv-breadcrumb__inner {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1180px;
	padding: 11px 24px;
	width: 100%;
}

.kmv-breadcrumb ol {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kmv-breadcrumb li {
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

.kmv-breadcrumb li + li::before {
	color: #8b979f;
	content: '›';
	margin: 0 10px;
}

.kmv-breadcrumb a {
	color: #1e8449;
	font-weight: 700;
	text-decoration: none;
}

.kmv-breadcrumb a:hover,
.kmv-breadcrumb a:focus-visible {
	color: #2c3e50;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 640px) {
	.kmv-breadcrumb__inner {
		padding: 9px 20px;
	}

	.kmv-breadcrumb li {
		font-size: 12px;
	}
}

.site-primary-footer-wrap .site-primary-footer-inner-wrap {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) minmax(0, 1.45fr) !important;
}

.site-primary-footer-wrap .site-footer-primary-section-4 {
	display: none !important;
}

.site-primary-footer-wrap .site-footer-primary-section-3 .wp-block-latest-posts {
	margin: 0;
	padding: 0;
}

.site-primary-footer-wrap .site-footer-primary-section-3 .wp-block-latest-posts li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin: 0;
	padding: 8px 0;
}

.site-primary-footer-wrap .site-footer-primary-section-3 .wp-block-latest-posts a {
	color: #ffffff;
	font-size: 0.86rem;
	line-height: 1.55;
}

@media (max-width: 921px) {
	.site-primary-footer-wrap .ast-builder-grid-row-container-inner {
		box-sizing: border-box;
		padding-left: clamp(20px, 4vw, 36px) !important;
		padding-right: clamp(20px, 4vw, 36px) !important;
		width: 100% !important;
	}

	.site-primary-footer-wrap .site-primary-footer-inner-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.site-primary-footer-wrap .site-footer-primary-section-3 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 544px) {
	.ast-mobile-header-wrap .ast-builder-grid-row {
		box-sizing: border-box;
		grid-template-columns: minmax(0, 1fr) auto !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		width: 100% !important;
	}

	.ast-mobile-header-wrap .site-header-primary-section-left,
.ast-mobile-header-wrap .site-header-primary-section-right {
		min-width: 0 !important;
	}

	.ast-mobile-header-wrap .site-title a {
		font-size: 16px !important;
		white-space: nowrap;
	}

	.site-primary-footer-wrap .site-primary-footer-inner-wrap {
		grid-template-columns: 1fr !important;
	}

	.site-primary-footer-wrap .site-footer-primary-section-3 {
		grid-column: auto;
	}
}

body:not(.home) .site-content .ast-container {
	max-width: 1220px !important;
}

body:not(.home) .entry-content > :not(.alignfull) {
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: var(--kmv-content-width) !important;
	width: 100% !important;
}

body.kmv-has-full-intro .entry-content > .wp-block-group.alignwide,
body:not(.home) .entry-content > .wp-block-group.alignwide {
	max-width: var(--kmv-content-width) !important;
	width: 100% !important;
}

.ast-article-single.category-demand .entry-content a:not(.wp-block-button__link),
.ast-article-single.category-mdpc .entry-content a:not(.wp-block-button__link),
.ast-article-single.category-meas .entry-content a:not(.wp-block-button__link),
.ast-article-single.category-business .entry-content a:not(.wp-block-button__link),
.ast-article-single.category-news .entry-content a:not(.wp-block-button__link) {
	color: #1e8449 !important;
	text-decoration-color: currentcolor;
	text-underline-offset: 3px;
}

.ast-article-single.category-demand .entry-content a:not(.wp-block-button__link):hover,
.ast-article-single.category-demand .entry-content a:not(.wp-block-button__link):focus-visible,
.ast-article-single.category-mdpc .entry-content a:not(.wp-block-button__link):hover,
.ast-article-single.category-mdpc .entry-content a:not(.wp-block-button__link):focus-visible,
.ast-article-single.category-meas .entry-content a:not(.wp-block-button__link):hover,
.ast-article-single.category-meas .entry-content a:not(.wp-block-button__link):focus-visible,
.ast-article-single.category-business .entry-content a:not(.wp-block-button__link):hover,
.ast-article-single.category-business .entry-content a:not(.wp-block-button__link):focus-visible,
.ast-article-single.category-news .entry-content a:not(.wp-block-button__link):hover,
.ast-article-single.category-news .entry-content a:not(.wp-block-button__link):focus-visible {
	color: #2c3e50 !important;
}

body.home .kmv-home-product-link {
	color: #1e8449 !important;
	text-decoration: underline;
	text-decoration-color: rgba(30, 132, 73, 0.38);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.15em;
}

body.home .kmv-home-product-link:hover,
body.home .kmv-home-product-link:focus-visible {
	color: #155f35 !important;
	text-decoration-color: currentcolor;
}

body.page .site-header {
	background: #47b39d !important;
	position: relative !important;
}

body.page .site-header #ast-desktop-header .main-header-menu .menu-link {
	color: #ffffff !important;
	font-weight: 700 !important;
	text-shadow: none;
	-webkit-text-fill-color: #ffffff !important;
}

body.page .site-header #ast-desktop-header .main-header-menu .menu-link:hover,
body.page .site-header #ast-desktop-header .main-header-menu .menu-link:focus-visible,
body.page .site-header #ast-desktop-header .main-header-menu .current-menu-item > .menu-link,
body.page .site-header #ast-desktop-header .main-header-menu .current_page_item > .menu-link {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

body:not(.home) .site-content .ast-container,
body:not(.home) #primary,
body:not(.home) .ast-article-single,
body:not(.home) .entry-content {
	box-sizing: border-box;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

body:not(.home) .entry-content > :not(.alignfull) {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.site-header #ast-desktop-header .main-header-menu .menu-link {
	color: #ffffff !important;
	font-weight: 700 !important;
	text-shadow: none;
	-webkit-text-fill-color: #ffffff !important;
}

.site-header #ast-desktop-header .main-header-menu .menu-link:hover,
.site-header #ast-desktop-header .main-header-menu .menu-link:focus-visible,
.site-header #ast-desktop-header .main-header-menu .current-menu-item > .menu-link,
.site-header #ast-desktop-header .main-header-menu .current_page_item > .menu-link {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

body.kmv-has-full-intro .entry-content > .wp-block-group.alignwide {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.ast-builder-social-element {
	display: none !important;
}

::selection {
	background: #47b39d;
	color: #2c3e50;
}

::-moz-selection {
	background: #47b39d;
	color: #2c3e50;
}

body [style*="color:#55cf99"] {
	color: #155f35 !important;
}

body [style*="background-color:#55cf99"] {
	background-color: #47b39d !important;
}

body [style*="color:#15875f"] {
	color: #1e8449 !important;
}

body [style*="background-color:#15875f"] {
	background-color: #27ae60 !important;
}

body [style*="border-color:#cfe1d9"] {
	border-color: #e5e5e5 !important;
}

body [style*="background-color:#f5faf7"],
body [style*="background-color:#edf7f2"] {
	background-color: #fafafa !important;
}

.wp-block-button__link {
	color: #ffffff !important;
}

.kmv-hero-slider__slides,
.kmv-hero-slider__shade {
	inset: 0;
	position: absolute;
}

.kmv-hero-slider__slide {
	background-color: #2c3e50;
	inset: 0;
	overflow: hidden;
	opacity: 0;
	position: absolute;
	transition: opacity 850ms ease-in-out;
}

.kmv-hero-slider__image {
	display: block;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.kmv-hero-slider__slide.is-active {
	opacity: 1;
}

.kmv-hero-slider__shade {
	background: linear-gradient(90deg, rgba(44, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.88) 43%, rgba(44, 62, 80, 0.61) 73%, rgba(44, 62, 80, 0.42) 100%);
}

.kmv-hero-slider__content {
	align-self: center;
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1120px;
	padding: 140px 48px 82px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.kmv-hero-slider__eyebrow {
	color: #57bca8;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 18px;
}

.kmv-hero-slider h1 {
	color: #fff;
	font-size: clamp(38px, 4.1vw, 58px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.24;
	margin: 0;
	max-width: 580px;
}

.kmv-hero-slider__lead {
	color: #fff;
	font-size: 18px;
	line-height: 1.9;
	margin: 22px 0 0;
	max-width: 560px;
}

.kmv-hero-slider__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.kmv-hero-slider__button {
	border: 1px solid #fff;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	justify-content: center;
	min-width: 188px;
	padding: 14px 22px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.kmv-hero-slider__button:hover,
.kmv-hero-slider__button:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #2c3e50;
}

.kmv-hero-slider__button--primary {
	background: #47b39d;
	border-color: #47b39d;
	color: #2c3e50;
}

.kmv-hero-slider__button--primary:hover,
.kmv-hero-slider__button--primary:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #1e8449;
}

@media (max-width: 782px) {
	.kmv-hero-slider {
		min-height: 610px;
	}

	.kmv-hero-slider__slide {
		background-position: center;
		background-size: cover;
	}

	.kmv-hero-slider__shade {
		background: linear-gradient(180deg, rgba(44, 62, 80, 0.74) 0%, rgba(44, 62, 80, 0.9) 52%, rgba(44, 62, 80, 0.98) 100%);
	}

	.kmv-hero-slider__content {
		padding: 132px 24px 64px;
		text-align: center;
	}

	.kmv-hero-slider__eyebrow {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.kmv-hero-slider h1 {
		font-size: clamp(36px, 11.5vw, 48px);
		letter-spacing: -0.04em;
	}

	.kmv-hero-slider__lead {
		font-size: 16px;
		line-height: 1.8;
		margin-top: 20px;
	}

	.kmv-hero-slider__lead br {
		display: none;
	}

	.kmv-hero-slider__actions {
		justify-content: center;
		margin-top: 26px;
	}

	.kmv-hero-slider__button {
		font-size: 14px;
		min-width: 0;
		padding: 13px 18px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.kmv-hero-slider__slide,
.kmv-hero-slider__button {
		transition: none;
	}
}

body.kmv-has-full-intro .site-header .ast-primary-header-bar .ast-builder-grid-row-container,
body.kmv-has-full-intro .site-header .ast-primary-header-bar .ast-builder-grid-row,
body.kmv-has-full-intro .site-header .ast-below-header-bar .ast-builder-grid-row-container,
body.kmv-has-full-intro .site-header .ast-below-header-bar .ast-builder-grid-row {
	background-color: #27ae60 !important;
}

[data-section="section-hb-html-1"] {
	display: none !important;
}

.site-header .kmv-menu-icon > .menu-link::before {
	content: none !important;
	display: none !important;
}

html body .site-header .site-title a {
	color: #ffffff !important;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
	-webkit-text-fill-color: #ffffff !important;
}

html body .site-header #ast-desktop-header .main-header-menu .menu-link,
html body.page .site-header #ast-desktop-header .main-header-menu .menu-link {
	background: #27ae60 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

html body .site-header #ast-desktop-header .main-header-menu .menu-link:hover,
html body .site-header #ast-desktop-header .main-header-menu .menu-link:focus-visible,
html body .site-header #ast-desktop-header .main-header-menu .current-menu-item > .menu-link,
html body .site-header #ast-desktop-header .main-header-menu .current_page_item > .menu-link,
html body .site-header #ast-desktop-header .main-header-menu .current-menu-ancestor > .menu-link {
	background: #2ecc71 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

@media (min-width: 922px) {
	.site-header #ast-desktop-header > .ast-main-header-wrap {
		flex-basis: 350px;
		width: 350px;
	}

	.site-header #ast-desktop-header .ast-header-button-1 {
		flex: 0 0 132px;
		width: 132px;
	}

	.site-header #ast-desktop-header .ast-custom-button-link,
.site-header #ast-desktop-header .ast-custom-button {
		box-sizing: border-box;
		display: flex !important;
		height: 92px;
		min-width: 132px;
		width: 132px;
	}

	.site-header #ast-desktop-header .ast-custom-button {
		align-items: center;
		background: #2ecc71 !important;
		color: #ffffff !important;
		justify-content: center;
		padding: 0 14px;
		white-space: nowrap;
		-webkit-text-fill-color: #ffffff !important;
	}
}

body.page:not(.home):not(.kmv-demand-landing-page) .entry-content > .wp-block-group:first-child h1 {
	font-size: clamp(2.4rem, 4.5vw, 3.75rem) !important;
	letter-spacing: -0.035em !important;
	line-height: 1.18 !important;
}

.kmv-breadcrumb li:first-child a::before,
.kmv-home-news h2::before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: dashicons;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	vertical-align: -0.12em;
}

.kmv-breadcrumb li:first-child a::before {
	content: '\f102';
}

.kmv-home-news h2::before {
	content: '\f488';
}

.kmv-breadcrumb li:first-child a::before,
.kmv-home-news h2::before {
	color: #1e8449;
	margin-right: 0.45em;
}

.kmv-link-arrow-icon {
	font-size: 1.08em;
	height: 1em;
	line-height: 1;
	margin-left: 0.32em;
	vertical-align: -0.12em;
	width: 1em;
}

.site-header,
.site-header .ast-primary-header-bar,
.site-header .ast-primary-header-bar .site-primary-header-wrap,
.site-header .ast-primary-header-bar .ast-builder-grid-row-container,
.site-header .ast-primary-header-bar .ast-builder-grid-row,
.site-header .ast-below-header-bar,
.site-header .ast-below-header-bar .ast-builder-grid-row-container,
.site-header .ast-below-header-bar .ast-builder-grid-row,
body.page .site-header,
body.kmv-has-full-intro .site-header,
body.kmv-has-full-intro .ast-primary-header-bar,
body.kmv-has-full-intro .ast-below-header-bar {
	background-color: #27ae60 !important;
}

.site-header .site-title a,
body.page .site-header .site-title a {
	color: #ffffff !important;
}

html body .site-header .site-title a {
	color: #ffffff !important;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
}

@media (min-width: 922px) {
	.site-header #ast-desktop-header {
		min-height: 92px;
	}

	.site-header #ast-desktop-header > .ast-main-header-wrap {
		flex: 0 0 360px;
		width: 360px;
	}

	.site-header #ast-desktop-header .ast-primary-header-bar,
.site-header #ast-desktop-header .ast-below-header-bar,
.site-header #ast-desktop-header .site-primary-header-wrap,
.site-header #ast-desktop-header .site-below-header-wrap,
.site-header #ast-desktop-header .ast-builder-grid-row-container,
.site-header #ast-desktop-header .ast-builder-grid-row {
		height: 92px;
		min-height: 92px;
	}

	html body .site-header #ast-desktop-header .main-header-menu .menu-link {
		align-items: center;
		background: #27ae60 !important;
		border: 0 !important;
		box-sizing: border-box;
		color: #ffffff !important;
		display: flex;
		font-size: 16px;
		font-weight: 700 !important;
		height: 92px;
		justify-content: center;
		padding: 0 12px;
		text-shadow: none;
		transition: background-color 0.3s ease-in-out;
		-webkit-text-fill-color: #ffffff !important;
	}

	html body .site-header #ast-desktop-header .main-header-menu .menu-link:hover,
html body .site-header #ast-desktop-header .main-header-menu .menu-link:focus-visible,
html body .site-header #ast-desktop-header .main-header-menu .current-menu-item > .menu-link,
html body .site-header #ast-desktop-header .main-header-menu .current_page_item > .menu-link,
html body .site-header #ast-desktop-header .main-header-menu .current-menu-ancestor > .menu-link {
		background: #2ecc71 !important;
		border: 0 !important;
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	html body .site-header #ast-desktop-header .main-header-menu .menu-link:focus-visible {
		box-shadow: inset 0 0 0 3px #ffffff;
		outline: 0;
	}

	
	.site-header #ast-desktop-header .ast-custom-button {
		align-items: center;
		background: #27ae60 !important;
		border: 0 !important;
		border-radius: 0;
		box-sizing: border-box;
		color: #ffffff !important;
		display: flex;
		font-size: 16px;
		font-weight: 700;
		height: 92px;
		justify-content: center;
		padding: 0 12px;
		transition: background-color 0.3s ease-in-out;
	}

	.site-header #ast-desktop-header .ast-custom-button-link:hover .ast-custom-button,
.site-header #ast-desktop-header .ast-custom-button-link:focus-visible .ast-custom-button {
		background: #2ecc71 !important;
		color: #ffffff !important;
	}
}

@media (max-width: 1100px) {
	.site-header .site-title a {
		font-size: 18px;
	}

	.site-header .menu-toggle {
		background: #2ecc71 !important;
		border: 0 !important;
		border-radius: 0;
		color: #ffffff !important;
	}

	.site-header .menu-toggle *,
.site-header .menu-toggle .ahfb-svg-iconset svg,
.site-header .menu-toggle .ahfb-svg-iconset svg path {
		color: #ffffff !important;
		fill: #ffffff !important;
	}

	.ast-mobile-popup-drawer .ast-mobile-popup-inner,
.ast-mobile-popup-drawer .ast-mobile-popup-content,
.ast-mobile-header-content,
.ast-mobile-header-content .main-header-menu {
		background: #3b4552 !important;
	}

	.ast-mobile-header-content .main-header-menu .menu-link,
.ast-mobile-popup-drawer .main-header-menu .menu-link {
		background: #3b4552 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
		color: #ffffff !important;
		font-weight: 700;
		-webkit-text-fill-color: #ffffff !important;
	}

	.ast-mobile-header-content .main-header-menu .menu-link:hover,
.ast-mobile-header-content .main-header-menu .menu-link:focus-visible,
.ast-mobile-header-content .main-header-menu .current-menu-item > .menu-link,
.ast-mobile-popup-drawer .main-header-menu .menu-link:hover,
.ast-mobile-popup-drawer .main-header-menu .menu-link:focus-visible,
.ast-mobile-popup-drawer .main-header-menu .current-menu-item > .menu-link {
		background: #2c3e50 !important;
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	.ast-mobile-header-content .main-header-menu > .kmv-mobile-contact-menu-item,
.ast-mobile-popup-drawer .main-header-menu > .kmv-mobile-contact-menu-item {
		display: list-item !important;
	}
}

.site-header #ast-desktop-header .main-header-menu > .kmv-mobile-contact-menu-item {
	display: none !important;
}

.kmv-home-news-section {
	background: #f7f7f7;
	margin-block: 0 !important;
	padding: 0 !important;
}

.kmv-home-news {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
	width: 100%;
}

.kmv-home-news__heading {
	align-items: end;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.kmv-home-news__eyebrow {
	color: #1e8449;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1.2;
	margin: 0 0 .55rem;
}

.kmv-home-news h2 {
	color: #2c3e50;
	font-size: clamp(1.85rem, 3vw, 2.6rem);
	line-height: 1.25;
	margin: 0;
}

.kmv-home-news__archive-link {
	align-items: center;
	color: #1e8449;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: .95rem;
	font-weight: 700;
	gap: .45rem;
	text-decoration: none;
}

.kmv-home-news__archive-link:hover,
.kmv-home-news__archive-link:focus-visible {
	color: #2c3e50;
	text-decoration: underline;
	text-underline-offset: .2em;
}

.kmv-home-news__list {
	border-top: 1px solid #cfdcd7;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kmv-home-news__item {
	border-bottom: 1px solid #cfdcd7;
	margin: 0;
}

.kmv-home-news__item a {
	align-items: center;
	color: #241913;
	display: grid;
	gap: 1rem;
	grid-template-columns: 8rem minmax(0, 1fr) auto;
	min-height: 4.75rem;
	padding: 1rem .35rem;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, padding .2s ease;
}

.kmv-home-news__item time {
	color: #527467;
	font-family: Montserrat, "Open Sans", sans-serif;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .04em;
}

.kmv-home-news__title {
	font-weight: 700;
	line-height: 1.65;
}

.kmv-home-news__arrow {
	color: #1e8449;
	font-size: 1.1rem;
}

.kmv-home-news__item a:hover,
.kmv-home-news__item a:focus-visible {
	background: #ffffff;
	color: #1e8449;
	padding-left: .9rem;
	padding-right: .9rem;
}

@media (max-width: 640px) {
	.kmv-home-news__heading {
		align-items: start;
		flex-direction: column;
		gap: .85rem;
	}

	.kmv-home-news__item a {
		column-gap: .7rem;
		grid-template-columns: minmax(0, 1fr) auto;
		padding-block: 1rem;
	}

	.kmv-home-news__item time {
		grid-column: 1 / -1;
	}
}

body:not(.home) .entry-content > :not(.alignfull):not(.kmv-hero-slider):not(.kmv-demand-hero):not(.kmv-demand-section):not(.kmv-meas-overview):not(.kmv-meas-topic-section):not(.kmv-mdpc-hero):not(.kmv-mdpc-section):not(.kmv-mdpc-final-cta):not(.kmv-energy-tool):not(.is-style-kmv-cta-panel) {
	padding-left: var(--kmv-readable-gutter) !important;
	padding-right: var(--kmv-readable-gutter) !important;
}

@keyframes kmv-demand-aurora {
	0% { transform: translate3d(-8%, -4%, 0) scale(.88); }
	100% { transform: translate3d(10%, 7%, 0) scale(1.15); }
}

@keyframes kmv-demand-grid-drift {
	to { background-position: 36px 36px; }
}

@keyframes kmv-demand-pulse {
	0% { box-shadow: 0 0 0 0 rgba(71, 179, 157, .65); }
	70% { box-shadow: 0 0 0 8px rgba(71, 179, 157, 0); }
	100% { box-shadow: 0 0 0 0 rgba(71, 179, 157, 0); }
}

@keyframes kmv-demand-screen-float {
	0%, 100% { transform: perspective(1200px) translateY(0) rotateY(-2deg) rotateX(1deg); }
	50% { transform: perspective(1200px) translateY(-8px) rotateY(-1deg) rotateX(.5deg); }
}

.category-meas .ast-archive-description,
.category-comp .ast-archive-description,
.category-pump .ast-archive-description,
.category-aircon .ast-archive-description,
.category-home-measurements .ast-archive-description {
	display: none;
}

#equipment-topics {
	scroll-margin-top: 8rem;
}

.category-meas .ast-article-post,
.category-comp .ast-article-post,
.category-pump .ast-article-post,
.category-aircon .ast-article-post,
.category-home-measurements .ast-article-post {
	padding: clamp(1.25rem, 2vw, 2rem);
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	background: #ffffff;
	box-shadow: none;
}

.category-meas .entry-title a,
.category-comp .entry-title a,
.category-pump .entry-title a,
.category-aircon .entry-title a,
.category-home-measurements .entry-title a {
	color: #2c3e50;
}

.category-meas .ast-no-posts-container,
.category-meas .no-results,
.category-meas .ast-pagination,
.category-meas nav.navigation {
	display: none;
}

.kmv-home-business-overview-link {
	justify-content: center;
	margin-top: 2rem;
}

.kmv-home-business-overview-link .wp-block-button {
	display: flex;
	align-items: stretch;
	border-radius: 4px;
	background: #47b39d !important;
}

.kmv-home-business-overview-link .wp-block-button__link,
.kmv-home-business-overview-link .wp-block-button__link:visited {
	width: 100%;
	border: 1px solid #47b39d !important;
	border-radius: 4px;
	background: #47b39d !important;
	color: #ffffff !important;
	font-weight: 700;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
	-webkit-text-fill-color: #ffffff !important;
}

.kmv-home-business-overview-link .wp-block-button__link:hover,
.kmv-home-business-overview-link .wp-block-button__link:focus-visible {
	border-color: #1e8449 !important;
	background: #1e8449 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

body.home .kmv-home-simulator-cta {
	margin-top: clamp(28px, 4vw, 44px) !important;
	padding: clamp(24px, 4vw, 36px) !important;
	border: 1px solid #cfe3dc;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 38px rgba(44, 62, 80, .08);
}

body.home .kmv-home-simulator-cta__eyebrow {
	margin: 0 0 .45rem !important;
	color: #1e8449 !important;
	font-size: .68rem !important;
	font-weight: 800;
	letter-spacing: .13em;
}

body.home .kmv-home-simulator-cta h3 {
	margin: 0 0 .45rem !important;
	color: #2c3e50 !important;
	font-size: clamp(1.25rem, 2.4vw, 1.8rem) !important;
}

body.home .kmv-home-simulator-cta > p:not(.kmv-home-simulator-cta__eyebrow) {
	margin: 0 !important;
	color: #617079;
	font-size: .88rem;
	line-height: 1.7;
}

body.home .kmv-home-simulator-cta .wp-block-buttons {
	margin-top: 1rem;
}

body.home .kmv-home-simulator-cta .wp-block-button__link {
	padding: .75rem 1.1rem;
	border-radius: 999px;
	background: #2c3e50;
	color: #fff !important;
	font-size: .82rem;
	font-weight: 800;
}

.category-demand .entry-meta,
.category-mdpc .entry-meta,
.category-meas .entry-meta,
.category-business .entry-meta {
	display: none;
}

.kmv-legacy-date {
	color: #5e6265;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 0.8rem;
}

.category-news .entry-meta {
	display: none;
}

body:not(.home) .site-content .ast-container,
body:not(.home) #primary,
body:not(.home) .ast-article-single,
body:not(.home) .entry-content {
	box-sizing: border-box;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

body:not(.home) .entry-content > :not(.alignfull) {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

body.kmv-has-full-intro .entry-content > .wp-block-group.alignwide {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.site-header #ast-desktop-header .ast-custom-button-link,
.site-header #ast-desktop-header .ast-custom-button-link .ast-custom-button {
	background: #263238 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.site-header #ast-desktop-header .ast-custom-button-link:hover,
.site-header #ast-desktop-header .ast-custom-button-link:focus-visible,
.site-header #ast-desktop-header .ast-custom-button-link:hover .ast-custom-button,
.site-header #ast-desktop-header .ast-custom-button-link:focus-visible .ast-custom-button {
	background: #172126 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.site-header #ast-desktop-header .ast-custom-button-link:focus-visible {
	box-shadow: inset 0 0 0 3px #ffffff;
	outline: 0;
}

.kmv-breadcrumb {
	background: #1e8449 !important;
	border: 0 !important;
	color: #ffffff !important;
}

.kmv-breadcrumb,
.kmv-breadcrumb ol,
.kmv-breadcrumb li,
.kmv-breadcrumb a,
.kmv-breadcrumb li + li::before,
.kmv-breadcrumb li:first-child a::before {
	color: #ffffff !important;
}

.kmv-breadcrumb a:hover,
.kmv-breadcrumb a:focus-visible {
	color: #ffffff !important;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

body.page:not(.home) #primary {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.page:not(.home) .ast-article-single,
body.page:not(.home) .entry-content,
body.page:not(.home) .entry-content > :first-child {
	margin-top: 0 !important;
}

html body.page:not(.home) .entry-content > .wp-block-group:first-child {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

html body.home .entry-content > .kmv-hero-slider {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

html body.home .entry-content > .alignfull {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

body.kmv-has-full-intro .entry-content > .wp-block-group:first-child p:not(.has-text-color) {
	color: #ffffff !important;
}

body.home .entry-content > .wp-block-group > .wp-block-columns {
	align-items: stretch !important;
}

body.home .entry-content > .wp-block-group > .wp-block-columns > .wp-block-column {
	display: flex;
}

body.home .entry-content > .wp-block-group > .wp-block-columns > .wp-block-column > .wp-block-group {
	height: 100%;
	width: 100%;
}

body.home .entry-content > .wp-block-group:last-child :is(h2, p) {
	color: #ffffff !important;
}

html body.home .site-content > .ast-container,
html body.home #primary,
html body.home .site-main,
html body.home .ast-article-single,
html body.home .entry-content {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

.kmv-global-search {
	background:
		radial-gradient(circle at 12% 18%, rgba(71, 179, 157, 0.18), transparent 30%),
		#223343;
	box-sizing: border-box;
	color: #ffffff;
	padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 72px);
	width: 100%;
}

.kmv-global-search__inner {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
	margin: 0 auto;
	max-width: 1180px;
}

.kmv-global-search__heading > p {
	color: #7ed8be !important;
	font-size: 0.72rem !important;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 0.55rem !important;
}

.kmv-global-search__heading h2 {
	color: #ffffff !important;
	font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
	line-height: 1.25 !important;
	margin: 0 0 0.7rem !important;
}

.kmv-global-search__heading > span {
	color: rgba(255, 255, 255, 0.72);
	display: block;
	font-size: 0.88rem;
	line-height: 1.75;
}

.kmv-global-search__form {
	margin: 0 !important;
	width: 100%;
}

.kmv-global-search__control {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	display: grid;
	gap: 0.5rem;
	grid-template-columns: auto minmax(0, 1fr) auto;
	padding: 0.42rem;
}

.kmv-global-search__control > .dashicons {
	color: #60727c;
	font-size: 21px;
	height: 21px;
	margin-left: 0.8rem;
	width: 21px;
}

.kmv-global-search__control input[type="search"] {
	appearance: none;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #263238 !important;
	font-size: 1rem !important;
	margin: 0 !important;
	min-width: 0;
	padding: 0.82rem 0.35rem !important;
	width: 100%;
}

.kmv-global-search__control input[type="search"]::placeholder {
	color: #7b8b93;
	opacity: 1;
}

.kmv-global-search__control:focus-within {
	box-shadow: 0 0 0 3px rgba(126, 216, 190, 0.28), 0 18px 40px rgba(0, 0, 0, 0.18);
}

html body .kmv-global-search__control button {
	background: var(--kmv-button-primary) !important;
	border: 1px solid var(--kmv-button-primary) !important;
	border-radius: 999px !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	font-size: 0.86rem !important;
	font-weight: 800;
	line-height: 1 !important;
	margin: 0 0.5rem 0 0 !important;
	min-height: 46px;
	padding: 0.8rem 1.4rem !important;
}

html body .kmv-global-search__control button:hover,
html body .kmv-global-search__control button:focus-visible {
	background: var(--kmv-button-primary-hover) !important;
	border-color: var(--kmv-button-primary-hover) !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.kmv-global-search__examples {
	margin: .7rem 1rem 0 !important;
	color: rgba(255, 255, 255, .68) !important;
	font-size: .72rem !important;
	line-height: 1.6;
}

.kmv-global-search__examples span {
	color: #a8ead7;
	font-weight: 700;
}

@media (max-width: 820px) {
	.kmv-global-search__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.kmv-global-search {
		padding-left: 18px;
		padding-right: 18px;
	}

	.kmv-global-search__control {
		border-radius: 16px;
		grid-template-columns: auto minmax(0, 1fr) auto;
		padding: 0.35rem;
	}

	.kmv-global-search__control button {
		align-self: center;
		grid-column: auto;
		margin: 0 0.5rem 0 0 !important;
		min-width: 4rem;
		width: auto;
	}
}

body.home .entry-content .wp-block-columns:has(a[href="/business/#energy-support"]) {
	align-items: stretch !important;
}

body.home .entry-content .wp-block-columns:has(a[href="/business/#energy-support"]) > .wp-block-column {
	display: flex;
	flex-direction: column;
}

body.home .entry-content .wp-block-columns:has(a[href="/business/#energy-support"]) > .wp-block-column .wp-block-buttons {
	margin-top: auto !important;
	padding-top: 1.2rem;
	width: 100%;
}

body.home .entry-content .wp-block-columns:has(a[href="/business/#energy-support"]) > .wp-block-column .wp-block-button,
body.home .entry-content .wp-block-columns:has(a[href="/business/#energy-support"]) > .wp-block-column .wp-block-button__link {
	box-sizing: border-box;
	width: 100%;
}

body.home .entry-content .wp-block-columns:has(a[href="/business/#energy-support"]) > .wp-block-column .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: .68rem 1rem;
	text-align: center;
}

html body.kmv-has-full-intro.page:not(.home):not(.kmv-demand-landing-page):not(.kmv-meas-landing-page):not(.kmv-mdpc-landing-page):not(.kmv-energy-conversion-page):not(.kmv-demand-simulator-page) .entry-content > .wp-block-group:first-child {
	padding-bottom: var(--kmv-space-hero) !important;
	padding-top: var(--kmv-space-hero) !important;
}

.kmv-global-search {
	padding-bottom: clamp(36px, 5vw, 56px);
	padding-top: clamp(36px, 5vw, 56px);
}

body.page:not(.home) .ast-article-single > .entry-header {
	box-sizing: border-box;
	width: min(100%, calc(var(--kmv-content-width, 1180px) + (var(--kmv-page-gutter) * 2)));
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: var(--kmv-page-gutter);
	padding-right: var(--kmv-page-gutter);
}

body .entry-content a:not(.wp-element-button):not(.wp-block-button__link):not([class*="button"]):not(.has-text-color) {
	color: var(--kmv-content-link);
	text-decoration: underline;
	text-decoration-color: rgba(23, 107, 58, 0.42);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
	overflow-wrap: anywhere;
}

body .entry-content a:not(.wp-element-button):not(.wp-block-button__link):not([class*="button"]):not(.has-text-color):hover,
body .entry-content a:not(.wp-element-button):not(.wp-block-button__link):not([class*="button"]):not(.has-text-color):focus-visible {
	color: var(--kmv-content-link-hover);
	text-decoration-color: currentcolor;
}

body .entry-content a:not(.wp-element-button):not(.wp-block-button__link):not([class*="button"]):focus-visible {
	border-radius: 2px;
	outline: 3px solid #d98f1d;
	outline-offset: 3px;
}

body .entry-content :is(.has-background, .wp-block-cover) a:not(.wp-element-button):not(.wp-block-button__link):not([class*="button"]):not(.has-text-color) {
	color: inherit;
	text-decoration-color: currentcolor;
}

body .entry-content .kmv-chapter-navigation__link,
body .entry-content .kmv-chapter-navigation__link:hover,
body .entry-content .kmv-chapter-navigation__link:focus-visible,
body.home .entry-content .kmv-home-news a,
body.home .entry-content .kmv-home-news a:hover,
body.home .entry-content .kmv-home-news a:focus-visible {
	text-decoration: none !important;
}

body .entry-content > .kmv-chapter-page-header:first-child {
	box-sizing: border-box;
	margin: 0 !important;
	padding: clamp(4rem, 8vw, 6rem) var(--kmv-readable-gutter) !important;
	width: 100% !important;
}

body .entry-content > .kmv-chapter-page-header:first-child > * {
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 960px !important;
	width: 100% !important;
}

body .entry-content > .kmv-chapter-page-header:first-child h1 {
	color: #ffffff !important;
}

body .entry-content > .kmv-chapter-page-header:first-child p:first-child {
	color: #71d4bf !important;
}

body .entry-content > .kmv-chapter-page-header:first-child p:not(:first-child) {
	color: #e8f0ed !important;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.9;
}

body.home .entry-content .kmv-home-news__archive-link {
	transition: color 160ms ease, transform 160ms ease;
}

body.home .entry-content .kmv-home-news__archive-link:hover,
body.home .entry-content .kmv-home-news__archive-link:focus-visible {
	color: var(--kmv-content-link-hover);
	transform: translateX(3px);
}

body.home .entry-content .kmv-home-news__item a:hover,
body.home .entry-content .kmv-home-news__item a:focus-visible {
	box-shadow: inset 4px 0 #47b39d;
	color: var(--kmv-content-link-hover);
}

.site-footer .menu-item > a,
.site-footer .kmv-menu-cookie-policy > a,
.site-footer .kmv-menu-cookie-settings > a {
	color: #ffffff !important;
	text-decoration: none !important;
	transition: color 160ms ease, opacity 160ms ease !important;
}

.site-footer .menu-item > a:hover,
.site-footer .menu-item > a:focus-visible,
.site-footer .kmv-menu-cookie-policy > a:hover,
.site-footer .kmv-menu-cookie-policy > a:focus-visible,
.site-footer .kmv-menu-cookie-settings > a:hover,
.site-footer .kmv-menu-cookie-settings > a:focus-visible {
	color: #bfeade !important;
	text-decoration: none !important;
}

.site-primary-footer-wrap .site-footer-primary-section-3 .wp-block-latest-posts a {
	display: inline-block;
	text-decoration: none !important;
	transition: color 160ms ease, transform 160ms ease !important;
}

.site-primary-footer-wrap .site-footer-primary-section-3 .wp-block-latest-posts a:hover,
.site-primary-footer-wrap .site-footer-primary-section-3 .wp-block-latest-posts a:focus-visible {
	color: #bfeade !important;
	text-decoration: none !important;
	transform: translateX(3px);
}

body .entry-content .kmv-ui-shell {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

body .entry-content .is-style-kmv-section {
	box-sizing: border-box;
}

body .entry-content .is-style-kmv-eyebrow {
	color: var(--kmv-ui-link);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.4;
	margin: 0 0 0.9rem;
}

body .entry-content .is-style-kmv-lead {
	color: var(--kmv-ui-muted);
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.9;
	max-width: 50rem;
}

body .entry-content .is-style-kmv-actions {
	align-items: stretch;
	gap: 0.75rem;
	margin-top: 2rem;
}

body .entry-content :is(.kmv-ui-grid, .is-style-kmv-card-grid, .is-style-kmv-step-grid, .is-style-kmv-feature-grid) {
	gap: 1.125rem;
}

body .entry-content :is(.kmv-ui-grid, .is-style-kmv-card-grid, .is-style-kmv-step-grid, .is-style-kmv-feature-grid) > .wp-block-column {
	box-sizing: border-box;
	margin: 0 !important;
	min-width: 0;
}

body .entry-content :is(.is-style-kmv-card-grid, .is-style-kmv-step-grid) > .wp-block-column {
	background: #ffffff;
	border: 1px solid var(--kmv-ui-border);
	border-radius: 15px;
	box-shadow: var(--kmv-ui-shadow);
	padding: clamp(1.125rem, 2.5vw, 1.625rem);
}

body .entry-content .is-style-kmv-step-grid > .wp-block-column {
	border-top: 4px solid var(--kmv-ui-accent);
}

body .entry-content .is-style-kmv-feature-grid > .wp-block-column {
	border-top: 3px solid var(--kmv-ui-accent);
	padding: 1.4rem 0.25rem 0;
}

body .entry-content .is-style-kmv-note {
	color: var(--kmv-ui-muted);
	font-size: 0.8125rem;
	line-height: 1.7;
}

body .entry-content .is-style-kmv-callout {
	background: var(--kmv-ui-accent-pale);
	border-left: 4px solid var(--kmv-ui-accent);
	border-radius: 0 12px 12px 0;
	box-sizing: border-box;
	margin: 1.4rem 0;
	padding: 1.125rem 1.375rem;
}

body .entry-content .is-style-kmv-cta-panel {
	background: #eef5f3 !important;
	border-radius: 18px;
	box-sizing: border-box;
	padding: clamp(1.5rem, 4vw, 2.625rem) !important;
}

body .entry-content .is-style-kmv-dark-panel {
	background-color: var(--kmv-ui-ink);
	color: #ffffff;
}

body .entry-content .is-style-kmv-dark-panel :is(h1, h2, h3, h4, h5, h6) {
	color: #ffffff !important;
}

body .entry-content .is-style-kmv-dark-panel :is(.is-style-kmv-lead, p:not(.has-text-color)) {
	color: rgba(255, 255, 255, 0.9);
}

body .entry-content .is-style-kmv-anchor-nav {
	gap: 0.55rem;
}

body .entry-content .is-style-kmv-anchor-nav .wp-block-button > .wp-block-button__link.wp-element-button {
	background: #ffffff;
	border: 1px solid #cfdad7;
	border-radius: 999px;
	color: #29443f !important;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.55rem 0.9rem;
	text-decoration: none !important;
}

body .entry-content .is-style-kmv-anchor-nav .wp-block-button > .wp-block-button__link.wp-element-button:hover,
body .entry-content .is-style-kmv-anchor-nav .wp-block-button > .wp-block-button__link.wp-element-button:focus-visible {
	background: var(--kmv-ui-accent-pale);
	border-color: var(--kmv-ui-accent);
	color: var(--kmv-ui-link-hover) !important;
}

body .entry-content .is-style-kmv-link-list a {
	color: var(--kmv-ui-link);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body .entry-content .is-style-kmv-link-list a::after {
	-webkit-font-smoothing: antialiased;
	content: '\f345';
	display: inline-block;
	font-family: dashicons;
	font-style: normal;
	font-weight: 400;
	margin-left: 0.35em;
	vertical-align: -0.12em;
}

body .entry-content .is-style-kmv-checklist {
	background: #ffffff;
	border-left: 3px solid var(--kmv-ui-accent);
	box-sizing: border-box;
	margin: 0;
	padding: 0.5rem 1.75rem 0.5rem 2.625rem;
}

body .entry-content .is-style-kmv-checklist li {
	border-bottom: 1px solid var(--kmv-ui-border);
	line-height: 1.65;
	padding: 0.8125rem 0;
}

body .entry-content .is-style-kmv-checklist li:last-child {
	border-bottom: 0;
}

body .entry-content :is(.wp-block-group, .wp-block-column).is-style-kmv-card,
body .entry-content :is(.wp-block-group, .wp-block-column).is-style-kmv-card-accent {
	box-sizing: border-box;
	border: 1px solid var(--kmv-ui-border);
	border-radius: var(--kmv-ui-radius);
	box-shadow: var(--kmv-ui-shadow);
	padding: clamp(1.25rem, 3vw, 1.875rem);
}

body .entry-content :is(.wp-block-group, .wp-block-column).is-style-kmv-card {
	background: #ffffff;
}

body .entry-content :is(.wp-block-group, .wp-block-column).is-style-kmv-card-accent {
	background: var(--kmv-ui-accent-pale);
	border-color: var(--kmv-ui-accent);
}

body .entry-content .wp-block-button:is(.is-style-kmv-primary, .is-style-kmv-secondary, .is-style-kmv-secondary-on-dark) .wp-block-button__link {
	box-sizing: border-box;
	border: 2px solid var(--kmv-ui-accent) !important;
	border-radius: 5px;
	font-weight: 700;
	padding: 0.75em 1.35em;
	text-decoration: none !important;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body .entry-content .wp-block-button.is-style-kmv-primary .wp-block-button__link {
	background: var(--kmv-ui-accent) !important;
	color: #183c34 !important;
}

body .entry-content .wp-block-button.is-style-kmv-secondary .wp-block-button__link {
	background: #ffffff !important;
	color: var(--kmv-ui-link) !important;
}

body .entry-content .wp-block-button.is-style-kmv-secondary-on-dark .wp-block-button__link {
	background: transparent !important;
	border-color: #ffffff !important;
	color: #ffffff !important;
}

body .entry-content .wp-block-button:is(.is-style-kmv-primary, .is-style-kmv-secondary, .is-style-kmv-secondary-on-dark) .wp-block-button__link:hover,
body .entry-content .wp-block-button:is(.is-style-kmv-primary, .is-style-kmv-secondary, .is-style-kmv-secondary-on-dark) .wp-block-button__link:focus-visible {
	background: var(--kmv-ui-ink) !important;
	border-color: var(--kmv-ui-ink) !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

html body .entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link.wp-element-button,
html body .entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link.wp-element-button:visited,
html body .entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link.wp-element-button:focus:not(:active),
html body .entry-content .wp-block-button:not(.is-style-outline):not(.is-style-kmv-secondary):not(.is-style-kmv-secondary-on-dark) > .wp-block-button__link.wp-element-button:focus-visible:not(:active) {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

@media (max-width: 600px) {
	body .entry-content .is-style-kmv-actions .wp-block-button,
body .entry-content .is-style-kmv-actions .wp-block-button__link {
		width: 100%;
	}

	body .entry-content .is-style-kmv-anchor-nav .wp-block-button {
		flex: 1 1 auto;
	}

	body .entry-content .is-style-kmv-anchor-nav .wp-block-button__link {
		text-align: center;
		width: 100%;
	}

	body .entry-content .is-style-kmv-checklist {
		padding-left: 2.125rem;
		padding-right: 1.25rem;
	}
}

html body .site-header .site-title a {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.kmv-hero-slider__button--primary {
	color: #17313f !important;
}

body.home #energy-management > p.has-text-color,
body.home .entry-content > .wp-block-group > p.has-text-align-center.has-text-color,
body.home .kmv-home-news__eyebrow {
	color: #176b3a !important;
}

.entry-content :is(ol, ul).wp-block-list {
	margin-inline: 0 !important;
	padding-inline-start: 1.25rem !important;
}

.entry-content :is(ol, ul).wp-block-list > li {
	padding-inline-start: 0.2rem;
}

body.home .entry-content .wp-block-button > .wp-block-button__link {
	background-color: #1e8449 !important;
	color: #ffffff !important;
}

body.home #inquiry .wp-block-button > .wp-block-button__link,
body.home #inquiry .wp-block-button > .wp-block-button__link:visited {
	border: 1px solid #ffffff !important;
	background-color: #ffffff !important;
	color: #17313f !important;
	-webkit-text-fill-color: #17313f !important;
}

body.home #inquiry .wp-block-button > .wp-block-button__link:hover,
body.home #inquiry .wp-block-button > .wp-block-button__link:focus-visible {
	border-color: #dce7e2 !important;
	background-color: #eef5f1 !important;
	color: #17313f !important;
	-webkit-text-fill-color: #17313f !important;
}

.site-footer .menu-our-services-container .menu-link {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding-block: 3px;
}

@media (max-width: 1100px) {
	.site-header #ast-desktop-header {
		display: none !important;
	}

	.site-header #ast-mobile-header {
		display: block !important;
	}
}

@media (min-width: 922px) and (max-width: 1180px) {
	.site-header #ast-desktop-header > .ast-main-header-wrap {
		flex: 0 0 clamp(230px, 25vw, 280px) !important;
		width: clamp(230px, 25vw, 280px) !important;
	}

	html body .site-header .site-title a {
		font-size: clamp(17px, 1.75vw, 19px) !important;
		white-space: nowrap;
	}

	html body .site-header #ast-desktop-header .main-header-menu .menu-link {
		font-size: clamp(12px, 1.25vw, 14px) !important;
		padding-inline: clamp(5px, 0.65vw, 8px) !important;
	}

	.site-header #ast-desktop-header .ast-header-button-1,
.site-header #ast-desktop-header .ast-custom-button-link,
.site-header #ast-desktop-header .ast-custom-button {
		flex-basis: 102px !important;
		min-width: 102px !important;
		width: 102px !important;
	}

	.site-header #ast-desktop-header .ast-custom-button {
		font-size: 13px !important;
		padding-inline: 8px !important;
	}
}

.kmv-image-zoomable {
	cursor: zoom-in;
}

.kmv-image-zoomable:focus-visible {
	outline: 3px solid #d98f1d;
	outline-offset: 4px;
}

html.kmv-image-lightbox-open {
	overflow: hidden;
}

.kmv-image-lightbox {
	width: min(94vw, 1480px);
	max-width: none;
	height: min(92vh, 980px);
	max-height: none;
	margin: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	overflow: visible;
}

.kmv-image-lightbox::backdrop {
	background: rgba(12, 25, 29, 0.88);
	backdrop-filter: blur(5px);
}

.kmv-image-lightbox__panel {
	position: relative;
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	padding: 46px 20px 18px;
}

.kmv-image-lightbox__panel figure {
	display: grid;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	place-items: center;
	gap: 10px;
}

.kmv-image-lightbox__panel img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(92vh - 92px);
	border-radius: 3px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
	object-fit: contain;
}

.kmv-image-lightbox__panel figcaption {
	max-width: min(88vw, 900px);
	color: #ffffff !important;
	font-size: 0.86rem;
	line-height: 1.55;
	text-align: center;
}

.kmv-image-lightbox__close {
	position: absolute;
	top: 0;
	right: 6px;
	z-index: 2;
	display: inline-grid;
	width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: rgba(18, 39, 43, 0.82);
	color: #ffffff;
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.kmv-image-lightbox__close:hover,
.kmv-image-lightbox__close:focus-visible {
	border-color: #ffffff;
	background: #ffffff;
	color: #18383c;
}

.kmv-image-lightbox__close:focus-visible {
	outline: 3px solid #d98f1d;
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.kmv-image-lightbox {
		width: 100vw;
		height: 100dvh;
	}

	.kmv-image-lightbox__panel {
		padding: 54px 12px 18px;
	}

	.kmv-image-lightbox__panel img {
		max-height: calc(100dvh - 120px);
	}

	.kmv-image-lightbox__close {
		top: 6px;
		right: 12px;
	}
}

.kmv-print-header,
.kmv-print-footer {
	display: none;
}

@page {
	size: A4 portrait;
	margin: 23mm 13mm 20mm;
}

@page kmv-energy-print {
	size: A4 portrait;
	margin: 22mm 12mm 20mm;
}

@page kmv-demand-print {
	size: A4 landscape;
	margin: 20mm 9mm 18mm;
}

@media print {

	html,
body {
		width: auto !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #ffffff !important;
		color: #1f2f35 !important;
		font-size: 10.5pt !important;
		line-height: 1.55 !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	*,
*::before,
*::after {
		animation: none !important;
		transition: none !important;
		text-shadow: none !important;
	}

	.kmv-print-header {
		position: static !important;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 6mm;
		height: auto !important;
		min-width: 0;
		min-height: 5.5mm;
		margin: 0 0 5mm !important;
		padding: 0 0 2mm !important;
		border-bottom: 0.25mm solid #9aabad;
		color: #40565b !important;
		font-size: 7pt !important;
		line-height: 1.2 !important;
	}

	
	.kmv-print-footer {
		display: none !important;
		position: static !important;
		border: 0 !important;
	}

	.kmv-print-header__site,
.kmv-print-footer__title {
		min-width: 0;
		flex: 0 1 38%;
		overflow: hidden;
		font-weight: 700;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.kmv-print-header__title,
.kmv-print-footer__url {
		min-width: 0;
		flex: 1 1 auto;
		overflow: hidden;
		text-align: right;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.kmv-print-header__title,
.kmv-print-footer__title {
		color: #18383c !important;
	}

	.kmv-print-footer__url {
		font-size: 6.5pt !important;
	}

	#wpadminbar,
.site-header,
.site-footer,
.ast-breadcrumbs-wrapper,
.rank-math-breadcrumb,
.kmv-chapter-navigation,
.kmv-chapter-navigation-backdrop,
.kmv-global-search,
.kmv-analytics-feedback,
.kmv-consent-banner,
.kmv-consent-modal,
.skip-link,
.wp-block-navigation,
.wp-block-video,
iframe,
dialog,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
		display: none !important;
	}

	.site,
.site-content,
.ast-container,
.content-area,
.site-main,
.entry-content,
.wp-site-blocks,
main {
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #ffffff !important;
	}

	.widget-area,
.ast-right-sidebar #secondary,
.ast-left-sidebar #secondary {
		display: none !important;
	}

	.entry,
article {
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #ffffff !important;
		box-shadow: none !important;
	}

	.entry,
article,
.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.wp-block-column {
		box-sizing: border-box;
		max-width: 100% !important;
	}

	.wp-block-cover {
		min-height: 0 !important;
		padding: 10mm 0 !important;
	}

	.wp-block-cover__background {
		opacity: 1 !important;
	}

	.wp-block-separator {
		display: none !important;
	}

	.entry-title,
h1,
h2,
h3,
h4 {
		break-after: avoid-page;
		page-break-after: avoid;
		color: #18383c !important;
	}

	h1 { font-size: 22pt !important; }
	h2 { font-size: 17pt !important; }
	h3 { font-size: 13pt !important; }
	h4 { font-size: 11pt !important; }

	p,
li,
dt,
dd {
		orphans: 3;
		widows: 3;
	}

	a,
a:visited {
		color: #184f57 !important;
		text-decoration: underline !important;
		text-decoration-thickness: 0.6pt !important;
		text-underline-offset: 0.14em !important;
	}

	img,
svg {
		max-width: 100% !important;
		height: auto !important;
	}

	figure,
img,
blockquote,
pre,
.wp-block-media-text,
.wp-block-column,
.kmv-card {
		break-inside: avoid-page;
		page-break-inside: avoid;
	}

	table {
		display: table !important;
		width: 100% !important;
		max-width: 100% !important;
		border-collapse: collapse !important;
		font-size: 9pt !important;
	}

	thead { display: table-header-group !important; }
	tfoot { display: table-footer-group !important; }
	tr,
td,
th {
		break-inside: avoid-page;
		page-break-inside: avoid;
	}

	th,
td {
		padding: 1.8mm 2.2mm !important;
		border: 0.35mm solid #8b9b9f !important;
		color: #1f2f35 !important;
		background: #ffffff;
		vertical-align: top;
	}

	th {
		background: #e9f0ef !important;
		font-weight: 700;
	}

	.table-scroll,
.wp-block-table,
.kmv-table-wrap,
[class*="table-wrap"] {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
	}

	
	.kmv-page-qa {
		width: 100% !important;
		max-width: none !important;
		margin: 6mm 0 0 !important;
		padding: 0 !important;
		background: #ffffff !important;
	}

	.kmv-page-qa__heading > span,
.kmv-page-qa__question,
.kmv-page-qa-dialog__close,
.kmv-page-qa-dialog::backdrop {
		display: none !important;
	}

	.kmv-page-qa__list {
		display: block !important;
	}

	dialog.kmv-page-qa-dialog {
		position: static !important;
		display: block !important;
		inset: auto !important;
		width: 100% !important;
		max-width: none !important;
		max-height: none !important;
		margin: 0 0 4mm !important;
		padding: 0 !important;
		border: 0 !important;
		background: #ffffff !important;
		color: #1f2f35 !important;
		box-shadow: none !important;
		overflow: visible !important;
		break-inside: auto;
	}

	.kmv-page-qa-dialog__panel {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 4mm !important;
		border: 0.35mm solid #9aa9ab !important;
		border-radius: 1mm !important;
		background: #ffffff !important;
		box-shadow: none !important;
	}

	.kmv-page-qa-dialog__eyebrow {
		margin: 0 0 1mm !important;
		font-size: 7.5pt !important;
	}

	.kmv-page-qa-dialog h2 {
		margin: 0 0 2mm !important;
		font-size: 12pt !important;
	}

	.kmv-page-qa-dialog__answer {
		display: grid !important;
		grid-template-columns: 7mm minmax(0, 1fr) !important;
		gap: 2mm !important;
	}

	details,
details > * {
		display: block !important;
	}

	details > summary {
		list-style: none !important;
	}

	input:not([type="button"]):not([type="submit"]):not([type="reset"]),
select,
textarea {
		box-sizing: border-box !important;
		border: 0.3mm solid #86979a !important;
		background: #ffffff !important;
		color: #182b30 !important;
		box-shadow: none !important;
		-webkit-text-fill-color: #182b30 !important;
	}
}
