html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}
main {
    display: block;
}

h1 {
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}


b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}



[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}


[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}


*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */


h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object 
{    max-width: 100%;
}

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

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/* General container for desktop and larger screens */
.container {
    width: 100%;
    max-width: 1200px; /* Adjust this value as needed */
    margin: 0 auto; /* Centers the container */
    padding: 20px; /* Small padding for edges */
}

/* Adjust container for tablets */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
}

/* Adjust container for mobile devices */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 10px;
    }
}

/* Adjust container for smaller mobile devices */
@media (max-width: 480px) {
    .container {
        max-width: 100%; /* Full width for very small screens */
        padding: 0 10px;
    }
}

.full-width-background {
    width: 100%;
    background-size: cover;
    background-position: center;
}


.spacer {
    height: 0px;
}
/* Links
--------------------------------------------- */

a:hover,
a:active {
    outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 0px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons li {
    list-style: none;
}



/* Navigation
--------------------------------------------- */
.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {

    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}


/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}


/* Horizontal Menu (visible on desktop) */
.main-navigation .desktop-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Hide horizontal menu on mobile */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
}


/* Show hamburger on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* Fullscreen Menu (hidden by default) */
/* General full-page menu styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Single Column */
.single-column-menu nav ul {
    display: flex;
    flex-direction: column;
}

/* Two Column */
.two-column-menu .column {
    flex: 1;
    text-align: center;
}

/* Three Column */
.three-column-menu .column {
    flex: 1;
    text-align: center;
}

/* Footer and Logo */
.menu-footer {
    text-align: center;
    margin-top: 20px;
}

.menu-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.menu-logo img {
    width: 200px;
    margin-bottom: 0px;
}


/* Show the fullscreen menu when active */
.fullscreen-menu.active {
    display: flex;
    flex-direction: column;
}
.fullscreen-navigation .fullscreen-menu-items {
    list-style: none;
    text-align: center;
}

.fullscreen-navigation .fullscreen-menu-items li {
    margin: 20px 0;
}

.fullscreen-navigation .fullscreen-menu-items a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fullscreen-navigation .fullscreen-menu-items a:hover {
    color: #f39c12;
}

.menunav {
    display: flex;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 15px;
}

.social-icons li {
    display: inline-block;
}

.social-icons a {
    text-decoration: none;
    color: inherit;
}

.social-icons .dashicons {
    font-size: 24px; /* Adjust size as needed */
}

.social-icons .dashicons:hover {

}

main {
    display: block;
    margin-left: calc(50% - 50vw);
    border: 0px;
    padding-right: calc(50% - 40vw);
    padding-left: calc(50% - 40vw);
    padding-top: 1vh;
    padding-bottom: 1vh;
}


p, h1, h2, h3, h4, h5 {
}


.cpt-menu ul li {
    display: flex;
    column-count: 4;
    column-gap: 1.5em;
    text-align: left;
    list-style-position: inside;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.cpt-menu ul {
    column-count: 4;
    column-gap: 1.5em;
    text-align: left;
    list-style-position: inside;
     align-items: flex-start;
}


.login-username {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
      color: #509E2F;
        background-color: #f3f8ef;
    border: 2px solid #509E2F;
    border-radius: 22px;
    padding-left: 7px;
    padding-right: 2px;
    padding-top: 5px;
    padding-bottom: 2px;
        width: 100%
}

.login-form {
    display:flex;
}

.stakeholder-login-form {
    display:flex;
}

.login-submit{
    background: #509E2F;
    color: #fff;
    text-align: center;
    border: 2px solid #509E2F;
    border-radius: 22px;
    padding: 10px;
    width: 100%;
}

.login-form input[type="submit"],  .stakeholder-login-form input[type="submit"] {
    border: 0px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: none;
    color: #fff;
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}


.fullwidthimage {
    width: 100%;
 max-height: 60vh;
    height: 60vh;  
    overflow: hidden;
}

/* Apply cropping to the actual image */
.fullwidthimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
      display: block;
}

.fullwidthimage.align-top img {
    object-position: top center;
}

.fullwidthimage.align-center img {
    object-position: center center;
}

.fullwidthimage.align-bottom img {
    object-position: bottom center;
}

.fullwidthimage .caption-parent {
    position: relative;
  height: 100%;        /* ← fill the parent */
    width: 100%;
    overflow: hidden;
}


.optionalcaption {

    box-sizing: border-box;
    display: flex;
    color: #fff;
    background-color: #257126;
    flex-direction: column;
    gap: 10px;
   margin: 20px auto;
    width: 60%;
    overflow: hidden;
    padding: 20px 20px 20px 20px;
    border-radius: 22px;
    position: relative;
    z-index: 10;
    justify-content: space-around;
}


