:root {
	/*
		These variable values are set using Admin Panel Design Settings.
		The values below are defaults and will be over-written by the AP values.
	*/
	/* Support Only Edit Body Options */
	--body-bgcolor: #f7f2e8;
	--body-texture: none;
	--body-font-family: "Figtree", system-ui, sans-serif;
	--body-line-height: 1.74;
	--content-area-bgcolor: #f7f2e8;

	/* Support Only Edit Color Options */
	--color-primary: #4f7d52;
	--color-primary-text: #fff;
	--color-primary-link: var(--color-primary-text);
	--color-primary-link-hover: var(--color-primary-text);

	--color-secondary: #36603a;
	--color-secondary-text: #fff;
	--color-secondary-link: var(--color-secondary-text);
	--color-secondary-link-hover: var(--color-secondary-text);

	--color-tertiary: #e2674a;
	--color-tertiary-text: #fff;
	--color-tertiary-link: var(--color-tertiary-text);
	--color-tertiary-link-hover: var(--color-tertiary-text);

	/* Header Theme */
	--header-bg-color: rgba(247, 242, 232, .96);
	--header-bg-color-solid: var(--body-bgcolor);
	--header-text-color: var(--body-text-color);
	--header-link-color: var(--body-text-color);
	--header-link-color-hover: var(--color-tertiary);

	/* Nav Theme */
	--nav-bg-color: var(--body-bgcolor);
	--nav-bg-color-solid: var(--body-bgcolor);
	--nav-text-color: var(--body-text-color);
	--nav-link-color: var(--body-text-color);
	--nav-link-color-hover: var(--color-tertiary);

	/* Footer Theme */
	--footer-bg-color: var(--color-secondary);
	--footer-bg-color-solid: var(--color-secondary);
	--footer-text-color: var(--color-secondary-text);
	--footer-link-color: var(--color-secondary-link);
	--footer-link-color-hover: var(--color-secondary-link-hover);

	/* Footer Copyright Theme */
	--copyright-bg-color: var(--color-secondary);
	--copyright-bg-color-solid: var(--color-secondary);
	--copyright-text-color: var(--color-secondary-text);
	--copyright-link-color: var(--color-secondary-link);
	--copyright-link-color-hover: var(--color-secondary-link-hover);

	/* Title Theme */
	--title-bg-color: var(--color-primary);
	--title-text-color: var(--color-primary-text);
	--title-link-color: var(--color-primary-link);
	--title-link-color-hover: var(--color-primary-link-hover);

	/* Hero Theme */
	--hero-bg-color: var(--color-secondary);

	/* Admin Edit */
	--body-font-size: 1.0625rem;
	--body-text-color: #4b554a;
	--link-color: var(--color-primary);
	--link-color-hover: var(--color-tertiary);
	--nav-font-size: var(--body-font-size);
	--copyright-alignment: left;

	/*****/
	/* Additional Variables - Not defined in Design Options */
	/*****/

	/* Header */
	--header-inner-width: 1920;
	--header-inner-height: 440;

	/* Feature Boxes */
	--featurebox-content-bgcolor: var(--content-area-bgcolor);

	/* Decorative only, derived from the admin colors above rather than
	   hardcoded so they stay in sync with whatever palette is set */
	--theme-line: color-mix(in srgb, var(--body-text-color) 18%, transparent);
	--theme-muted: color-mix(in srgb, var(--body-text-color) 70%, transparent);
	--theme-surface: color-mix(in srgb, var(--content-area-bgcolor) 90%, var(--color-primary) 10%);
	--theme-shadow: color-mix(in srgb, var(--color-secondary) 40%, transparent);
}

/* =====================
   Base
   ===================== */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	font-family: var(--body-font-family);
	line-height: var(--body-line-height);
	color: var(--body-text-color);
	font-size: var(--body-font-size);
	background: var(--body-bgcolor) var(--body-texture) repeat;
	-webkit-font-smoothing: antialiased;
}

.mnw-harmony-content-container {
	background: var(--content-area-bgcolor);
	position: relative;
}

a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover, a:active {
	color: var(--link-color-hover);
}

/* =====================
   Typography
   ===================== */

h1, h2, h3, h4, .title {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	line-height: 1.1;
	color: var(--title-bg-color);
}


.colortext {
	color: var(--title-bg-color);
}

.calendarhead, .organizerlight {
	background: var(--title-bg-color);
	color: var(--title-text-color);
}

.calendarhead a:active, .calendarhead a:link, .calendarhead a:visited,
.organizerlight a:active, .organizerlight a:link, .organizerlight a:visited {
	color: var(--title-link-color);
}

.calendarhead a:hover, .organizerlight a:hover {
	color: var(--title-link-color-hover);
}

/* =====================
   Header
   ===================== */

