/*
Theme Name: Community Foundation 2025
Author: Central States Media
Author URI: http://www.centralstatesmedia.com/
Description: This site was built by Central States Media
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cfci
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
  Resets
*/
* {
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	margin: 0;
	padding: 0;
	transition: all 0.25s ease-in-out;
}

:after,
:before {
	box-sizing: border-box;
}

button {
	border: none;
	box-shadow: none;
	outline: none;
	background: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/*
 Colors / Typography @ root
*/
:root {
	--black-dk: #242424;
	--black: #333;
	--black-20: #4f4f4f;
	--black-40: #828282;
	--black-60: #bdbdbd;
	--white-60: #e0e0e0;
	--white-40: #f2f2f2;
	--white-20: #f5f4f6;
	--white: #fff;
	/*
    Site Specific Color Palette
  */
	--green: #025157;
	--green-light: #18988b;
	--gold: #eaa55e;
	--black: #000000;
	--white: #ffffff;
	--primary-font-color: var(--primary-color);
	/*
    Global Font Colors
  */
	--primary-color: var(--black);
	--h-color: var(--green-light);
	--p-color: var(--primary-font-color);
	--nav-color: var(--green);
	--accent-color: var(--black);
}

/*
    Global Font Sizing
*/
:root {
	--baseFontSize: 0.95rem;
	--baseNavSize: 0.94rem;
	--smallFontSize: 0.8rem;
	--smallestFontSize: 0.512rem;
	--big-boss-heading: 3.052rem;
	--boss-heading: 2.441rem;
	--heading-1: 2.5rem;
	--heading-2: 2rem;
	--heading-3: 1.7rem;
	--heading-4: 1.4rem;
	--heading-5: 1.2rem;
	--heading-6: 1.2rem;
	--heading-7: var(--smallestFontSize);
}

/*
    Global Font Styles
*/
:root {
	--primary-font: 'Open Sans', sans-serif;
	--h-font: 'Open Sans', sans-serif;
	--btn-font: 'Open Sans', sans-serif;
	--p-font: 'Open Sans', sans-serif;
	--nav-font: 'Open Sans', sans-serif;
	--accent-font: 'Open Sans', sans-serif;
}

/*
    Global Sizing (widths, paddings, etc)
*/
:root {
	--wrapper-max-width: 82.3rem;
}

/*
  HTML / Body
*/
html {
	scroll-behavior: smooth;
	/* Gap */
	--gap: 2rem;
	--neg-gap: 2rem;
	/* Fluid Gap */
	--gap-fluid: 5vw;
	--neg-gap-fluid: -5vw;
}
@media (max-width: 1500px) {
	html {
		--gap-fluid: 2rem;
		--neg-gap-fluid: -2rem;
	}
}
@media (min-width: 2000px) {
	html {
		--gap-fluid: 10vw;
		--neg-gap-fluid: -10vw;
	}
}
@media (min-width: 3000px) {
	html {
		--gap-fluid: 15vw;
		--neg-gap-fluid: -15vw;
	}
}
@media (min-width: 3500px) {
	html {
		--gap-fluid: 20vw;
		--neg-gap-fluid: -20vw;
	}
}

body {
	font-family: var(--primary-font);
	-webkit-text-size-adjust: none;
	line-height: 1.6;
	position: relative;
}

/*
  Responsive font sizing
*/
html {
	font-size: 17px;
}

@media (max-width: 900px) {
	html {
		font-size: 16px;
	}
}
@media (max-width: 650px) {
	html {
		font-size: 15.5px;
	}
}
@media (max-width: 400px) {
	html {
		font-size: 15px;
	}
}
/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--h-font);
	color: var(--h-color);
	margin: 0 0 1rem;
	line-height: 1.25;
	text-wrap: balance;
}

h1,
.h1 {
	font-size: var(--heading-1);
	text-rendering: optimizeLegibility;
	color: var(--h-color);
}

h2,
.h2 {
	font-size: var(--heading-2);
}

h3,
.h3 {
	font-size: var(--heading-3);
}

h4,
.h4 {
	font-size: var(--heading-4);
}

h5,
.h5 {
	font-size: var(--heading-5);
}

