:root {
	/* colors */
	--background-color: oklch(0.966 0.005 106.5);
	--background-color: #f1f2f2;
	--background-color-accent: #c5cfcd;
	--text-color: oklch(39.4% .023 107.4);
	--heading-color: oklch(15.3% .006 107.1);
	
	/* text */
	--text-font-custom: Inter, system-ui, sans-serif;
	--text-font: var(--text-font-custom), ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--text-size: 16px;
	--text-line-height: 1.7;
	
	/* headings */
	--heading-font: "Instrument Serif", serif;
	--heading-letter-spacing: -0.025em;
	--heading-line-height: 1.1;
	--h1-font-size: 80px;
	--h2-font-size: 48px;
	--h3-font-size: 24px;
	--h3-font: var(--text-font-custom);
	--hgroup-gap: 15px;
	
	@media (max-width: 960px) {
		--h1-font-size: 60px;
		--h2-font-size: 42px;
	}
}

section {
	padding-block: 5%;
}

.container {
	max-width: 1340px;
	margin-inline: auto;
	padding-inline: 30px;
}

.container-sm {
	max-width: 680px;
	margin-inline: auto;
}

.container-lg {
	max-width: 1680px;
	margin-inline: auto;
}

body {
	background: var(--background-color);
	color: var(--text-color);
	font-family: var(--text-font);
}

p {
	line-height: var(--text-line-height);
	margin-block-end: 30px;
}

ol, ul {
	margin-block-end: 30px;
}

li {
	margin-block-end: 20px;
}

.mono {
	font-family: var(--font-mono);
}

main a {
	font-weight: 600;
	color: #3f6250;
}

.button,
button {
	display: inline-block;
	background: oklch(0.153 0.006 107.099998);
	color: white;
	padding: 10px 20px;
	border-radius: 100px;
	border: none;
	font-weight: 600;
	text-decoration: none;
}

.button:hover,
button:hover {
	background: oklch(0.303 0.006 107.099998);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-weight: 400;
	font-style: normal;
	line-height: var(--heading-line-height);
	letter-spacing: var(--heading-letter-spacing);
	text-wrap: balance;
	margin-block-end: 15px;
}

h1 {
	font-size: var(--h1-font-size);
}

h2 {
	font-size: var(--h2-font-size);
}

h3 {
	font-family: var(--h3-font);
	font-size: var(--h3-font-size);
}

.ch {
	max-width: 77ch;
}

.ch-sm {
	max-width: 62ch;
	text-wrap: pretty;
}

.ch-xs {
	max-width: 40ch;
	text-wrap: pretty;
}

hgroup {
	display: flex;
	flex-direction: column;
	text-wrap: pretty;
	gap: var(--hgroup-gap);
	margin-block-end: calc(var(--hgroup-gap) * 2);
}

hgroup > * {
	margin: 0;
}

hgroup > p:first-child {
	font-size: 14px;
	font-weight: 600;
	line-height: var(--heading-line-height);
}

.row {
	display: flex;
	align-items: center;
	gap: 15px;
}

.wrap {
	flex-wrap: wrap;
}

.gap-10 {
	gap: var(--space-10);
}

.gapy-5 {
	row-gap: var(--space-7);
}

.gap-8 {
	gap: var(--space-8);
}

.gapx-8 {
	column-gap: var(--space-8);
}

.gapx-12 {
	column-gap: var(--size-2);
}

.row.between {
	justify-content: space-between;
}

.row.top {
	align-items: flex-start;
}

.flex-1 {
	flex: 1;
}

.shrink-0 {
	flex-shrink: 0;
}

.end {
	justify-content: end;
}

.header-push {
	height: 100px;
}

header {
	position: fixed;
	display: block;
	width: 100%;
	z-index: 99;
	background: var(--background-color);
	padding: 22px 0;
}

header .row {
	gap: 30px;
}

header a {
	color: oklch(0.153 0.006 107.099998);
}

.logo {
	text-decoration: none;
	font-weight: 500;
}

.logo img {
	width: 180px;
	min-width: 180px;
}

.nav-link {
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	text-decoration: none;
}

.nav-button {
	background: oklch(0.153 0.006 107.099998);
	color: white;
	padding: 3px 12px;
	border-radius: 100px;
	margin-inline-end: 10px;
}

.nav-button:hover {
	background: oklch(0.303 0.006 107.099998);
}

#site-menu summary {
	position: absolute;
	top: 22px;
	right: 12px;
	width: 36px !important;
	height: 36px !important;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

#site-menu summary:hover {
	background: rgba(0, 0, 0, 0.1);
}

#site-menu summary svg {
	width: 24px !important;
	height: 24px !important;
}

#site-menu summary .prd-menu-icon {
	display: block;
}

#site-menu summary .prd-close-icon {
	display: none;
}

#site-menu[open] summary .prd-menu-icon {
	display: none;
}

#site-menu[open] summary .prd-close-icon {
	display: block;
}