.topbar {
	background: var(--header-bg-color);
	color: var(--header-text-color);
	font-size: 1rem;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	height: 42px;
}

.topbar a {
	color: var(--header-link-color);
	text-decoration: none;
	font-weight: 700;
}

.topbar a:hover {
	color: var(--header-link-color-hover);
}

.loginLinBreak::after {
	content: " | ";
	white-space: normal;
}

.login-links {
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.login-links .loginExtraClass {
	text-align: right;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--nav-bg-color);
	color: var(--nav-text-color);
	border-bottom: 1px solid var(--theme-line);
	transition: box-shadow .3s;
}

.site-header a {
	color: var(--nav-link-color);
}

.site-header a:hover {
	color: var(--nav-link-color-hover);
}

.site-header.header-stuck {
	box-shadow: 0 12px 30px -22px var(--theme-shadow);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
}

.logo {
	flex-shrink: 1;
	min-width: 0;
	display: flex;
	align-items: center;
}

.logo img.mnw-img-responsive {
	max-height: 58px;
	width: auto;
	max-width: 100%;
}

.header-nav-wrap {
	flex: 1;
	min-width: 0;
}

.site-header .navbar {
	padding: 0;
	background: transparent;
}

.header-nav-wrap .container, .header-nav-wrap .container-fluid {
	padding: 0;
	max-width: none;
}

.header-nav-wrap .navbar-brand {
	display: none;
}

/* =====================
   Social icons
   ===================== */

.social-icons {
	font-size: 1.125rem;
	color: var(--header-link-color);
}

.social-header {
	display: flex;
	align-items: center;
}

.social-icons-header a {
	color: var(--header-link-color);
}

.social-icons-header a:hover {
	color: var(--header-link-color-hover);
}

.social-icons-footer .social-icons, .social-icons-footer .social-icons a {
	color: var(--footer-link-color);
}

.social-icons-footer .social-icons a:hover {
	color: var(--footer-link-color-hover);
}

.social-icons-footer {
	margin-top: 15px;
}

/* =====================
   Navigation
   ===================== */

/* The Design Configuration admin panel injects a vertical pipe divider
   between nav items for any navbar-pipes-classed nav (see the @media
   (min-width:1200px) block it adds) — this design's nav is meant to be
   clean, just a plain uppercase color-on-hover link, so turn that off. */
@media (min-width: 1200px) {
	.navbar-pipes .navbar-nav li:after {
		content: none;
	}
}

.navbar-brand, .navbar-brand:hover {
	color: var(--nav-text-color);
}

.navbar .nav-link, .navbar .dropdown-item, .navbar-brand {
	font-size: var(--nav-font-size);
}

nav.navbar .navbar-nav,
nav.navbar .navbar-nav .nav-link,
nav.navbar .navbar-nav .show > .nav-link,
nav.navbar .navbar-nav .nav-link:focus {
	color: var(--nav-link-color);
	font-family: var(--body-font-family);
	text-decoration: none;
	font-weight: 500;
}

nav.navbar .navbar-nav .nav-link,
nav.navbar .navbar-nav .show > .nav-link,
nav.navbar .navbar-nav .nav-link:focus {
	padding: .55rem 1.05rem;
	border-radius: 999px;
	transition: background .2s, color .2s;
}

nav.navbar .navbar-nav li:hover .nav-link {
	background: var(--theme-surface);
	color: var(--nav-link-color-hover);
}

.navbar-toggler svg {
	display: none;
}

.navbar-toggler {
	position: relative;
	width: 30px;
	height: 24px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	color: var(--nav-link-color);
}

.navbar-toggler:hover, .navbar-toggler:focus {
	color: var(--nav-link-color-hover);
	border: 0;
	outline: none;
	box-shadow: none;
}

.navbar-toggler::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	background-color: currentColor;
	box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
}

.dropdown-item {
	text-decoration: none;
	color: #000;
	font-family: "Figtree",system-ui,sans-serif;
	font-weight: 600;
	letter-spacing: .1rem;
	border-radius: 4px;
	padding: 10px 16px;
}

.dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active {
	background: var(--color-tertiary);
	color: var(--color-tertiary-text);
}

.dropdown-menu {
	border: none;
	border-top: 3px solid var(--color-tertiary);
	border-radius: 6px;
	background-color: #fff;
	box-shadow: 0 26px 50px -34px var(--theme-shadow);
	padding: 8px;
	margin-top: 10px;
}

@media (min-width: 1200px) {
	.nav-item {
		white-space: nowrap;
	}

	.navbar-nav {
		flex-wrap: wrap;
		gap: 6px 26px;
	}

}

@media (max-width: 991px) {
	.dropdown-item {
		white-space: initial;
	}
}

/* html.mnw-nav-collapsed tracks whether the nav is actually rendering as a
   burger toggler right now (see base.twig) — NavBars.setBootstrap5OverflowBehavior
   can drop into burger mode at any width, not just below a fixed breakpoint. */