h6,
.h6 {
	font-size: var(--heading-6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-family: inherit;
	color: inherit;
	text-decoration: none;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
	opacity: 0.65;
}

.content h1 {
	color: unset;
	text-transform: unset;
}

.content h2 {
	color: unset;
	text-transform: unset;
}

.content h3 {
	color: unset;
	text-transform: unset;
}

.content h4 {
	color: unset;
	text-transform: unset;
}

.content h5 {
	color: unset;
	text-transform: unset;
}

.content h6 {
	text-transform: unset;
}

.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a {
	color: inherit;
	text-decoration: none;
}

.content h1 a:focus,
.content h1 a:hover,
.content h2 a:focus,
.content h2 a:hover,
.content h3 a:focus,
.content h3 a:hover,
.content h4 a:focus,
.content h4 a:hover,
.content h5 a:focus,
.content h5 a:hover,
.content h6 a:focus,
.content h6 a:hover {
	opacity: 0.88;
}

/*
  Links - Global --------------------
*/
a {
	font-family: var(--primary-font);
	font-size: inherit;
	color: inherit;
	transition: all 0.25s ease-in-out;
}
a:hover:not(.kt-blocks-info-box-link-wrap),
a:focus:not(.kt-blocks-info-box-link-wrap) {
	opacity: 0.6;
}

.content a:not(.btn, .button) {
	font-weight: 700;
	color: var(--primary-font-color);
	text-decoration: underline;
}

.content a:hover:not(.btn, .button, .kt-blocks-info-box-link-wrap),
.content a:focus:not(.btn, .button, .kt-blocks-info-box-link-wrap) {
	opacity: 0.65;
}

/*
  Basic title link usually on block title
*/
.title-link {
	text-transform: uppercase;
	border-bottom: 2px solid var(--black-20);
	transition: color 0.25s ease-in-out;
}
.title-link:hover {
	color: var(--black-60);
}

/*
  Text --------------------
*/
/*
  Content class global styles
*/
.content {
	font-family: var(--p-font);
	font-style: normal;
	font-size: var(--baseFontSize);
	color: var(--p-color);
}

/*
  Paragraph text
*/
p {
	margin-bottom: 1.5rem;
	font-weight: 400;
	text-wrap: pretty;
}

p:not(.content *) {
	font-family: var(--p-font);
	color: var(--p-color);
	font-size: var(--baseFontSize);
	margin-bottom: 1.5rem;
}
p:not(.content *)::-moz-selection {
	background-color: var(--black-60);
	color: white;
}
p:not(.content *)::selection {
	background-color: var(--black-60);
	color: white;
}

/*
  UL / OL Lists
*/
ul:not(.slides) li a,
ol li a {
	font-family: var(--primary-font);
	color: var(--primary-font-color);
	font-size: var(--baseFontSize);
	margin-bottom: 0.5rem;
}

.content ul,
.post-content ul {
	padding: 0 0 1.5rem 40px;
}

.content ul li,
.post-content ul li {
	list-style: disc;
}

/*
  Span
*/
span {
	font-family: var(--primary-font);
	font-size: var(--baseFontSize);
}

/*
  Bold Text
*/
b {
	font-weight: 700;
}

strong {
	font-weight: 700;
}

/*
  Accent Text
*/
.accent {
	font-family: var(--accent-font);
	color: var(--accent-color);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.8rem;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/*
  Full Width --------------------
*/
/* Breaks out of wrapper for full-width content - extending bg color for example*/
.full-width {
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	position: relative;
	padding: 0;
}

body:has(.full-width) {
	overflow-x: hidden;
}

/* Adjusts the padding when using .full-width inside kadence blocks */
.full-width-fluid {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 0 var(--gap-fluid);
}

/*
  Remove / Show content --------------------
*/
.hide {
	display: none;
}

.show {
	display: block;
}

/*
  Margin / Padding Resets --------------------
*/
.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

.no-border {
	border: none;
}

/*
  Shadows
*/
.shadow-bottom-inset {
	box-shadow: inset 0 -35px 35px -20px rgba(60, 60, 60, 0.3);
}

.shadow-bottom {
	box-shadow: 0px 10px 6px -10px rgba(60, 60, 60, 0.3);
}

/*
  Horizontal Rule
*/
hr {
	height: 1px;
	margin-block: 4rem;
	padding-inline: 2rem;
	border: none;
	background: var(--green-light);
}

/*
  PAGINATION STYLES for WP
*/
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 11px;
	line-height: 13px;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}

.pagination span,
.pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 6px 9px 5px 9px;
	text-decoration: none;
	width: auto;
	color: #666 !important;
	background: #d5d5d5;
}

.pagination a:hover {
	color: #fff !important;
	background: #000;
}

.pagination span {
	background: #666;
	color: #fff !important;
}

.pagination .current {
	padding: 6px 9px 5px 9px;
	background: #000;
	color: #fff !important;
}

/*
  SEARCH RESULTS STYLES for WP
*/
.search-results h1 {
	font-size: 1.2rem;
}

/*
  BREADCRUMBS (Yoast)
*/
#breadcrumbs {
	margin: 0;
	list-style: none;
	border-radius: 4px;
}

#breadcrumbs a {
	color: var(--black-20);
	text-decoration: none;
}
#breadcrumbs a:hover {
	color: var(--white-60);
}

/*
  SCREEN OVERLAY
*/
.screen-orange {
	position: relative;
}
.screen-orange::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gold);
	opacity: 0.4;
}

/*
  OVERFLOW WRAP CLASS
*/
.overflow {
	overflow: hidden;
}

* Tree BG */ .tree-mark-right {
	position: relative;
}
.tree-mark-right::before {
	content: '';
	position: absolute;
	right: -4rem;
	top: 50%;
	transform: translateY(-50%);
	width: 350px;
	aspect-ratio: 1/1;
	background: url('img/logo-tree.svg') center/70% no-repeat;
	background-size: contain;
	z-index: 10;
}

@media (max-width: 800px) {
	.tree-mark-right::before {
		content: none;
	}
}
.tree-mark-left {
	position: relative;
}
.tree-mark-left::before {
	content: '';
	position: absolute;
	left: -10rem;
	top: 50%;
	transform: translateY(-50%);
	width: 350px;
	opacity: 0.2;
	aspect-ratio: 1/1;
	background: url('img/logo-tree.svg') center/70% no-repeat;
	background-size: contain;
	z-index: 10;
}

@media (max-width: 800px) {
	.tree-mark-right::before {
		content: none;
	}
}
/*
  GREEN bg's full bleed
*/
.green-right,
.gray-right,
.gold-right {
	position: relative;
}
:is(.green-right, .gray-right, .gold-right)::after {
	content: '';
	position: absolute;
	right: -100vw;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100vw;
	background: var(--green);
	z-index: -10;
}
.gray-right::after {
	background: #f9f9f9;
}
.gold-right::after {
	background: var(--gold);
}

.green-left,
.gray-left,
.gold-left {
	position: relative;
}
:is(.green-left, .gray-left, .gold-left)::after {
	content: '';
	position: absolute;
	left: -100vw;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100vw;
	background: var(--green);
	z-index: -10;
}
.gray-left::after {
	background-color: #f9f9f9;
}
.gold-left::after {
	background: var(--gold);
}

/*-------------------------------------
  03 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
/* Creates a wrapper around main sections of content */
.wrapper {
	margin: 0 auto;
	padding: 0 var(--gap);
	max-width: var(--wrapper-max-width);
}