#site-menu > summary {
	list-style: none;
}

#site-menu summary::-webkit-details-marker {
	display: none;
}

#site-menu nav {
	position: absolute;
	width: 100dvw;
	height: 100dvh;
	inset: 0;
	padding: 100px 30px 30px;
	background: var(--background-color);
}

.menu-link {
	font-size: 36px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-block-end: 22px;
}

.menu-link:hover:after {
	content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" d="m8.25 4.5 7.5 7.5-7.5 7.5" /%3E%3C/svg%3E');
	width: 30px !important;
	height: 30px !important;
	position: relative;
	top: -5px;
}

.show-on-mobile {
	display: none;
}

.hide-on-mobile {
	display: flex;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

.frame {
	box-shadow: 0px 0px 0px 10px rgba(0, 0, 0, 0.04);
}

@media (max-width: 960px) {
	.logo img {
		width: 140px;
		min-width: 140px;
	}
	
	.show-on-mobile {
		display: flex;
	}
	
	.hide-on-mobile {
		display: none;
	}
	
	.mobile\:order-1 {
		order: 1;
	}
	
	.mobile\:order-2 {
		order: 2;
	}
	
	.mobile\:order-3 {
		order: 3;
	}
	
	.frame {
		box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.04);
	}
}

footer {
	margin-block-start: var(--space-10);
}

footer a {
	color: var(--text-color);
	text-decoration: none;
}

.bg-strong {
	background: #eaecec;
}

.bg-stronger {
	background-color: #c5cfcd;
}

.sub-footer {
	border-top: 1px solid #a7b4b2;
}

.insurers {
	flex-direction: row;
	justify-content: space-between;
	column-gap: var(--size-2);
}

.insurer-logos {
	column-gap: 120px;
	row-gap: 32px;
	justify-content: flex-end;
}

@media (max-width: 960px) {
	.insurers {
		flex-direction: column;
		text-align: center;
	}
	
	.insurer-logos {
		column-gap: 38px;
		row-gap: 16px;
		justify-content: center;
	}
}

.footer-heading {
	font-size: 14px;
	font-weight: 600;
	line-height: 28px;
	margin-block-end: 10px;
	color: var(--heading-color);
}

.footer-links {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.footer-link {
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	text-decoration: none;
	color: var(--text-color);
}

.sub-footer p {
	font-size: 14px;
	margin: 0;
}

@media (max-width: 960px) {
	.footer.row {
		flex-direction: column;
	}
	
	.bg-stronger {
		padding-block: var(--space-7);
	}
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.col-1-2 {
	width: 50%;
}

.col-1-3 {
	width: 33.3333333%;
}

.col-2-3 {
	width: 66.6666666%;
}

@media (max-width: 960px) {
	.sm\:flex-col {
		flex-direction: column;
	}
	
	.col-1-3 {
		width: 100%;
	}
	
	.col-2-3 {
		width: 100%;
	}
}

.slider::part(pagination-item-active) {
	background: #3f6250;
}

@media (max-width: 960px) {
	.slider {
		width: 120dvw !important;
		position: relative;
		left: -10dvw;
	}
}

.hero {
	position: relative;
	overflow: clip;
	background: var(--background-color-accent);
}

.hero-image {
	position: absolute;
	top: 100px;
	right: -5%;
	width: 50%;
}

.show-on-desktop {
	display: block;
}

.show-on-laptop {
	display: none;
}

.show-on-ipad {
	display: none;
}

@media (max-width: 1640px) {
	.show-on-desktop {
		display: none;
	}
	
	.show-on-laptop {
		display: block;
	}
	
	.show-on-ipad {
		display: none;
	}
}

@media (max-width: 1240px) {
	.show-on-desktop {
		display: none;
	}
	
	.show-on-laptop {
		display: none;
	}
	
	.show-on-ipad {
		display: block;
	}
}

@media (max-width: 960px) {
	.col-1-2 {
		width: 100%;
	}
	
	.hero-image {
		position: static;
		width: 90%;
		margin-inline: 5%;
	}
	
	.show-on-desktop {
		display: block;
	}
	
	.show-on-laptop {
		display: none;
	}
	
	.show-on-ipad {
		display: none;
	}
}

.services {
	flex-wrap: wrap;
	margin-block-start: 5%;
}

.services .col-1-3 {
	width: 28%;
}

.services h3 {
	font-size: 17px;
}

.home-icon {
	width: 32px;
	height: 32px;
	background: #c5cfcd;
	color: #3f6250;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	margin-block-end: 20px;
}

.home-icon svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 960px) {
	.services .col-1-3 {
		width: 46%;
	}
}

@media (max-width: 600px) {
	.services .col-1-3 {
		width: 98%;
	}
	
	.home-icon {
		background: transparent;
		width: 16px;
		height: 16px;
		margin-block-end: 5px;
	}
	
	.hstack-on-mobile {
		display: flex;
		gap: 5px;
	}
}