html.mnw-nav-collapsed .site-header > .container {                                                                                                                           
        padding-left: 4vw;                                                                                                                                                     
        padding-right: 4vw;                                                                                                                                                    
  }                                                                                                                                                                            
                                                                                                                                                                               
  html.mnw-nav-collapsed .header-inner {                                                                                                                                       
        flex-wrap: nowrap;                                                                                                                                                     
        gap: 1rem;                                                                                                                                                             
  }       

html.mnw-nav-collapsed .header-nav-wrap {
	flex-shrink: 0;
}

html.mnw-nav-collapsed .navbar-toggler {
	margin-left: auto;
	position: relative;
	z-index: 1060;
}

html.mnw-nav-collapsed .header-nav-wrap nav.navbar {
	position: static;
}

/* Off-canvas drawer lives on .navbar-nav (not .navbar-collapse, which Bootstrap
   itself animates by height) so our own transform transition, toggled by
   "mnw-drawer-open" (see base.twig), has something to animate from. */
html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .navbar-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(70%, 420px);
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 22px;
	overflow-y: auto;
	background: var(--nav-bg-color-solid);
	padding: 40px;
	padding-top: 140px;
	z-index: 1050;
	box-shadow: -20px 0 50px -28px var(--theme-shadow);
	transform: translateX(100%);
	transition: transform .32s ease;
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse.mnw-drawer-open .navbar-nav {
	transform: translateX(0);
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .nav-item {
	white-space: normal;
	min-width: 0;
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .nav-link {
	font-size: 1rem;
	white-space: normal;
	overflow-wrap: break-word;
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .dropdown-menu {
	position: static;
	background: color-mix(in srgb, var(--color-secondary) 6%, transparent);
	border-top-color: var(--color-tertiary);
	box-shadow: none;
	margin-top: 8px;
}

.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .dropdown-item {
	white-space: normal;
	overflow-wrap: break-word;
}

/* =====================
   Hero / Header image
   ===================== */

.hero {
	background: var(--hero-bg-color);
	padding: clamp(40px, 5vw, 72px) 0 120px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(36px, 5vw, 68px);
	align-items: center;
}

.hero-title {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1.05;
}

.hero-sub {
	margin: 24px 0 0;
	font-size: 1.1rem;
	max-width: 30ch;
}

.hero-rule {
	width: 64px;
	height: 3px;
	background: var(--color-tertiary);
	margin-top: 30px;
}

.mapwrap {
	position: relative;
	border-radius: 26px;
	border: 1px solid var(--theme-line);
	box-shadow: 0 34px 60px -38px rgba(54, 96, 58, .5);
}

.mapwrap .map {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 26px;
	overflow: hidden;
}

.photo-pin {
	position: absolute;
	left: 46%;
	top: 40%;
	transform: translate(-50%, -50%);
	width: min(56%, 240px);
}

.photo-frame {
	position: relative;
	border-radius: 16px;
	border: 5px solid #fff;
	box-shadow: 0 34px 60px -38px rgba(54, 96, 58, .5);
	aspect-ratio: 4 / 3;
	background: var(--color-secondary);
}

.photo-frame .carousel, .photo-frame .carousel-item {
	height: 100%;
}

.photo-frame .carousel-inner {
	height: 100%;
	overflow: hidden;
	border-radius: 11px;
}

.photo-frame .carousel-item img, .photo-frame .carousel-item [role="img"] {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-frame .carousel-control-prev,
.photo-frame .carousel-control-next {
	top: 100%;
	bottom: auto;
	left: 50%;
	right: auto;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	border: 2px solid var(--theme-line);
	opacity: 1;
	transition: background .2s, border-color .2s;
}

.photo-frame .carousel-control-prev { transform: translate(calc(-50% - 90px), 197px); }
.photo-frame .carousel-control-next { transform: translate(calc(-50% + 90px), 197px); }

.photo-frame .carousel-control-prev:hover,
.photo-frame .carousel-control-next:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.photo-frame .carousel-control-prev-icon,
.photo-frame .carousel-control-next-icon {
	width: 18px;
	height: 18px;
	filter: invert(1);
	transition: filter .2s;
}

.photo-frame .carousel-control-prev:hover .carousel-control-prev-icon,
.photo-frame .carousel-control-next:hover .carousel-control-next-icon {
	filter: none;
}

.photo-frame .carousel-indicators {
	top: 100%;
	bottom: auto;
	left: 50%;
	right: auto;
	margin: 0;
	transform: translate(-50%, 216px);
}

.photo-frame .carousel-indicators button {
	width: 30px;
	height: 6px;
	padding: 0;
	border-radius: 6px;
	border: none;
	opacity: 1;
	background-color: var(--theme-line);
	transition: background-color .25s;
}

.photo-frame .carousel-indicators button.active {
	background-color: var(--color-tertiary);
}

.photo-tail {
	position: absolute;
	left: 50%;
	bottom: -13px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 16px solid #fff;
}

.photo-here {
	position: absolute;
	left: 50%;
	bottom: -34px;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--color-tertiary);
}

.photo-here::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--color-tertiary);
	opacity: .35;
	animation: mnw-pin-ping 2.2s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.photo-here::after {
		animation: none;
	}
}

@keyframes mnw-pin-ping {
	0% { transform: scale(1); opacity: .5; }
	100% { transform: scale(3.4); opacity: 0; }
}

.header-img {
	position: relative;
	overflow: hidden;
	background-color: var(--color-secondary);
}

.inner-header-img {
	background-size: cover;
	background-position-y: center;
	aspect-ratio: calc(var(--header-inner-width) / var(--header-inner-height));
	width: 100%;
}

/* =====================
   Content area
   ===================== */

.mnw-harmony-content-overflow {
	padding: 0;
}

.content-page-title {
	font-size: clamp(2rem, 3.6vw, 2.8rem);
	margin: 15px 0 20px;
}

main h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	margin-bottom: 16px;
}