/* Removes max-width for larger-fluid design */
.wrapper-fluid {
	margin: 0 auto;
	padding: 0 var(--gap-fluid);
}

.wrapper-inner {
	padding: 30px 2rem;
}

/*
  Containers - generally affect horizontal spacing & centering --------------------
*/
.container {
	margin: 0 auto;
	padding: 0 2rem;
	max-width: 48rem;
}

/*
  Grid Layouts --------------------
*/
.grid-auto-1 {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
}

.grid-1-1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.grid-2-1 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
}

@media (max-width: 800px) {
	.grid-auto-1 {
		grid-template-columns: 1fr;
	}
}
/*
  Flex Layouts --------------------
*/
.flex-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.flex-group > * {
	flex: 1; /*  */
	min-width: -moz-fit-content;
	min-width: fit-content;
}

/*
  Sections  - generally affect vertical spacing --------------------
*/
/* used for normal section to create space between */
.section {
	margin-bottom: 4rem;
}

.section-sm {
	margin-bottom: 3rem;
}

/* used for section within another block or section */
.section-block {
	margin-bottom: 2rem;
}

/* used to create space within a section when 2 sections touch eachother
     eg: 2 sections with diff bg colors */
.section-spacer {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.section-spacer-lg {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.section-spacer-top {
	padding-top: 3rem;
}

.section-spacer-bottom {
	padding-top: 3rem;
}

/* used to center section inside parent element as well as center align the text */
.section-centered {
	text-align: center;
	display: flex;
	justify-content: center;
}

.section-prefooter {
	margin-bottom: 7rem;
}

.section-title {
	margin-bottom: 2rem;
}

.section-subtitle {
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

/*
  Page Headers --------------------
*/
/* if outside a parent container - add the left and right padding */
.page-header {
	margin-bottom: 2.25rem;
}

.page-header-title {
	margin-bottom: 2rem;
}

.page-header-subtitle {
	margin-bottom: 1rem;
	max-width: 80%;
	font-size: 1.1rem;
}

/*
  Text Alignment --------------------
*/
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/*
  Text Blocks --------------------
*/
.text-block {
	margin: 0 0 3rem;
}

.text-block-narrow {
	margin: 0 0 3rem;
	/* Adjust max-width as needed */
	max-width: 43rem;
}

.text-block-center {
	margin: 0 auto 3rem;
	/* Adjust max-width as needed or eliminate if already in a parent container */
	max-width: 43rem;
}

/*-------------------------------------
  04 - COMPONENTS COMPONENTS COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/*
  Buttons --------------------
*/
.btn,
a.btn,
.wp-block-button__link,
input[type='submit'] :not(.search-form),
.gform_button {
	display: inline-block;
	background: var(--gold);
	color: var(--black);
	border-radius: 0;
	padding: 12px 20px;
	max-width: 300px;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.1;
	cursor: pointer;
	text-align: center;
	transition: all 0.25s ease-in-out;
}
.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type='submit'] :not(.search-form):hover,
input[type='submit'] :not(.search-form):focus,
.gform_button:hover,
.gform_button:focus {
	opacity: 0.65;
}

.btn.btn--secondary {
	background: var(--black-20);
}
.btn.btn--secondary:hover,
.btn.btn--secondary:focus {
	background: var(--white-60);
	opacity: 1;
}

.btn--full {
	width: 100%;
	margin: 0 0 10px;
}

/*
  Links - Test links similar to buttons ------------------
*/
/*
  Icons --------------------
*/
/*
  Icon preceding text
*/
.icon-before {
	display: flex;
	align-items: center;
	line-height: 1.2;
	position: relative;
}
.icon-before::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 15px;
	margin-bottom: 5px;
	background: url('img/icon-arrow-right.svg') center no-repeat;
}

/*
  Icon following text
*/
.icon-after {
	display: flex;
	align-items: center;
	line-height: 1.2;
	position: relative;
}
.icon-after::after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 15px;
	margin-bottom: 5px;
	vertical-align: middle;
	background: url('img/icon-arrow-right.svg') center no-repeat;
}

/*
  Social Icons
*/
/*
  Animations --------------------
*/
/*
  Admin Buttons
*/
.admin-slideout-container {
	position: fixed;
	bottom: 1.11rem;
	left: 0;
	z-index: 9998;
	width: 13.89rem;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.admin-slideout-container.is-open {
	transform: translateX(0);
}
.admin-slideout-toggle {
	position: absolute;
	top: 0;
	left: 100%;
	width: 1.39rem;
	height: 1.67rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0.44rem 0.44rem 0;
	cursor: pointer;
	box-shadow: 0.11rem 0 0.28rem oklch(14.5% 0 0 / 10%);
	transition: background-color 0.3s ease;
	background-color: oklch(90.5% 0.182 98.111);
	color: oklch(14.5% 0 0);
}
.admin-slideout-toggle:hover {
	background-color: oklch(85.2% 0.199 91.936);
}
.admin-slideout-container.is-open .admin-slideout-toggle {
	background-color: oklch(26.9% 0 0);
	color: oklch(98.5% 0 0);
}
.admin-slideout-container.is-open .admin-slideout-toggle:hover {
	background-color: oklch(20.5% 0 0);
}
.admin-slideout-icon {
	font-size: 1rem;
	font-weight: bold;
}
.admin-button-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.33rem;
	padding: 0.67rem;
	background-color: oklch(26.9% 0 0);
	border-radius: 0 0 0.56rem 0;
	box-shadow: 0 0 0.56rem oklch(14.5% 0 0 / 20%);
}
.admin-button {
	padding: 0.44rem 0.67rem;
	text-decoration: none;
	border-radius: 0.28rem;
	font-size: 0.72rem;
	font-family: sans-serif;
	transition: all 0.3s ease;
	border-width: 0.11rem;
	border-style: solid;
	text-align: center;
}
.admin-button-dashboard {
	grid-column: 1 / -1;
	background-color: oklch(26.9% 0 0);
	border-color: oklch(26.9% 0 0);
	color: oklch(97% 0 0);
}
.admin-button-dashboard:hover {
	background-color: oklch(20.5% 0 0);
	border-color: oklch(20.5% 0 0);
	color: oklch(98.5% 0 0);
	opacity: 1;
}
.admin-button-edit-page {
	background-color: oklch(92.2% 0 0);
	border-color: oklch(92.2% 0 0);
	color: oklch(20.5% 0 0);
}
.admin-button-edit-page:hover {
	background-color: oklch(87% 0 0);
	border-color: oklch(87% 0 0);
	color: oklch(14.5% 0 0);
	opacity: 1;
}
.admin-button-edit-theme {
	background-color: oklch(57.7% 0.245 27.325);
	border-color: oklch(57.7% 0.245 27.325);
	color: oklch(97% 0 0);
}
.admin-button-edit-theme:hover {
	background-color: oklch(50.5% 0.213 27.518);
	border-color: oklch(50.5% 0.213 27.518);
	color: oklch(98.5% 0 0);
	opacity: 1;
}