.optionalcaption-overlay {
    position: absolute;
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-shadow: 1px 1px #000;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.0);
    color: #fff;
    padding-bottom: 10px;
    padding-left: 25px;
    margin-right: 30%;
    text-align: left;
}

.cpt-menu ul li {
    display: flex;
    column-count: 4;
    column-gap: 1.5em;
    text-align: left;
    list-style-position: inside;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.cpt-menu ul {
    column-count: 4;
    column-gap: 1.5em;
    text-align: left;
    list-style-position: inside;
     align-items: flex-start;
}


.login-username {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	  color: #509E2F;
		background-color: #f3f8ef;
    border: 2px solid #509E2F;
    border-radius: 22px;
    padding-left: 7px;
	padding-right: 2px;
	padding-top: 5px;
	padding-bottom: 2px;
		width: 100%
}

.login-form {
	display:flex;
}

.stakeholder-login-form {
	display:flex;
}

.login-submit{
    background: #509E2F;
    color: #fff;
    text-align: center;
    border: 2px solid #509E2F;
    border-radius: 22px;
    padding: 10px;
    width: 100%;
}

.login-form input[type="submit"],  .stakeholder-login-form input[type="submit"] {
    border: 0px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: none;
    color: #fff;
	font-size: 1.6em;
	font-weight: 600;
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}

.custom-infowindow a:-webkit-any-link:focus-visible {
    outline-offset: 4px;
outline: -webkit-focus-ring-color auto 0px;
}

.fullwidthimage {
    width: 100%;
 max-height: 60vh;
    height: 60vh;  
    overflow: hidden;
}

/* Apply cropping to the actual image */
.fullwidthimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
      display: block;
}

.fullwidthimage.align-top img {
    object-position: top center;
}

.fullwidthimage.align-center img {
    object-position: center center;
}

.fullwidthimage.align-bottom img {
    object-position: bottom center;
}

.fullwidthimage .caption-parent {
    position: relative;
  height: 100%;        /* ← fill the parent */
    width: 100%;
    overflow: hidden;
}


.optionalcaption {
  padding-left: 10%;
}
/*banner*/

.additionaltags div[class*="desc_"] p{
    font-size: 1.2rem;
	color: #041203;
}

.infogridsubtitle p{
	font-weight: 500;
    font-size: 1.2rem;
	line-height: 140%;
	color: #041203;
}

.additionaltags a {
	text-decoration: underline;
}

.orbg .additionaltags div[class*="tag_"]:before,  .pkbg .additionaltags div[class*="tag_"]:before {
	background-color: #fff;
	    border: 2px solid #fff;
	border-radius: 12px;
}

.infogridtitle
{margin: 20px;}

.infogridsubtitle
{margin-left: 5%;}

/*banner*/
.links-button-container a.download-link.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-height: 60px;
	  height: 60px;
    padding: 10px 20px;
    border-radius: 42px;
    flex: 0 1 auto;
    min-width: 180px;
    max-width: 100%;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--btn-bg, #eee);
    color: var(--btn-text, #111);
}

.links-button-container {
    display: flex
;
    flex-wrap: wrap;
    gap: 22px;
}

.link-banner .button {
    display: flex
;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 42px;
    text-decoration: none;
    z-index: 5;
    line-height: 110%;
}

/*team */
.team .custom-post-image {
    background-position: center;
    background-size: cover;
    padding-top: 80%;
    position: relative;
}

.team .gridreadmorebutton p {
	color: #67bb4b !important;
}

.team .custom-post-main-content {
    color: #000;
    text-decoration: none;
}

.team .custom-post-title {
    margin-left: 20px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.team .custom-post-title h4 {
    margin-top: 5px;
    margin-bottom: 0px;
	text-transform: uppercase;
	font-size: 0.7em;
	letter-spacing: 1px;
	font-weight: 300;
  }

.team .custom-post-title h3{
    margin-top: 5px;
    margin-bottom: 0px;
  }

.team .gridcontactbutton {
    display: flex
;
    background-color: #509E2F;
    border-radius: 22px;
        cursor: pointer;
       font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100px;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
}

.team .gridreadmorebutton {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
}

.team .gridcontactbutton a{
color: #fff !important;
}

.team .gridreadmorebutton a{
    color: #257226 !important;
}

.team .custom-post-base-content {
    align-items: center;
    background-color: #fff;
    color: #257226 !important;
    display: flex;
    justify-content: space-between;
	margin: 10px 0px 5px 0px;
}

.team.teamgrid .custom-post-main-content {
 display: none;
}

.team.teamgrid .gridcontactbutton.tel {
 display: none;
}

.custom-post-grid.list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
}
.custom-post-grid.list .custom-post {
    flex-basis: calc(100% - 20px);
    margin: 10px;
}