/* =====================
   Accordion
   ===================== */

.accordion {
	background: var(--featurebox-content-bgcolor);
}

.accordion-section-title {
	text-decoration: none;
	background: var(--title-bg-color);
	color: var(--title-text-color);
	font-family: "Figtree", sans-serif;
	font-weight: 600;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background: var(--title-bg-color);
	color: var(--title-link-color-hover);
}

/* =====================
   Grid / Feature boxes
   ===================== */

.gridBoxes-container, .homebox {
	border: 1px solid var(--theme-line);
	background: var(--content-area-bgcolor);
	border-radius: 16px;
}

.gridBoxes-title {
	background: var(--title-bg-color);
	color: var(--title-text-color);
	font-family: "Sora", sans-serif;
	font-weight: 700;
	border-bottom: 1px solid var(--theme-line);
	padding: 16px 20px;
}

.gridBoxes-item {
	border: none;
	padding: 14px 20px;
	color: var(--theme-muted);
}

.home-boxes-fluid {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* =====================
   Footer
   ===================== */

footer {
	background: var(--footer-bg-color);
	color: var(--footer-text-color);
	padding: 70px 0 32px;
}

footer a {
	color: var(--footer-link-color);
	font-size: 1rem;
	text-decoration: none;
	margin-bottom: 11px;
}

footer a:hover, footer a:active {
	color: var(--footer-link-color-hover);
}

footer h5, footer h4, footer h3, footer h2 {
	font-family: "Figtree", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .1rem;
	color: var(--footer-link-color);
	margin-bottom: 16px;
}

footer .row {
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}

@media (max-width: 991px) {
	footer [class*=col] {
		margin-bottom: 24px;
	}
}

/* =====================
   Copyright
   ===================== */

.copyright {
	background: var(--copyright-bg-color);
	padding: 22px 0 32px;
	text-align: var(--copyright-alignment);
	color: var(--copyright-text-color);
	font-size: .84rem;
}

.copyright a {
	color: var(--copyright-link-color);
	text-decoration: none;
}

.copyright a:hover, .copyright a:focus {
	color: var(--copyright-link-color-hover);
}

/* =====================
   Shared content components
   ===================== */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-family: "Figtree", sans-serif;
	font-weight: 700;
	font-size: .75rem;
	letter-spacing: .14rem;
	color: var(--color-tertiary);
	margin: 0 0 20px;
}

.eyebrow svg {
	width: 16px;
	height: 16px;
}

/* =====================
   Teaser sections (CMS-generated blocks)
   ===================== */

.mnw-harmony-content-padding {
	padding: clamp(60px, 8vw, 60px) 0;
}

/* =====================
   Responsive
   ===================== */

@media (max-width: 460px) {
	.hero {
		padding-bottom: 120px;
	}

	.photo-frame .carousel-control-prev { transform: translate(calc(-50% - 90px), calc(80px + 14vw)); }
	.photo-frame .carousel-control-next { transform: translate(calc(-50% + 90px), calc(80px + 14vw)); }
	.photo-frame .carousel-indicators { transform: translate(-50%, calc(99px + 14vw)); }
}

@media (max-width: 767px) {
	.site-header .container {
		padding-left: 4vw;
		padding-right: 4vw;
	}

	.mnw-harmony-content-overflow {
		padding: 40px 0;
	}
}

@media (max-width: 880px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-copy .eyebrow, .hero-rule, .hero-sub {
		margin-inline: auto;
	}

	.mapwrap {
		max-width: 520px;
		margin-inline: auto;
	}
}

@media (max-width: 991px) {
	.logo {
		text-align: center;
	}
}