/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Site Header
*/
.site-header {
	position: sticky;
	inset: 0;
	background: #fff;
	z-index: 1000;
	transition: all 0.3s ease-in-out;
}

.site-header .inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0px 2rem;
	align-items: center;
}

.site-header .main-logo {
	padding-block: 1rem;
}

.site-header .main-logo img {
	width: 200px;
	transition: width 150ms ease-out;
}

/* Shrink styles */
.site-header.shrink .inner .main-logo {
	padding-block: 0.5rem;
}

.site-header.shrink .inner .main-logo img {
	width: 125px;
}
.site-header.shrink {
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}
/* Alert Bar */
.alert-bar {
	background-color: #feaa4d;
	padding-block: 0.25rem;
	text-align: center;
	/* min-height: 45px; */
	display: flex;
	align-items: center;
	justify-content: center;
}
.alert-bar p {
	color: var(--black);
	margin: 0;
}
/* Top Nav */
.nav-container {
	height: 100%;
	display: grid;
	grid-template-rows: auto 1fr;
}
.top-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
	width: fit-content;
	justify-self: flex-end;
}
.top-nav-pre {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	width: fit-content;
	justify-self: flex-end;
	color: var(--green);
}
.top-nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: color-mix(in oklch, var(--green) 20%, transparent);
	padding-inline: 1rem;
	width: fit-content;
	justify-self: flex-end;
	margin-inline-end: 0.5rem;
	border-radius: 0 0 0.2rem 0.2rem;
}
.top-nav .menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
.top-nav .menu .menu-item a {
	color: var(--green);
	padding: 0.75rem 1.5rem;
	display: block;
	margin: 0;
	line-height: 1;
}
.top-nav .menu .menu-item a:hover {
	color: var(--black);
	opacity: 1;
}