.list .custom-post {
    background-color: #fff;
    border-radius: 0px;
    border-bottom: 2px solid #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px;
    overflow: hidden;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
    align-items: center;
    flex-wrap: nowrap;
	width: 100%;
	height: auto;
}

.list .custom-post-title {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
    display: flex
;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.list .custom-post-content {
    margin-top: auto;
    display: flex
;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 5px 5px;
    position: relative;
    z-index: 2;
	    flex: 3;
}

.teamlist {
    background-color: #fff;
    border-radius: 0px;
    border-bottom: 2px solid #b7db57;
    display: flex;
    flex-direction: row;
    margin: 10px;
    overflow: hidden;
    flex-wrap: nowrap;
	width: 90%;
	margin: 10px auto;
	height: auto;
	padding: 10px 10px 30px 10px;
}

.listcontent {
	    margin-top: 2px;
    display: flex;
	    flex-direction: column;
    flex-wrap: nowrap;
     justify-content: flex-start;
	    padding: 0px 15px 15px 30px;
    flex: 4;
}




.listcontent p {
    line-height: 100%;
    margin-bottom: 2em;
	    margin-top: 0rem;
}

.listcontent strong, 
.listcontent p {
	color: #000 !important;
}


.listdetails {
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex: 1;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.listcontent a {
	text-decoration: underline;
	 color: #509e30 !important;
}

.listhead {
	font-size: 1.2em;
	font-weight: 300;
	color: #509e30 !important;
	letter-spacing: 1px;
	    line-height: 100%;
    margin-bottom: .5rem;
    margin-top: 0rem;
	text-transform: uppercase;
}

.listhead2 {
	font-size: 1em;
	font-weight: 300;
	color: #509e30 !important;
	letter-spacing: .1px;
	    line-height: 100%;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
	text-transform: uppercase;
}

.listname {
		color: #000 !important;
	font-size: 1.2em;
	font-weight: 600;
	    line-height: 1rem;
    margin-bottom: 2rem;
    margin-top: 0rem;
}

.custom-post-list-image {
	border-radius: 22px;
}

.teamlist .gridcontactbutton {
    display: flex
;
    background-color: #509E2F;
    border-radius: 22px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    width: 80%;
	height: 45px;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
}

@supports (font-size: 1cqw) {
	
	    .headertitle.fp1 {
        font-size: clamp(2.6rem, 6cqw, 3.4rem);
    }
    .locationintro.fp2 {
        font-size: clamp(1.45rem, 1.2cqw, 1.6rem);
    }
	
	   .locationintro.fp3 {
        font-size: clamp(1.45rem, 1.2cqw, 1.6rem);
    }
}

.alert h3 {font-size: 2.4rem;
	color: #fff;
	font-style: italic;
}

.hbannersvr.alert {
    height: 300px;
    display: flex
;
    align-content: center;
    align-items: center;
}

.griddesc p{
	font-size: 1.2rem;
}


@supports (font-size: 1cqw) {
	
	 .mapcontentbox   .headertitle {
        font-size: clamp(2.6rem, 6cqw, 3.4rem);
    }
  .mapcontentbox   .locationintro {
        font-size: clamp(1.45rem, 1.2cqw, 1.6rem);
    }
	
	.mapcontentbox    .locationintro{
        font-size: clamp(1.45rem, 1.2cqw, 1.6rem);
    }
}

.statscontainer {
    max-width: 1200px;
    display: flex
;
    margin: auto;
    padding: 20px;
    gap: 50px;

    align-content: center;
    flex-wrap: wrap;
}
.statscontainer.normal {
	    flex-direction: row;
}
.statscontainer.reversed {
	    flex-direction: row-reverse;
}

.statsbox1 {
    flex: 2;
	gap: 10px;
    display: flex;
    flex-direction: column;
    align-content: left;
    align-items: left;
    justify-content: space-evenly;
}

.statsbox2 {
    flex: 1;
	gap: 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
}


.statscontainer svg {
	max-height: 200px;
}

.statsbuttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
     width: 100%;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
}

.statsbuttons .button {
    border-radius: 40px;
    display: flex
;
    /* flex: 0 0 calc((80% - 2 * 12px) / 2); */
    padding: 10px 20px 8px 20px;
    text-decoration: none;
    z-index: 5;
    align-items: center;
    min-width: calc((80% - 2 * 12px) / 2);
    min-height: 4rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.statstext {
	font-size: 2rem;
	font-weight: 600;
}

.statstitle h2{
	font-size: 3.4rem;
	font-weight: 600;
}

.statsstat {
	font-size: 7rem;
	font-weight: 600;
}

@media (max-width: 1060px) {
.statscontainer.normal, .statscontainer.reversed {
    max-width: 1200px;
    display: flex;
    margin: auto;
    padding: 20px;
    gap: 20px;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
	}



}

.statscontainer.normal {
	    flex-direction: row;
}
.statscontainer.reversed {
	    flex-direction: row-reverse;
}

.stat-banner {
  display: inline-block;
  padding: 0rem;
  color: var(--stat-color, #fff);
}

.stat-inner {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;

}

.stat-prepend,
.stat-append {
  font-size: 6em;
  opacity: 0.8;
}

.stat-number {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}


.contact-line {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.contact-icon {
  color: currentColor; /* explicit, but reassuring */
  opacity: 0.7;
}

.singlecontentcontainer{
  overflow: visible;
}


.custom-select select option {
    color: #041204 !important;                  /* Dropdown list text */
    background-color: #fcfffc !important;
}

.custom-select select option:checked {
    background-color: #509E2F !important;
    color: #ffffff !important;
}

/* Example attribution styling */
.quote-attribution{
  font-size: 0.95em;
  opacity: 1;
  margin-top: 0.25rem;
  text-align: right !important;
	font-weight: 600;

}

.quote-attribution:before {
	content: ' - ';
	margin-right: .5rem;
}

cite.quote-attribution{
  display: block;
  text-align: right;
  font-style: normal; /* optional, removes default italics */
}

blockquote,
blockquote p  {
    margin: 0 .5rem;
  font-size: 1.4em;
	font-style: italic;
  opacity: 0.85;
  margin-top: 0.25rem;
  text-align: left;
	
}

blockquote {
    margin: 0rem;
}

.routedesc {
	font-size: 1rem;
	line-height: 1.1rem;
	padding: 10px;
	color: #000;
	font-weight: 300;
}

.routetype {
	text-transform: uppercase;
            font-size: clamp(1.4rem, 8cqw, 1.8rem);
	opacity: 0.6;
	font-weight: 900;
	margin-bottom: -0.6rem;
	margin-left: 0.1rem;
}

.custom-post-tag {
	color: #509e30 !important;
}


.no-results-message {
  text-align: center;
  padding: 3rem 1rem;
}

.no-results-message button {
  margin-top: 1rem;
}

.custom-infowindow--route {
  display: flex;
  gap: 1rem;
  max-width: 320px;
}

.custom-infowindow--route .ciw-thumb {
  width: 96px;
  min-width: 96px;
  height: 96px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.custom-infowindow--route .ciw-content {
  flex: 1;
  min-width: 0;
}

.custom-infowindow--route .ciw-title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.custom-infowindow--route .ciw-title a,
.custom-infowindow--route .ciw-title {
  font-weight: 500;
  text-decoration: none;
}

.custom-infowindow--route .routedesc {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.custom-infowindow--route .pmarrow {
  flex: 0 0 auto;
}

.custom-infowindow--group .ciw-title--group{
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.custom-infowindow--group .ciw-subtitle{
  font-size: .85rem;
  opacity: .75;
  margin-bottom: .6rem;
}

.custom-infowindow--group .ciw-route-name {
	padding-top: .5rem;
	  font-size: .85rem;
	line-height: 1rem;
}

.content_section.whitebg .custom-post-grid .custom-post {
	border: 0.01rem #00000012 solid;
}

.searchpage .custom-post-grid .custom-post {
	border: 0.01rem #00000012 solid;
}

.search-container.active input[type="text"],
.search-container.active input[type="text"]:-webkit-autofill,
.search-container.active input[type="text"]:-webkit-autofill:hover,
.search-container.active input[type="text"]:-webkit-autofill:focus,
.search-container.active input[type="text"]:-webkit-autofill:active {
    background-color: #E0EC89 !important;
    color: #257226 !important;
    border-radius: 22px;
    border: 0;
    padding: 7px;

    /* Chrome autofill hack */
    -webkit-box-shadow: 0 0 0 1000px #E0EC89 inset !important;
    -webkit-text-fill-color: #257226 !important;
}

input:-webkit-autofill {
  transition: background-color 9999s ease-out;
}

.single-routes .link-banner {
    margin-top: 50px;
    padding-bottom: 20px;
}

.column3.foot {
    display: flex
;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.menuspacer {
	min-height: 0px;
	height: 0px;
	flex: 0;
}

.menuvbutdiv2 {
    display: flex;
	width: 100%;
    flex: 2;
    justify-content: flex-end;
    align-content: center;
    align-items: baseline;
    /* padding-top: 80px; */
}