/*
  Main Navigation
*/
.main-nav .menu-main-menu-container {
	height: 100%;
}
.main-nav .menu-main-menu-container > ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
.main-nav .menu-main-menu-container > ul > li {
	display: flex;
	align-items: center;
	height: 100%;
	margin-left: 2%;
	position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a {
	display: inline-block;
	/* 100% height anchor / for full height hover */
	font-family: var(--nav-font);
	font-size: 1.1rem;
	color: var(--nav-color);
	padding: 1rem 0.5rem;
	margin-bottom: 0;
	text-align: center;
	line-height: 1.1;
	position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a:hover,
.main-nav .menu-main-menu-container > ul > li > a:focus {
	color: var(--gold);
	opacity: 1;
}
.main-nav .menu-main-menu-container > ul > li.menu-item-has-children:hover > a {
	color: var(--gold);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
	display: none;
	margin: 0;
	position: absolute;
	padding: 0;
	opacity: 0;
	top: 100%;
	left: 0;
	width: -moz-max-content;
	width: max-content;
	height: auto;
	background-color: var(--green);
	box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
		rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
	z-index: 99999 !important;
}
.main-nav ul li:is(:last-of-type, :nth-last-child(2)) ul {
	left: unset;
	right: 0;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
	display: block;
	opacity: 1;
}

.main-nav ul ul li {
	margin: 0;
	height: auto;
}

.main-nav ul ul li:hover {
	background: var(--green-light);
}
.main-nav ul ul li:hover a {
	color: var(--white);
	opacity: 1;
}

.main-nav ul ul li a {
	display: block;
	color: var(--white);
	padding: 1rem 0.5rem;
	margin: 0;
	text-align: left;
	/* font-size: 1rem; */
	text-align: left;
	text-transform: uppercase;
}

.main-nav ul ul li:first-of-type {
	position: relative;
}

/* third level */
.main-nav ul ul ul {
	top: 0;
	left: 100%;
	margin-top: 0;
}

/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON --------------
*/
/*
  Search Trigger Icon
*/

/*
  Mobile Menu Icon
*/
.menu-icon {
	cursor: pointer;
	display: none;
	transition: all 0.5s ease;
	z-index: 6000;
}
.menu-icon span {
	display: block;
	width: 40px;
	height: 4px;
	margin-block: 9px;
	background: var(--green-light);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span {
	background: var(--green-light);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(1) {
	transform: translate(0, 13px) rotate(-45deg);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(2) {
	opacity: 0;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(3) {
	transform: translate(0, -13px) rotate(45deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
	display: grid;
	justify-items: center;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding: 2rem 2rem 2rem 2rem;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 5000;
	background: var(--green);
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	overflow-y: scroll;
}

.mobile-nav.open {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease-in-out;
}

.mobile-nav .exit {
	width: 30px;
	height: 30px;
	padding: 10px;
	cursor: pointer;
	background: url('img/close.svg') center/100% no-repeat;
}

.mobile-nav nav {
	width: 100%;
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mobile-nav ul li {
	text-align: center;
	margin-bottom: 15px;
	width: 100%;
}

.mobile-nav ul li:not(:last-of-type) {
	border-bottom: 3px solid var(--gold);
}

.mobile-nav ul li a {
	display: inline-block;
	font-size: 1.1rem;
	color: var(--white);
	padding: 8px 15px;
	text-transform: uppercase;
	position: relative;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
	opacity: 0.65;
}

/*
  Mobile DropDown
*/
.mobile-nav ul.sub-menu li {
	border-bottom: none;
}

.mobile-nav ul ul {
	display: none;
}

.mobile-nav li:hover > ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.mobile-nav ul ul li {
	display: block;
	margin-bottom: 5px;
}

.mobile-nav ul ul li a {
	font-size: 0.95rem;
	font-weight: 400;
	border-bottom: none;
}

.mobile-nav .btn {
	border: none;
	margin-bottom: 1rem;
}
.mobile-nav .btn:hover,
.mobile-nav .btn:focus {
	opacity: 0.65;
}

/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds color to active link via wordpress class */
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
	background: var(--blue);
}

.mobile-nav .current_page_item > a,
.mobile-nav .current-menu-ancestor > a {
	color: var(--black-60);
}

body.overflow-hidden {
	overflow: hidden;
}

/*
  Search Form
*/
.search-form {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--green);
}

.search-field,
.search-box {
	border: none;
	padding: 0.15rem 0.5rem;
	width: 200px;
	font-family: var(--primary-font);
	font-size: var(--baseFontSize);
	color: var(--green);
}

.search-submit,
.search-icon {
	background-color: white;
	border: none;
	cursor: pointer;
	width: 29px;
	color: var(--green);
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1150px) {
	.nav-container {
		display: none;
	}
	.menu-icon {
		justify-self: end;
		align-self: center;
		display: inline-block;
	}
}
@media (min-width: 1150px) {
	.mobile-nav,
	.mobile-overlay {
		display: none;
	}
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
main {
	margin-top: -1px;
}
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
.site-content {
	position: relative;
	overflow: hidden;
}
.content.wrapper {
	margin-block-start: 5rem;
}
@media (max-width: 767px) {
	.content.wrapper {
		margin-block-start: 2rem;
	}
}
.donate-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: max(300px,25vh);
	right: 0;
	padding: 0.5rem;
	background: linear-gradient(to bottom, #ffab4d 0%, #964f00 100%);
	z-index: 10000000000;
}
.donate-box .icon {
	width: 40px;
	height: 40px;
	background: url('img/icon-donate.svg') center/100% no-repeat;
}
.donate-box p {
	margin: 0;
	color: var(--white);
}

/*
  SLIDER
*/
#slider {
	height: auto;
	position: relative;
	min-height: 400px;
	overflow: hidden;
	position: relative;
}
#slider ul.slides li {
	display: grid !important;
	grid-template-columns: 1fr;
	position: relative;
}
#slider ul.slides li img {
	grid-column: 1/-1;
	grid-row: 1;
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
	min-height: 400px;
	max-height: 600px;
	width: 100%;
}
#slider ul.slides li .caption-wrap {
	grid-column: 1/-1;
	grid-row: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: end;
	justify-items: start;
	background: none;
	opacity: 1;
	height: 100%;
	max-width: var(--wrapper-max-width);
	padding-inline: auto;
	margin-inline: var(--gap-fluid);
}
#slider ul.slides li .caption-wrap .caption {
	padding: 0;
	width: 100%;
	margin-bottom: 3rem;
}
#slider ul.slides li .caption-wrap .caption h1 {
	font-size: clamp(1.9rem, 0.9194rem + 2.5806vw, 3rem);
	color: var(--white);
	font-weight: 600;
}
#slider ul.slides li .caption-wrap .caption p {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 20px;
}
#slider ul.slides li .caption-wrap .caption .flex-group > * {
	flex: 0;
}
#slider ul.slides li .caption-wrap .caption .btn {
	margin-left: 0;
}

.flexslider {
	margin-bottom: 0 !important;
}

/*
  MAIN
*/
/*
  HOME INTRO SECTION
*/
.pre-intro {
	padding-block: 4rem;
}
.intro {
	background: var(--green);
	padding-block: 4rem;
}
.pre-intro .wrapper-fluid .pre-intro-inner,
.intro .wrapper-fluid .intro-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 65rem;
	margin-inline: auto;
}
.intro .wrapper-fluid .intro-inner > * {
	max-width: 65rem;
	color: var(--white);
}
.intro .wrapper-fluid .intro-inner h2 {
	font-weight: 600;
}
.pre-intro .wrapper-fluid .pre-intro-inner h2 {
	font-weight: 700;
	color: var(--green);
}
.intro .wrapper-fluid .intro-inner p.subtitle {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--gold);
}

/*
  HOME VIDEO BANNER SECTION
*/
.video-banner {
	display: grid;
	grid-template-columns: 2fr 3fr 2fr;
	margin-bottom: 3rem;
	position: relative;
}
.video-banner img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.video-banner img:not(.vid-wrap img) {
	filter: grayscale(1);
}
.video-banner .vid-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.video-banner .vid-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
/* .video-banner .vid-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  background: url("img/play-btn.png") center/100% no-repeat;
} */
.video-banner::before {
	content: '';
	position: absolute;
	left: -1rem;
	bottom: -1rem;
	height: 150px;
	width: 125px;
	background: url('img/logo-tree.svg') center/70% no-repeat;
	background-size: contain;
	z-index: 10;
}

@media (max-width: 700px) {
	.video-banner {
		grid-template-columns: 1fr;
	}
	.video-banner::before {
		content: none;
	}
}
/*
  HOME LEGACY SECTION
*/
.legacy {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 0.5rem 3rem;
}
.legacy .left {
	align-self: center;
}
.legacy .left .inner {
	height: 100%;
}
.legacy .left .inner .icon {
	width: 70px;
	height: 70px;
	margin-bottom: 1rem;
	background: url('img/icon-legacy.svg') center/100% no-repeat;
}
.legacy .left .inner h3 {
	font-weight: 300;
}
.legacy .left .inner .btn {
	margin-bottom: 2rem;
}
.legacy .right {
	background: var(--green);
	padding: 2rem;
	position: relative;
}
.legacy .right::after {
	content: '';
	position: absolute;
	right: -100vw;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100vw;
	background: var(--green);
	z-index: -10;
}
.legacy .right ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	height: 100%;
}
.legacy .right ul li {
	flex: 1;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--green-light);
}
.legacy .right ul li a {
	display: inline-block;
	color: var(--white);
	margin: 0;
}
.legacy .right ul li a:after {
	content: url('https://cfci25.csmdemo.com/wp-content/themes/cfci-2025/img/internal-link.svg');
	display: inline-block;
	margin-left: 0.5rem;
	height: 12px;
	width: 12px;
}
.legacy .right ul li:last-child {
	border-bottom: none;
}
.legacy hr {
	grid-column: 1/-1;
	width: 100%;
}

@media (max-width: 700px) {
	.legacy {
		grid-template-columns: 1fr;
	}
	.legacy .right {
		margin-inline: -2rem;
		margin-bottom: 2rem;
	}
	.legacy .right::after {
		content: none;
	}
	.legacy hr {
		display: none;
	}
}
/*
  HOME LOCAL CAUSES SECTION
*/
.local-causes {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 0.5rem 3rem;
	margin-bottom: 4rem;
}
.local-causes .left {
	background: var(--green);
	padding: 2rem 2rem 2rem 0;
	position: relative;
}
.local-causes .left::before {
	content: '';
	position: absolute;
	left: -100vw;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100vw;
	background: var(--green);
	z-index: -10;
}
.local-causes .left > *,
.local-causes .left p {
	color: var(--white);
}
.local-causes .left p.title {
	font-size: 1.2rem;
}
.local-causes .left ul li {
	margin-bottom: 0.5rem;
	font-weight: 300;
}
.local-causes .right {
	align-self: center;
}
.local-causes .right .inner .icon {
	width: 70px;
	height: 70px;
	margin-bottom: 1rem;
	background: url('img/icon-causes.svg') center/100% no-repeat;
}
.local-causes .right .inner h3 {
	font-weight: 300;
}

@media (max-width: 700px) {
	.local-causes {
		grid-template-columns: 1fr;
		margin-bottom: 0;
	}
	.local-causes .left {
		order: 2;
		margin-inline: -2rem;
		padding: 2rem;
	}
	.local-causes .left::before {
		content: none;
	}
	.local-causes .right {
		order: 1;
		margin-bottom: 2rem;
	}
}
/*
  HOME SERVE SECTION
*/
.serve {
	display: grid;
	place-items: center;
	padding-block: 4rem;
	min-height: 450px;
	background: url('img/serve-bg.png') center/100% no-repeat;
	background-size: cover;
	background-position: 10% 50%;
	position: relative;
	overflow: hidden;
}
.serve .box {
	max-width: 600px;
	padding: 2rem;
	margin: 2rem;
	background-color: rgba(2, 81, 87, 0.8);
	z-index: 10;
}
.serve .box > *:not(.btn) {
	color: var(--white);
}
.serve .box p {
	color: var(--white);
}
/* .serve::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  aspect-ratio: 1/1;
  background: url("img/logo-tree.svg") center/70% no-repeat;
  background-size: contain;
  z-index: 10;
} */

/*
  HOME PHILANTRHOPY SECTION
*/
.philanthropy {
	align-items: center;
	padding-block: 4rem;
}
.philanthropy .right .inner .icon {
	background: url('https://cfci25.csmdemo.com/wp-content/uploads/partner.svg') center/ 100%
		no-repeat;
}

@media (max-width: 800px) {
	.philanthropy {
		padding: unset !important;
	}
	.philanthropy .right {
		padding-inline: 2rem !important;
		padding-block: 2rem !important;
	}
}

/*
  HOME EVENTS SECTION
*/

.events {
	padding-block: 4rem;
	--swiper-navigation-sides-offset: 0%;
	--swiper-pagination-bottom: -2rem;
}

.events h5 {
	font-weight: 300;
	margin-bottom: 2rem;
}

/* Grid Layout */
.events-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	align-items: start;
}

.left-col {
	/* Empty for now – add future content here */
}

/* Swiper container adjustments */
.swiper-container {
	width: 100%;
}

.events .inner.swiper-wrapper {
	display: flex;
}

.events .swiper-slide {
	flex-shrink: 0;
	width: auto;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	position: relative;
}

.events .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

.events .bottom {
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: space-between;
	padding: 1.5rem;
	min-height: 225px;
	background: linear-gradient(to bottom, #01747d 0%, #025157 100%);
	text-align: left;
}

.events .bottom * {
	color: var(--white);
}

.events .bottom p {
	margin: 0;
}

.events .bottom a.title {
	margin-bottom: 0.6rem;
	line-height: 1.2;
}

.events .bottom p.excerpt {
	font-size: 0.875rem;
}

.events .bottom a.link {
	font-size: 0.875rem;
	max-width: max-content;
	position: relative;
}

.events .bottom a.link::after {
	content: '>';
	margin-left: 0.3rem;
	vertical-align: middle;
	transition: all 0.3s ease-in-out;
}

.events .bottom a.link:hover::after {
	margin-left: 0.5rem;
}

.events .date {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.75rem;
	background: var(--gold);
}

.events .date span {
	display: inline-block;
	line-height: 1.2;
}

/* Navigation */
.events .swiper-button-next,
.events .swiper-button-prev {
	color: var(--green) !important;
	background: #ccc;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	padding: 1rem;
}

.events .swiper-button-next {
	right: 1rem;
}

.events .swiper-button-prev {
	left: 1rem;
}

.events .swiper-button-next::after,
.events .swiper-button-prev::after {
	font-size: 1rem;
}
@media (max-width: 767px) {
	.events-grid {
		grid-template-columns: 1fr;
	}

	.left-col {
		order: 1;
	}

	.swiper-container {
		order: 2;
	}
}
.events {
	display: none;
}

/* .events {
  padding-block: 4rem;
  --swiper-navigation-sides-offset: 0%;
  --swiper-pagination-bottom: -2rem;
}
.events h5 {
	font-weight: 300;
	margin-bottom: 2rem;
}

.events .inner article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  position: relative;
}
.events .inner article .bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
  padding: 1.5rem;
  min-height: 225px;
  background: linear-gradient(to bottom, #01747d 0%, #025157 100%);
  text-align: left;
}
.events .inner article .bottom * {
  color: var(--white);
}
.events .inner article .bottom p {
  margin: 0;
}
.events .inner article .bottom a.title {
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.events .inner article .bottom p.excerpt {
  font-size: 0.875rem;
}
.events .inner article .bottom a.link {
  font-size: 0.875rem;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
}
.events .inner article .bottom a.link::after {
  content: ">";
  margin-left: 0.3rem;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.events .inner article .bottom a.link:hover::after {
  margin-left: 0.5rem;
}
.events .inner article .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem;
  background: var(--gold);
}
.events .inner article .date span {
  display: inline-block;
  line-height: 1.2;
}

.cards .swiper-slide {
  height: auto !important;
}

.events .swiper-button-next,
.events .swiper-button-prev {
  color: var(--green) !important;
  background: #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 1rem;
}

.events .swiper-button-next {
  right: 1rem;
}

.events .swiper-button-prev {
  left: 1rem;
}

.events .swiper-button-next::after,
.events .swiper-button-prev::after {
  font-size: 1rem;
} */

/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.feature {
	position: relative;
}
.feature .featured-grid {
	display: grid;
	position: relative;
	grid-template-columns: 3fr 4fr;
	align-items: stretch;
	min-height: 24rem;
	max-height: 32rem;
}
.feature .featured-grid .left {
	background-color: var(--green);
	padding: 2rem var(--gap-fluid);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature .featured-grid .left .title * {
	color: var(--white);
}

.feature .featured-grid .left .title h1 {
	font-size: var(--heading-1);
	margin-bottom: 1rem;
}

.feature .featured-grid .left .title p {
	font-size: var(--baseFontSize);
	line-height: 1.6;
}
.feature .featured-grid .right {
	position: relative;
}
.feature .featured-grid .right::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
	background: linear-gradient(to right, var(--green), transparent);
}
.feature .featured-grid .right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.feature .feature-no-image {
	background-color: var(--green);
	padding: 3rem var(--gap-fluid);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	isolation: isolate;
	min-height: 13rem;
}

.feature .feature-no-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('img/logo-tree.svg');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 400px;
	opacity: 0.25;
	z-index: -1;
}

.feature .feature-no-image .title {
	max-width: 80ch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 1rem;
}

.feature .feature-no-image .title * {
	color: var(--white);
	margin: 0;
}

.feature .feature-no-image .title h1 {
	font-size: var(--heading-1);
}

/* Responsive */
@media (max-width: 900px) {
	.feature .featured-grid {
		grid-template-columns: 1fr;
	}
	.feature .featured-grid .left {
		padding: 2rem;
	}
}
/*
  CONTENT / CONTENT-POSTS STYLES
*/
/* Styles for post entry meta - (date) */
.entry-meta {
	margin-bottom: 30px;
}

/* Styles for WP category list */
.entry-category {
	display: inline-block;
}

.entry-category ul {
	display: inline-block;
}

.entry-category ul li {
	display: inline-block;
	margin-left: 5px;
}

/*
  Board of Directors & Staff Template / Foundation Staff Template
*/
.staff-section {
	margin-bottom: 4rem;
	max-width: 80rem;
}
.staff-section h2 {
	color: var(--black);
}
.staff-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}

.staff-member {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	background: #fff;
	padding: 1rem;
}

.staff-image {
	width: 200px;
	height: 200px;
}

.staff-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
	display: block;
}

.staff-info h3 {
	margin: 1rem 0 0.4rem 0;
	font-size: 1rem;
	font-weight: 700;
}
.staff-info p {
	font-size: 0.875rem;
	margin: 0;
}
.staff-info .chair {
	margin: 0.3rem 0;
	font-weight: 400;
}
.staff-info p.position {
	color: var(--green);
	font-weight: 700;
}
.staff-info a {
	color: #4b6e2f;
	text-decoration: none;
}

@media (max-width: 1200px) {
	.staff-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 800px) {
	.staff-grid {
		grid-template-columns: 1fr;
	}
}

/*
  Calendar Page Template
*/
.events-page-title {
	display: flex;
	justify-content: center;
	padding-block: 3rem;
	background: var(--green);
}
.events-page-title h2 {
	max-width: var(--wrapper-max-width);
	color: var(--white);
}
.tribe-common ul {
	padding: 0;
}
.tribe-common li {
	list-style-type: none !important;
}
.tribe-common a {
	text-decoration: none !important;
}
:root {
	--tec-color-background-events-bar-submit-button: var(--green) !important;
	--tec-color-background-events-bar-submit-button-hover: var(--green-light) !important;
}
.tribe-common .tribe-common-l-container {
	padding-bottom: 3rem !important;
	max-width: 100% !important;
	margin-inline: 0 !important;
	padding-inline: 0 !important;
}
.tribe-events .tribe-events-c-search__button:focus,
.tribe-events .tribe-events-c-search__button:focus-within,
.tribe-events .tribe-events-c-search__button:focus-visible,
.tribe-events .tribe-events-c-search__button:active,
.tribe-events button.tribe-events-c-search__button:active {
	background: var(--green) !important;
	color: var(--white) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button-text,
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	button.tribe-events-c-subscribe-dropdown__button-text,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button-text,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	button.tribe-events-c-subscribe-dropdown__button-text {
	color: var(--green) !important;
	border-color: var(--green) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button-text:hover,
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	button.tribe-events-c-subscribe-dropdown__button-text:hover,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button-text:hover,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	button.tribe-events-c-subscribe-dropdown__button-text:hover {
	color: var(--white) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button-text:focus,
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	button.tribe-events-c-subscribe-dropdown__button-text:focus,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button-text:focus,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	button.tribe-events-c-subscribe-dropdown__button-text:focus {
	background: var(--green) !important;
	color: var(--white) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:focus,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus {
	background: var(--green) !important;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
	color: var(--green) !important;
	border-color: var(--green) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:hover,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
	border-color: var(--green-light) !important;
	background: var(--green-light) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:hover
	button,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:hover
	button,
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:hover
	.tribe-events-c-subscribe-dropdown__button-icon,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:hover
	.tribe-events-c-subscribe-dropdown__button-icon {
	color: var(--white) !important;
}
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:focus
	button,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:focus
	button,
.single-tribe_events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:focus
	.tribe-events-c-subscribe-dropdown__button-icon,
.tribe-events
	.tribe-events-c-subscribe-dropdown
	.tribe-events-c-subscribe-dropdown__button:focus
	.tribe-events-c-subscribe-dropdown__button-icon {
	color: var(--white) !important;
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/
.mission {
	padding-block: 4rem 2rem;
	background: linear-gradient(to bottom, #01747d 0%, #025157 100%);
}
.mission .inner {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	text-align: center;
	max-width: 1000px;
}
.mission .inner * {
	color: var(--white);
	margin: 0;
	margin-bottom: 0;
}
.mission .inner h5 {
	padding-block: 1.5rem;
	font-size: 1.6rem;
}
.mission .inner p.title {
	color: var(--gold);
	font-size: 1.3rem;
	text-wrap: balance;
}
.mission .inner .btn {
	background: #01747d;
	border: 1px solid var(--gold);
	margin-top: 1rem;
}
.mission hr {
	margin-block: 4rem 0;
	background: var(--white);
}

/* Main Footer Area */
.site-footer {
	padding-block: 3rem;
	background: var(--green);
}
.site-footer .inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem;
}
.site-footer .inner * {
	color: var(--white);
}
.site-footer .inner .left {
	display: flex;
	gap: 1rem;
}
.site-footer .inner .left a {
	font-size: 0.875rem;
}
.site-footer .inner .left .contact,
.site-footer .inner .left .social-icons {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.site-footer .inner .left .contact *::before {
	width: 25px;
	height: 30px;
}
.site-footer .inner .left .contact .address::before {
	height: 35px;
	background: url('img/map-pin.svg') center/100% no-repeat;
}
.site-footer .inner .left .contact .phone::before {
	background: url('img/phone.svg') center/100% no-repeat;
}
.site-footer .inner .left .contact .email::before {
	background: url('img/mail.svg') center/100% no-repeat;
}
.site-footer .inner .left .social-icons {
	gap: 0.5rem;
}
.site-footer .inner .left .social-icons .icon {
	display: inline-block;
	vertical-align: middle;
	padding: 5px;
	width: 35px;
	height: 35px;
	border-radius: 6px;
}
.site-footer .inner .left .social-icons .fb {
	background: url('img/social/fb.svg') center/100% no-repeat;
}
.site-footer .inner .left .social-icons .insta {
	background: url('img/social/insta.svg') center/100% no-repeat;
}
.site-footer .inner .left .social-icons .linkedin {
	background: url('img/social/linkedin.svg') center/100% no-repeat;
}
.site-footer .inner .left .social-icons .yt {
	background: url('img/social/yt.svg') center/100% no-repeat;
}
.site-footer .inner .right {
	justify-self: end;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	text-wrap: balance;
}
.site-footer .inner .right p {
	max-width: 50ch;
	margin-bottom: 0.5rem;
}
.site-footer .inner .right p:nth-of-type(1) {
	font-size: 1.1rem;
}
.site-footer .inner .right img {
	width: 275px;
}
.associations {
	display: flex;
	gap: 2vw;
	margin-inline-start: 2vw;
}
.associations-logo img {
	max-height: 100px;
	width: auto;
}
@media (max-width: 800px) {
	.site-footer .inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.site-footer .inner .right {
		justify-self: unset;
		align-items: center;
		text-align: center;
	}
	.associations {
		flex-direction: column;
	}
}

/*# sourceMappingURL=style.css.map */

/* Live Updates */
table p {
	margin-bottom: 0;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 1.5rem 0;
	text-align: center;
}

.service-icon {
	height: 60px;
	width: 60px;
	border: 4px solid var(--green-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.service-icon i {
	font-size: 32px;
	color: var(--green-light);
}

.service-item h4 {
	font-size: var(--baseFontSize);
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 10px;
	color: var(--green-light);
}

.service-item p {
	font-size: calc(0.9 * var(--baseFontSize));
	line-height: 1.5;
}

@media (max-width: 992px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.alert-bar .inner {
	display: flex;
	align-items: center;
}

.alert-bar__link {
	flex: 1 1 auto;
	text-align: center;
}

.alert-bar__text {
	display: inline-flex;
	align-items: center;
}

.alert-bar__arrow {
	width: 28px;
	height: 28px;
	margin-left: 6px;
}

.alert-bar__close {
	color: var(--black-20);
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	position: absolute;
	right: 4px;
	top: 4px;
}
