/*
Theme Name: Food Bank 2025
Theme URI: http://cdevision.com/
Author: cdeVision
Author URI: http://cdevision.com/
Description: Custom theme for The Food Bank of Western Massachusetts
Version: 7.0
License: No copy or resale
License URI: http://cdevision.com/
Text Domain: The Food Bank of Western Massachusetts
Tags: 
*/
/* @link https://utopia.fyi/type/calculator?c=500,16,1.12,1230,18,1.15,6,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
:root {
  --step--2: clamp(0.7972rem, 0.7606rem + 0.1172vw, 0.8507rem);
  --step--1: clamp(0.8929rem, 0.8344rem + 0.1872vw, 0.9783rem);
  --step-0: clamp(1rem, 0.9144rem + 0.274vw, 1.125rem);
  --step-1: clamp(1.12rem, 1.001rem + 0.3808vw, 1.2938rem);
  --step-2: clamp(1.2544rem, 1.0945rem + 0.5116vw, 1.4878rem);
  --step-3: clamp(1.4049rem, 1.1953rem + 0.6708vw, 1.711rem);
  --step-4: clamp(1.5735rem, 1.3036rem + 0.8638vw, 1.9676rem);
  --step-5: clamp(1.7623rem, 1.4196rem + 1.0968vw, 2.2628rem);
  --step-6: clamp(1.9738rem, 1.5434rem + 1.3773vw, 2.6022rem);
}

:root {
  --lh-step--2: calc(var(--step--2) * 1.4);
  --lh-step--1: calc(var(--step--1) * 1.4);
  --lh-step-0: calc(var(--step-0) * 1.45);
  --lh-step-1: calc(var(--step-1) * 1.4);
  --lh-step-2: calc(var(--step-2) * 1.4);
  --lh-step-3: calc(var(--step-3) * 1.3);
  --lh-step-4: calc(var(--step-4) * 1.2);
  --lh-step-5: calc(var(--step-5) * 1.2);
  --lh-step-6: calc(var(--step-6) * 1.2);
}

/* 

CSS RESET 

Mostly:
https://www.joshwcomeau.com/css/custom-css-reset/

Added:
https://piccalil.li/blog/a-modern-css-reset/

Tweaks:
https://www.youtube.com/watch?v=h3bTwCqX4ns


*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/*
  Added
*/
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
  7. Remove built-in form typography styles - Used * above instead

input, button, textarea, select {
  font: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*	
    --------------------------------------------------
    Body
	--------------------------------------------------
*/
@view-transition {
  navigation: auto;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #FFF;
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  color: #444;
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

#skipnav {
  display: none;
}

/*	
    --------------------------------------------------
   	Grid
	-------------------------------------------------- 
*/
/* Block layout
Dmitry Mayorov - Content Width Solutuion
Video: https://www.youtube.com/watch?v=MQFg2bdSY4Q&list=WL&index=1
Github: https://github.com/dmtrmrv/demo-content-width/tree/trunk
*/
html :where(.wp-block) {
  margin-bottom: 0;
  margin-top: 0;
  max-width: none;
}

.editor-styles-wrapper {
  padding: 0 !important;
}

:root {
  --width--site-gutter: 20px;
  --width--content: 800px;
  --width--content--wide: 1230px;
  --width--content--breakout: 1430px;
  --width--content--super: 1580px;
}

.wp-block-post-content > *,
.block-editor-writing-flow > *,
.is-layout-flow > *,
.block_size_none {
  --width--max: var(--width--content);
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
}

.block_size_wide,
.inner_alignwide {
  --width--max: var(--width--content--wide);
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
}

.block_size_breakout,
.inner_breakout {
  --width--max: var(--width--content--breakout);
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
}

.block_size_super {
  --width--max: var(--width--content--super);
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
}

.block_size_full,
.inner_alignfull {
  max-inline-size: none;
}

.wp-block-post-content > *:last-child,
.block-editor-writing-flow > *:last-child {
  margin-bottom: 50px;
}

.wp-block-post-content > .block_size_full:last-child,
.block-editor-writing-flow > .block_size_full:last-child {
  margin-bottom: 0 !important;
}

/* Columns */
.columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 0 clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px);
}
.columns.colnum-2 {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
@media (max-width: 830px) {
  .columns.colnum-2 {
    grid-template-columns: 1fr;
  }
}
.columns.small-col.colnum-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .columns.small-col.colnum-2 {
    grid-template-columns: 1fr;
  }
}
.columns.colnum-3 {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
@media (max-width: 730px) {
  .columns.colnum-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.columns.colnum-4 {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media (max-width: 1140px) {
  .columns.colnum-4 {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

/* Flexible content small */
.flexible-content-small .columns.colnum-2,
.flexible-content .columns.colnum-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}
@media (max-width: 940px) {
  .flexible-content-small .columns.colnum-2,
.flexible-content .columns.colnum-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Buttons at and of column */
.col.button-end {
  position: relative;
  padding-bottom: 50px;
}
.col.button-end p.linkwrap {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 0;
}

/* Block editor block list div */
.block-editor-block-list__block {
  max-inline-size: 100%;
}

/* Block editor footer height */
:root :where(.editor-styles-wrapper)::after {
  max-height: 200px !important;
}

/*	
  ----------------------------------------------------------------
  Base - Typography and other classes - included into TinyMCE
	----------------------------------------------------------------
*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #143F55;
  font-weight: 700;
  margin-block-end: 5px;
  padding: 0;
  font-style: normal !important;
  text-wrap: balance;
}

h1,
.h1 {
  font-size: var(--step-6);
  line-height: var(--lh-step-6);
  margin: 0;
}

h2,
.h2 {
  font-size: var(--step-5);
  line-height: var(--lh-step-5);
  margin-block-start: clamp(24px, 19.8904109589px + 0.0082191781 * 100vw, 30px);
}

h3,
.h3 {
  font-size: var(--step-4);
  line-height: var(--lh-step-4);
  margin-block-start: clamp(20px, 17.2602739726px + 0.0054794521 * 100vw, 24px);
}

h4,
.h4 {
  font-size: var(--step-3);
  line-height: var(--lh-step-3);
  margin-block-start: clamp(16px, 13.2602739726px + 0.0054794521 * 100vw, 20px);
}

h5,
.h5 {
  font-size: var(--step-2);
  line-height: var(--lh-step-2);
  margin-block-start: clamp(16px, 13.2602739726px + 0.0054794521 * 100vw, 20px);
}

h6,
.h6 {
  font-size: var(--step-1);
  line-height: var(--lh-step-1);
  margin-block-start: clamp(16px, 13.2602739726px + 0.0054794521 * 100vw, 20px);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #143F55;
  text-decoration: none;
  font-weight: 700;
}

.w-400 {
  font-weight: 400 !important;
}

/* Mobile */
@media (max-width: 767px) {
  h1 br,
h2 br,
h3 br,
h4 br,
h5 br,
h6 br {
    display: none;
  }
}
.block-editor-block-list__block {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

p {
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  color: #444;
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: normal;
  margin-block-start: 0;
  margin-block-end: 24px;
  text-wrap: pretty;
}

p.caption,
p.wp-caption-text,
.gallery-caption {
  font-size: var(--step-0);
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: normal !important;
  text-align: center;
  color: #666;
  font-style: italic;
  margin-block: 12px 0;
  margin-inline: auto;
  max-inline-size: min(100% - 60px, 800px);
}

p img {
  margin: 0;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0;
}

.cdev_block ul,
.mce-content-body ul,
.event-single-content ul {
  margin: 0 0 24px 0;
  list-style: none; /* Remove default list style */
}
.cdev_block ul li,
.mce-content-body ul li,
.event-single-content ul li {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 24px;
}
.cdev_block ul li::before,
.mce-content-body ul li::before,
.event-single-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px; /* Adjust to vertically center the bullet */
  width: 12px; /* Adjust the size of the square */
  height: 12px; /* Adjust the size of the square */
  background-color: #444; /* Use the same color as the text */
  border-radius: 0; /* Adjust the border radius to make it a circle */
}
.cdev_block ul ul,
.mce-content-body ul ul,
.event-single-content ul ul {
  margin: 10px 0 10px 0;
  padding: 0;
}
.cdev_block ol,
.mce-content-body ol,
.event-single-content ol {
  margin: 0 0 24px 0;
  list-style: none; /* Remove default list style */
  list-style: square; /* Remove default list style */
  list-style-position: inside !important;
}
.cdev_block ol li,
.mce-content-body ol li,
.event-single-content ol li {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  position: relative;
  margin: 0 0 10px 0;
  padding: 0;
  color: #444;
  border-radius: 0; /* Adjust the border radius to make it a circle */
}
.cdev_block ol,
.mce-content-body ol,
.event-single-content ol {
  margin: 10px 0 10px 0;
  padding: 0;
}

blockquote {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 16px;
  line-height: 22px;
}

blockquote p {
  padding: 0 0 0 45px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  border: none;
}

@media (max-width: 1140px) {
  img.alignright {
    max-width: 40%;
    height: auto;
  }
  img.alignleft {
    max-width: 40%;
    height: auto;
  }
}
.alignright {
  float: right;
  margin-left: 20px;
  margin-right: 0;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-left: 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*	--------------------------------------------------
	Links
	-------------------------------------------------- */
a {
  color: #7FB550;
  line-height: inherit;
  word-wrap: break-word;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: inherit;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: inherit;
}

a:visited {
  line-height: inherit;
  color: #7FB550;
}

a:hover {
  color: #34592B;
  font-weight: bold;
  text-decoration: none !important;
}

a.box {
  display: inline-block;
  margin: 0;
  padding: 6px 10px;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 600 !important;
  position: relative;
  background: #7FB550;
  transition-duration: 0.35s;
  border-radius: 0;
}

a.box:visited {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
}

a.box:after {
  font-size: 16px;
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Blue Box */
a.box.blue,
.blue-box a.box,
.card_theme_blue a.box {
  color: #FFF;
  background: #54B2C9;
}

a.box.blue:visited,
.blue-box a.box:visited,
.card_theme_blue a.box:visited {
  color: #FFF;
  background: #54B2C9;
}

/* Jumbo */
a.box.jumbo,
.jumbo-box a.box {
  font-size: clamp(18px, 15.2602739726px + 0.0054794521 * 100vw, 22px);
  line-height: clamp(26px, 23.2602739726px + 0.0054794521 * 100vw, 30px);
  padding: clamp(8px, 5.2602739726px + 0.0054794521 * 100vw, 12px);
  font-weight: 700;
}

a.box.jumbo:after {
  font-size: 22px;
}

a.box.back:before {
  font-size: 16px;
  content: "\f104";
  padding-right: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a.box.back:after {
  display: none;
}

a.box.rev {
  padding: 0;
  color: #7FB550;
  background: none;
}

a.box.rev:visited {
  color: #7FB550;
}

a.box.white {
  color: #FFF;
}

a.box.white:visited {
  color: #FFF;
}

a.box.pdf:after {
  font-size: 18px;
  padding-left: 8px;
  content: "\f1c1";
}

a.box.right:after {
  content: "\f105";
}

a.box.down:after {
  content: "\f078";
}

a.box.up:after {
  content: "\f077";
}

a.box.loading:after {
  content: "\f110";
}

a.box:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #34592B;
  text-decoration: none !important;
  cursor: pointer;
}

/* Blue Box $secondary-color and $theme_color_4 background */
a.box.blue:hover,
.blue-box a.box:hover,
.card_theme_blue a.box:hover {
  background: #2B7086;
}

a.box.rev:hover {
  color: #143F55 !important;
  background: none;
  text-decoration: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  background: none;
}

a.box.white:hover {
  color: #FFF;
}

p + p.linkwrap {
  margin-top: -10px;
}

/*	--------------------------------------------------
	Misc
	-------------------------------------------------- */
/* Utility classes */
/* Clear Margins and padding */
.no-pad {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0;
}

/* Clear Child Margins */
.clear-top > *:first-child {
  margin-top: 0;
}

.clear-bottom > *:last-child {
  margin-bottom: 0;
}

.clear-both > *:first-child {
  margin-top: 0;
}

.clear-both > *:last-child {
  margin-bottom: 0;
}

.small-text {
  font-size: var(--step--1);
  line-height: var(--lh-step--1);
}

.white-text {
  color: #fff !important;
}
.white-text h1,
.white-text .h1,
.white-text h2,
.white-text .h2,
.white-text h3,
.white-text .h3,
.white-text h4,
.white-text .h4,
.white-text h5,
.white-text .h5,
.white-text h6,
.white-text .h6,
.white-text p,
.white-text ul,
.white-text a {
  color: #FFF !important;
}
.white-text a:not(a.box):not(a.alert-close) {
  color: #FFF;
  text-decoration: underline !important;
}
.white-text a:hover:not(a.box):not(a.alert-close),
.white-text a:visited:not(a.box):not(a.alert-close) {
  color: #FFF;
  text-decoration: underline !important;
  opacity: 0.6;
}
.white-text ul li::before {
  background-color: #FFF;
}

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

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.clearfloats {
  clear: both;
  line-height: 0px;
  height: 0px;
  font-size: 0px;
}

div[id*=gallery-] {
  margin: 20px 0 20px 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.two div[id*=gallery-] {
  grid-template-columns: 1fr 1fr;
}

.accordiancontent div[id*=gallery-] {
  margin: 30px 0 !important;
}

div[id*=gallery-] .gallery-item {
  margin: 0 !important;
}

.gallery-item {
  margin: 0 !important;
  width: 100% !important;
  padding: 0 !important;
}

.gallery br {
  display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
  div[id*=gallery-] {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
div[id*=gallery-] img {
  border: none !important;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

div[id*=gallery-] img:hover {
  opacity: 0.8;
}

img[class*=wp-image-] {
  margin-top: 0;
  margin-bottom: 0;
}

/* Images sizes */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin: 4px 30px 20px 0 !important;
  display: block;
}

.alignright {
  float: right;
  margin: 4px 0 20px 30px !important;
  display: block;
}

.widget {
  margin-bottom: 0;
  margin-top: 0;
}

.wp-caption {
  padding: 0;
  border: none;
}

@media handheld, only screen and (max-width: 767px) {
  .alignleft {
    max-width: 40% !important;
    height: auto;
  }
  .alignright {
    max-width: 40% !important;
    height: auto;
  }
  .main-content-inner img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .attachment-thumbnail {
    max-width: 100% !important;
    height: auto !important;
  }
}
.fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.fancybox-toolbar {
  right: auto !important;
  left: 0;
  top: 0;
}

/* Object Fit Image */
.object-fit-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.object-fit-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Base animation setup */
.has-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

/* Make visible when in viewport */
.has-animation.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Fade-in (default) */
.fade-in {
  transform: translateY(0);
}

/* Fade-up */
.fade-up {
  transform: translateY(40px);
}

/* Fade-left */
.fade-left {
  transform: translateX(-40px);
}

/* Fade-right */
.fade-right {
  transform: translateX(40px);
}

/*	--------------------------------------------------
   	Header
	-------------------------------------------------- */
body {
  min-height: 200vh;
  padding-top: 150px;
}
body.home {
  padding-top: 200px;
}
body body.scrolled {
  padding-top: 150px;
}
@media (max-width: 1400px) {
  body {
    padding-top: 150px !important;
  }
}
@media (max-width: 1070px) {
  body {
    padding-top: 100px !important;
  }
}

html:not([lang=en-US]) body {
  padding-top: 150px;
}

/* Header */
.site-header {
  margin: 0;
  padding: 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
body.admin-bar .site-header {
  top: 32px;
}

.site-header .wrap {
  position: static;
}

.site-header__pad {
  height: 100px;
  position: relative;
  transition-duration: 0.35s;
}

body.home .site-header__pad {
  height: 150px;
}

@media (max-width: 1400px) {
  body.home .site-header__pad {
    height: 100px;
  }
}
body.scrolled .site-header__pad,
html:not([lang=en-US]) .site-header__pad {
  height: 100px;
}

/* Site Branding */
.site-branding {
  width: 285px;
  height: 55px;
  position: absolute;
  bottom: 20px;
  left: 0;
  transition-duration: 0.35s;
}

body.home .site-branding {
  width: 503px;
  height: 98px;
}

@media (max-width: 1400px) {
  body.home .site-branding {
    width: 285px;
    height: 55px;
  }
}
body.scrolled .site-branding,
html:not([lang=en-US]) .site-branding {
  width: 285px;
  height: 55px;
}

.site-branding__site-title {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.site-branding__site-title a {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  text-indent: -4000px;
  background: url(images/logo.png) no-repeat;
  background-size: contain;
}

/* Mobile */
@media (max-width: 1280px) {
  .site-branding {
    width: 285px;
    height: 55px;
  }
}
@media (max-width: 767px) {
  .site-branding {
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* Alert */
a.alert {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  color: #D95935;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.35s ease-in-out;
}
@media (max-width: 1400px) {
  a.alert {
    margin-top: 10px;
  }
}
@media (max-width: 1070px) {
  a.alert {
    margin-top: 0;
    top: 20px;
    right: 50px;
  }
}
@media (max-width: 767px) {
  a.alert {
    display: none;
  }
}
a.alert i {
  padding-right: 8px;
}
a.alert:hover {
  color: #E88A4A;
  text-decoration: none;
  cursor: pointer;
}

body.scrolled a.alert {
  margin-top: 10px;
}

/* Tool */
.tool {
  height: 50px;
  background-color: #54B2C9;
}
@media (max-width: 1070px) {
  .tool {
    display: none;
  }
}

.mobile-menu-cover .tool {
  display: none;
  background-color: transparent;
  margin: 0 30px;
}

.tool-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tool-wrapper .tool-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tool-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}
.tool-menu li {
  padding: 0;
  margin: 0;
}
.tool-menu li a {
  display: block;
  font-size: 16px;
  line-height: 50px;
  padding: 0 10px;
  margin: 0;
  text-decoration: none;
  color: #FFF;
  font-weight: 600;
  transition-duration: 0.35s;
}
.tool-menu li a:hover {
  color: #143F55;
}

.mobile-menu-cover .tool-menu {
  display: none;
  margin: 10px 30px 0 30px;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu-cover .tool-menu li a {
  font-size: 18px;
  line-height: 30px;
  padding: 4px 0;
}
.mobile-menu-cover .tool-menu li a:hover {
  color: #43A3BA;
}

.tool-search-translate {
  display: flex;
  align-items: center;
}
.tool-search-translate a {
  font-size: 16px;
  line-height: 50px;
  padding: 0 10px;
  margin: 0;
  text-decoration: none;
  color: #FFF;
  font-weight: 600;
  transition-duration: 0.35s;
}
.tool-search-translate a i {
  padding-left: 8px;
}
.tool-search-translate.mobile a:hover {
  color: #43A3BA;
}
.tool-search-translate .translate-dropdown:hover a,
.tool-search-translate .search-dropdown:hover a {
  color: #143F55;
}
.tool-search-translate.mobile .translate-dropdown:hover a, .tool-search-translate.mobile .search-dropdown:hover a {
  color: #54B2C9;
}

.tool-search-translate-mobile-wrap {
  display: none;
  margin-top: 4px;
  margin-left: 20px;
}

/* Social */
.social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-title {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 50px;
  color: #FFF;
  font-weight: 400;
}
@media (max-width: 1230px) {
  .social-title {
    display: none;
  }
}

.social-feeds {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-feeds a {
  font-size: 18px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #FFF;
  text-decoration: none;
  font-weight: normal;
  transition-duration: 0.35s;
}

.social-feeds a:hover {
  color: #143F55;
}

.mobile-menu-cover .social-wrap {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-menu-cover .social-title {
  display: block;
}
.mobile-menu-cover .social-feeds {
  justify-content: center;
  gap: 20px;
}
.mobile-menu-cover .social-feeds a {
  font-size: 30px;
  line-height: 30px;
  color: #FFF;
}
.mobile-menu-cover .social-feeds a:hover {
  color: #43A3BA;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1999;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.popup-overlay:not(.hidden) {
  opacity: 1;
}

/* Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #D95935;
  border: 10px solid #FFF;
  max-width: 620px;
  min-height: 420px;
  width: 90%;
  z-index: 2000;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup.hidden {
  display: none;
}

.popup-content {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 50px 30px 30px 30px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.popup-content.image-pop {
  padding: 0;
  text-align: center;
}

.alert-close {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  position: absolute;
  color: #FFF;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  background: none;
  border: none;
}
.alert-close i {
  padding-right: 8px;
}
.alert-close:hover {
  color: #E88A4A !important;
  text-decoration: none;
  cursor: pointer;
}

.image-pop .alert-close {
  display: none;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #FFF;
  cursor: pointer;
}

.image-pop .popup-close {
  top: 0;
  right: 0;
  background: #FFF;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: #D95935;
}

.popup-close:hover {
  color: #E88A4A;
}

.popup-body a:hover {
  opacity: 1 !important;
}
.popup-body p.linkwrap {
  text-align: center;
}
.popup-body a.box.orange {
  background-color: #E88A4A;
}
.popup-body a.box.orange:hover {
  background-color: #D95935;
}

/*	--------------------------------------------------
   	Nav Bar - Desk
	-------------------------------------------------- */
.primary-navigation {
  position: absolute;
  bottom: 14px;
  right: 0;
}

.primary-navigation .wrap {
  display: flex;
  justify-content: flex-end;
}

.primary-menu {
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 9999;
}

.primary-menu .menu-item {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
}

.primary-menu .menu-item a {
  display: block;
  font-size: 22px;
  line-height: 36px;
  margin: 0;
  padding: 0 15px;
  text-decoration: none;
  color: #143F55;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  transition-duration: 0.35s;
}

body.home .primary-menu .menu-item a {
  font-size: 28px;
  line-height: 42px;
}

@media (max-width: 1400px) {
  body.home .primary-menu .menu-item a {
    font-size: 22px;
    line-height: 36px;
  }
}
body.scrolled .primary-menu .menu-item a,
html:not([lang=en-US]) .primary-menu .menu-item a {
  font-size: 22px;
  line-height: 36px;
}

.primary-menu .menu-item.donate a {
  color: #FFF;
  background-color: #7FB550;
  margin-left: 15px;
}

.site-header .primary-menu > .menu-item:first-child {
  display: none;
}

.primary-menu .menu-item.current_page_item > a,
.primary-menu .menu-item.current-menu-item > a,
.primary-menu .menu-item.current-post-ancestor > a,
.primary-menu .menu-item.current-category-ancestor > a,
.primary-menu .menu-item.current_page_ancestor > a {
  color: #43A3BA;
}

.primary-menu .menu-item:hover > a {
  color: #43A3BA;
}

.primary-menu .menu-item.donate:hover a,
.primary-menu .menu-item.donate.current_page_item > a,
.primary-menu .menu-item.donate.current-menu-item > a,
.primary-menu .menu-item.donate.current-post-ancestor > a,
.primary-menu .menu-item.donate.current-category-ancestor > a,
.primary-menu .menu-item.donate.current_page_ancestor > a {
  color: #FFF;
  background-color: #34592B;
}

.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 14px 0 0 0;
  z-index: 99999;
}

.site-header .primary-menu > .menu-item:last-child .sub-menu {
  left: auto;
  right: 0;
}

body.home .primary-menu .sub-menu {
  top: 42px;
}

@media (max-width: 1400px) {
  body.home .primary-menu .sub-menu {
    top: 36px;
  }
}
body.scrolled .primary-menu .sub-menu {
  top: 36px;
}

/*.menu-desk > ul > li:hover > ul { display:block; }*/
.primary-menu .sub-menu .menu-item {
  padding: 0;
  margin: 0;
}

.primary-menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  padding: 5px 15px;
  color: #FFF;
  background: #43A3BA;
  white-space: nowrap;
}

.primary-menu .sub-menu .menu-item:first-child a {
  padding-top: 14px;
}

.primary-menu .sub-menu .menu-item:last-child a {
  padding-bottom: 14px;
}

.primary-menu .menu-item .sub-menu .menu-item a:hover {
  color: #143F55;
}

.primary-menu .menu-item .sub-menu .menu-item.current-menu-item > a {
  color: #143F55;
}

.tool-search-translate {
  position: relative;
}
.tool-search-translate .translate-dropdown-content,
.tool-search-translate .search-dropdown-content {
  display: none;
}
.tool-search-translate .translate-dropdown:hover .translate-dropdown-content,
.tool-search-translate .search-dropdown:hover .search-dropdown-content {
  display: block;
}
.tool-search-translate .dropdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-search-translate .translate-dropdown {
  position: relative;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: #43A3BA;
  padding: 15px;
  z-index: 9999;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content.mobile {
  right: auto;
  left: 0;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content .dropdown-inner {
  display: flex;
  align-items: center;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content .dropdown-inner .translate-flags {
  display: flex;
  gap: 10px;
  margin-right: 10px;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content .dropdown-inner .translate-flags .flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  background-size: cover;
  cursor: pointer;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content .dropdown-inner .translate-flags .glink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  padding: 0;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content .dropdown-inner .translate-flags .glink img {
  display: block;
  width: 30px;
  height: 24px;
}
.tool-search-translate .translate-dropdown .translate-dropdown-content .dropdown-inner select {
  padding: 5px;
  font-size: 14px;
  border: none;
  outline: none;
  background: #FFF;
  height: 30px;
  width: 150px;
}
.tool-search-translate .search-dropdown {
  position: relative;
}
.tool-search-translate .search-dropdown .search-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: #43A3BA;
  padding: 15px;
  z-index: 9999;
}
.tool-search-translate .search-dropdown .search-dropdown-content.mobile {
  right: auto;
  left: 0;
}
.tool-search-translate .search-dropdown .search-dropdown-content form {
  display: flex;
  width: 200px;
}
.tool-search-translate .search-dropdown .search-dropdown-content form input {
  padding: 5px;
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  height: 30px;
}
.tool-search-translate .search-dropdown .search-dropdown-content form button {
  padding: 0;
  width: 50px;
  height: 30px;
  background: #7FB550;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-search-translate .search-dropdown .search-dropdown-content form button:hover {
  background: #6FA442;
}

html.translated-ltr .social-title {
  display: none;
}

@media (max-width: 1070px) {
  .primary-navigation {
    display: none;
  }
}
/*	--------------------------------------------------
   	Menu Mobile
	-------------------------------------------------- */
.mobile-hamburger {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 999999;
}

.mobile-hamburger__link {
  background: #143F55 url(images/mob.png) 0 0 no-repeat !important;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  padding: 0;
  text-indent: -4000px;
}

.mobile-hamburger__link.open {
  background: #143F55 url(images/mob.png) 0 -30px no-repeat !important;
}

.mobile-menu-cover {
  display: none;
  background: #143F55;
  color: #FFF;
  padding: 0 0 200px 0;
  clear: both;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  max-width: 340px;
  min-width: 340px;
  overflow: auto;
  z-index: 99999;
}

.mob-nav-container {
  margin: 0;
  padding: 0;
  display: none;
}

.mob-nav-menu {
  margin: 20px 30px 0 30px;
  padding: 0;
}

.mob-nav-menu .menu-item {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mob-nav-menu .menu-item a {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  line-height: 36px;
  padding: 8px 0;
  display: block;
  text-decoration: none;
  color: #FFF;
  margin: 0;
  font-weight: 600;
  font-style: normal;
  transition-duration: 0.25s;
}

.mob-nav-menu .menu-item a:hover {
  color: #54B2C9;
}

.mob-nav-menu .sub-menu {
  display: none;
  margin: 0 0 10px 30px;
  padding: 0;
  z-index: 99999;
  padding: 0;
}

.mob-nav-menu .sub-menu .menu-item a {
  font-size: 18px;
  line-height: 24px;
  padding: 8px 0;
  display: block;
  text-decoration: none;
  color: #54B2C9;
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

.mob-nav-menu .sub-menu .menu-item:first-child a {
  padding-top: 10px;
}

.mob-nav-menu .sub-menu .menu-item:last-child a {
  padding-bottom: 10px;
}

.mob-nav-menu .sub-menu .menu-item a:hover {
  color: #FFF;
}

@media (max-width: 1070px) {
  .mobile-hamburger {
    display: block;
    top: 22px;
    right: 20px;
  }
  .mobile-menu-cover {
    max-width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 660px) {
  .mobile-hamburger {
    top: 10px;
    right: 10px;
  }
  .mobile-menu-cover {
    max-width: 100%;
    min-width: 100%;
  }
}
/*	--------------------------------------------------
   	Home
	-------------------------------------------------- */
body.home .block_size_full:not(.home-header-block) {
  border-top: 10px solid #FFF;
}

/*	--------------------------------------------------
   	Content
	-------------------------------------------------- */
/*	--------------------------------------------------
   	Block Styles
	-------------------------------------------------- */
/* Block Text Width */
.block_text_width_narrow h1,
.block_text_width_narrow h2,
.block_text_width_narrow h3,
.block_text_width_narrow h4,
.block_text_width_narrow h5,
.block_text_width_narrow h6,
.block_text_width_narrow p,
.block_text_width_narrow ul {
  width: min(100%, 800px);
}

/* Block Intro Text */
.block_intro {
  font-size: var(--step-1);
  line-height: var(--lh-step-1);
}

.block_intro p {
  font-size: var(--step-1);
  line-height: var(--lh-step-1);
}

/* Block UL columns */
.block_ul_two ul {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 80px;
       column-gap: 80px;
}

.block_ul_three ul {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.block_ul_four ul {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.block_ul_two ul li,
.block_ul_three ul li,
.block_ul_four ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}

@media (max-width: 1200px) {
  .block_ul_four ul {
    -moz-columns: 3;
         columns: 3;
  }
}
@media (max-width: 1000px) {
  .block_ul_three ul,
.block_ul_four ul {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (max-width: 700px) {
  .block_ul_two ul,
.block_ul_three ul,
.block_ul_four ul {
    -moz-columns: 1;
         columns: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .block_ul_two ul li,
.block_ul_three ul li,
.block_ul_four ul li {
    -moz-column-break-inside: auto;
         break-inside: auto;
  }
}
/* Block Padding Before and After */
.block_pad_before_small {
  padding-top: 30px !important;
}

.block_pad_before_med {
  padding-top: 50px !important;
}

.block_pad_before_large {
  padding-top: 80px !important;
}

.block_pad_after_small {
  padding-bottom: 30px !important;
}

.block_pad_after_med {
  padding-bottom: 50px !important;
}

.block_pad_after_large {
  padding-bottom: 80px !important;
}

/* Block Margin Before and After */
.block_mar_before_small {
  margin-top: 30px !important;
}

.block_mar_before_med {
  margin-top: 50px !important;
}

.block_mar_before_large {
  margin-top: 80px !important;
}

.block_mar_after_small {
  margin-bottom: 30px !important;
}

.block_mar_after_med {
  margin-bottom: 50px !important;
}

.block_mar_after_large {
  margin-bottom: 80px !important;
}

/* Them Colors */
.block_theme_color_1,
.block_background_1 {
  background-color: #34592B;
}
.block_theme_color_1 a.box,
.block_background_1 a.box {
  background-color: #6FA442;
}
.block_theme_color_1 a.box:hover,
.block_background_1 a.box:hover {
  background-color: #63923b;
}

.block_theme_color_2,
.block_background_2 {
  background-color: #6FA442;
}
.block_theme_color_2 a.box,
.block_background_2 a.box {
  background-color: #7FB550;
}
.block_theme_color_2 a.box:hover,
.block_background_2 a.box:hover {
  background-color: #4d702f;
}

.block_theme_color_3,
.block_background_3 {
  background-color: #7FB550;
}
.block_theme_color_3 a.box,
.block_background_3 a.box {
  background-color: #5a8237;
}
.block_theme_color_3 a.box:hover,
.block_background_3 a.box:hover {
  background-color: #4d702f;
}

.block_theme_color_4,
.block_background_4 {
  background-color: #143F55;
}
.block_theme_color_4 a.box,
.block_background_4 a.box {
  background-color: #43A3BA;
}
.block_theme_color_4 a.box:hover,
.block_background_4 a.box:hover {
  background-color: #28616f;
}

.block_theme_color_5,
.block_background_5,
.block_background_dark {
  background-color: #43A3BA;
}
.block_theme_color_5 a.box,
.block_background_5 a.box,
.block_background_dark a.box {
  background-color: #2f7282;
}
.block_theme_color_5 a.box:hover,
.block_background_5 a.box:hover,
.block_background_dark a.box:hover {
  background-color: #28616f;
}
.block_theme_color_5.card-item a.box,
.block_background_5.card-item a.box,
.block_background_dark.card-item a.box {
  background-color: #54B2C9;
}
.block_theme_color_5.card-item a.box:hover,
.block_background_5.card-item a.box:hover,
.block_background_dark.card-item a.box:hover {
  background-color: #2c788b;
}

.block_theme_color_6,
.block_background_6 {
  background-color: #54B2C9;
}

.block_theme_color_7,
.block_background_7 {
  background-color: #D95935;
}

.block_theme_color_8,
.block_background_8 {
  background-color: #E88A4A;
}
.block_theme_color_8 a.box,
.block_background_8 a.box {
  background-color: #cc621a;
}
.block_theme_color_8 a.box:hover,
.block_background_8 a.box:hover {
  background-color: #b55717;
}

/* Block Backgrounds Light */
.block_background_light,
.block_background_dark,
.block_background_1,
.block_background_4 {
  padding-block: 50px;
  margin-block: 0 !important;
}
.block_background_light.highlight-box,
.block_background_dark.highlight-box,
.block_background_1.highlight-box,
.block_background_4.highlight-box {
  padding-block: 80px;
}
.block_background_light > *:first-child,
.block_background_light .inner_alignwide *:first-child,
.block_background_light .content-wrap *:first-child,
.block_background_dark > *:first-child,
.block_background_dark .inner_alignwide *:first-child,
.block_background_dark .content-wrap *:first-child,
.block_background_1 > *:first-child,
.block_background_1 .inner_alignwide *:first-child,
.block_background_1 .content-wrap *:first-child,
.block_background_4 > *:first-child,
.block_background_4 .inner_alignwide *:first-child,
.block_background_4 .content-wrap *:first-child {
  margin-top: 0;
}
.block_background_light > *:last-child,
.block_background_light .inner_alignwide *:last-child,
.block_background_light .content-wrap *:last-child,
.block_background_dark > *:last-child,
.block_background_dark .inner_alignwide *:last-child,
.block_background_dark .content-wrap *:last-child,
.block_background_1 > *:last-child,
.block_background_1 .inner_alignwide *:last-child,
.block_background_1 .content-wrap *:last-child,
.block_background_4 > *:last-child,
.block_background_4 .inner_alignwide *:last-child,
.block_background_4 .content-wrap *:last-child {
  margin-bottom: 0;
}
.block_background_light h1,
.block_background_light h2,
.block_background_light h3,
.block_background_light h4,
.block_background_light h5,
.block_background_light h6,
.block_background_light p,
.block_background_light ul,
.block_background_light li,
.block_background_light a,
.block_background_dark h1,
.block_background_dark h2,
.block_background_dark h3,
.block_background_dark h4,
.block_background_dark h5,
.block_background_dark h6,
.block_background_dark p,
.block_background_dark ul,
.block_background_dark li,
.block_background_dark a,
.block_background_1 h1,
.block_background_1 h2,
.block_background_1 h3,
.block_background_1 h4,
.block_background_1 h5,
.block_background_1 h6,
.block_background_1 p,
.block_background_1 ul,
.block_background_1 li,
.block_background_1 a,
.block_background_4 h1,
.block_background_4 h2,
.block_background_4 h3,
.block_background_4 h4,
.block_background_4 h5,
.block_background_4 h6,
.block_background_4 p,
.block_background_4 ul,
.block_background_4 li,
.block_background_4 a {
  color: #FFF;
}
.block_background_light a:not(a.box),
.block_background_dark a:not(a.box),
.block_background_1 a:not(a.box),
.block_background_4 a:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
}
.block_background_light a:hover:not(a.box),
.block_background_light a:visited:not(a.box),
.block_background_dark a:hover:not(a.box),
.block_background_dark a:visited:not(a.box),
.block_background_1 a:hover:not(a.box),
.block_background_1 a:visited:not(a.box),
.block_background_4 a:hover:not(a.box),
.block_background_4 a:visited:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
  opacity: 0.6;
}
.block_background_light li::before,
.block_background_dark li::before,
.block_background_1 li::before,
.block_background_4 li::before {
  background-color: #FFF !important; /* Use the same color as the text */
}

.block_background_light {
  background-color: #6FA442;
}

.block_background_dark {
  background-color: #43A3BA;
}

.block_background_1 {
  background-color: #34592B;
}

.block_background_4 {
  background-color: #143F55;
}

/* Block White Text */
.block-white-text,
.block_theme_color_1,
.block_theme_color_2,
.block_theme_color_3,
.block_theme_color_4,
.block_theme_color_5,
.block_theme_color_6,
.block_theme_color_7,
.block_theme_color_8 {
  color: #FFF !important;
}
.block-white-text h1,
.block-white-text h2,
.block-white-text h3,
.block-white-text h4,
.block-white-text h5,
.block-white-text h6,
.block-white-text .h1,
.block-white-text .h2,
.block-white-text .h3,
.block-white-text .h4,
.block-white-text .h5,
.block-white-text .h6,
.block-white-text p,
.block-white-text ul,
.block-white-text a,
.block_theme_color_1 h1,
.block_theme_color_1 h2,
.block_theme_color_1 h3,
.block_theme_color_1 h4,
.block_theme_color_1 h5,
.block_theme_color_1 h6,
.block_theme_color_1 .h1,
.block_theme_color_1 .h2,
.block_theme_color_1 .h3,
.block_theme_color_1 .h4,
.block_theme_color_1 .h5,
.block_theme_color_1 .h6,
.block_theme_color_1 p,
.block_theme_color_1 ul,
.block_theme_color_1 a,
.block_theme_color_2 h1,
.block_theme_color_2 h2,
.block_theme_color_2 h3,
.block_theme_color_2 h4,
.block_theme_color_2 h5,
.block_theme_color_2 h6,
.block_theme_color_2 .h1,
.block_theme_color_2 .h2,
.block_theme_color_2 .h3,
.block_theme_color_2 .h4,
.block_theme_color_2 .h5,
.block_theme_color_2 .h6,
.block_theme_color_2 p,
.block_theme_color_2 ul,
.block_theme_color_2 a,
.block_theme_color_3 h1,
.block_theme_color_3 h2,
.block_theme_color_3 h3,
.block_theme_color_3 h4,
.block_theme_color_3 h5,
.block_theme_color_3 h6,
.block_theme_color_3 .h1,
.block_theme_color_3 .h2,
.block_theme_color_3 .h3,
.block_theme_color_3 .h4,
.block_theme_color_3 .h5,
.block_theme_color_3 .h6,
.block_theme_color_3 p,
.block_theme_color_3 ul,
.block_theme_color_3 a,
.block_theme_color_4 h1,
.block_theme_color_4 h2,
.block_theme_color_4 h3,
.block_theme_color_4 h4,
.block_theme_color_4 h5,
.block_theme_color_4 h6,
.block_theme_color_4 .h1,
.block_theme_color_4 .h2,
.block_theme_color_4 .h3,
.block_theme_color_4 .h4,
.block_theme_color_4 .h5,
.block_theme_color_4 .h6,
.block_theme_color_4 p,
.block_theme_color_4 ul,
.block_theme_color_4 a,
.block_theme_color_5 h1,
.block_theme_color_5 h2,
.block_theme_color_5 h3,
.block_theme_color_5 h4,
.block_theme_color_5 h5,
.block_theme_color_5 h6,
.block_theme_color_5 .h1,
.block_theme_color_5 .h2,
.block_theme_color_5 .h3,
.block_theme_color_5 .h4,
.block_theme_color_5 .h5,
.block_theme_color_5 .h6,
.block_theme_color_5 p,
.block_theme_color_5 ul,
.block_theme_color_5 a,
.block_theme_color_6 h1,
.block_theme_color_6 h2,
.block_theme_color_6 h3,
.block_theme_color_6 h4,
.block_theme_color_6 h5,
.block_theme_color_6 h6,
.block_theme_color_6 .h1,
.block_theme_color_6 .h2,
.block_theme_color_6 .h3,
.block_theme_color_6 .h4,
.block_theme_color_6 .h5,
.block_theme_color_6 .h6,
.block_theme_color_6 p,
.block_theme_color_6 ul,
.block_theme_color_6 a,
.block_theme_color_7 h1,
.block_theme_color_7 h2,
.block_theme_color_7 h3,
.block_theme_color_7 h4,
.block_theme_color_7 h5,
.block_theme_color_7 h6,
.block_theme_color_7 .h1,
.block_theme_color_7 .h2,
.block_theme_color_7 .h3,
.block_theme_color_7 .h4,
.block_theme_color_7 .h5,
.block_theme_color_7 .h6,
.block_theme_color_7 p,
.block_theme_color_7 ul,
.block_theme_color_7 a,
.block_theme_color_8 h1,
.block_theme_color_8 h2,
.block_theme_color_8 h3,
.block_theme_color_8 h4,
.block_theme_color_8 h5,
.block_theme_color_8 h6,
.block_theme_color_8 .h1,
.block_theme_color_8 .h2,
.block_theme_color_8 .h3,
.block_theme_color_8 .h4,
.block_theme_color_8 .h5,
.block_theme_color_8 .h6,
.block_theme_color_8 p,
.block_theme_color_8 ul,
.block_theme_color_8 a {
  color: #FFF !important;
}
.block-white-text a:not(a.box),
.block_theme_color_1 a:not(a.box),
.block_theme_color_2 a:not(a.box),
.block_theme_color_3 a:not(a.box),
.block_theme_color_4 a:not(a.box),
.block_theme_color_5 a:not(a.box),
.block_theme_color_6 a:not(a.box),
.block_theme_color_7 a:not(a.box),
.block_theme_color_8 a:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
}
.block-white-text a:hover:not(a.box),
.block-white-text a:visited:not(a.box),
.block_theme_color_1 a:hover:not(a.box),
.block_theme_color_1 a:visited:not(a.box),
.block_theme_color_2 a:hover:not(a.box),
.block_theme_color_2 a:visited:not(a.box),
.block_theme_color_3 a:hover:not(a.box),
.block_theme_color_3 a:visited:not(a.box),
.block_theme_color_4 a:hover:not(a.box),
.block_theme_color_4 a:visited:not(a.box),
.block_theme_color_5 a:hover:not(a.box),
.block_theme_color_5 a:visited:not(a.box),
.block_theme_color_6 a:hover:not(a.box),
.block_theme_color_6 a:visited:not(a.box),
.block_theme_color_7 a:hover:not(a.box),
.block_theme_color_7 a:visited:not(a.box),
.block_theme_color_8 a:hover:not(a.box),
.block_theme_color_8 a:visited:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
  opacity: 0.6;
}
.block-white-text ul li,
.block_theme_color_1 ul li,
.block_theme_color_2 ul li,
.block_theme_color_3 ul li,
.block_theme_color_4 ul li,
.block_theme_color_5 ul li,
.block_theme_color_6 ul li,
.block_theme_color_7 ul li,
.block_theme_color_8 ul li {
  list-style: url(images/bullet_white.png);
}

/* Block Anchor */
.block_anchor-wrapper {
  position: relative;
}

.block_anchor {
  position: absolute;
  top: -180px;
  visibility: hidden;
}

/* Admin Note */
.admin-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 50px;
}
.admin-note p {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 20px;
  color: #CCC;
  margin: 0;
}

/*	--------------------------------------------------
   	Sidebar
	-------------------------------------------------- */
/*	--------------------------------------------------
   	Blog
	-------------------------------------------------- */
/* Blog Header */
.blog_header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 30px 0;
  gap: 30px;
}

@media (max-width: 767px) {
  .blog_header ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.category-dropdown {
  position: relative;
}
.category-dropdown .dropdown-toggle {
  background: none;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  padding: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.category-dropdown .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}
.category-dropdown .dropdown-toggle:hover {
  color: #43A3BA;
}
.category-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #43A3BA;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  min-width: 200px;
  z-index: 9999;
}
.category-dropdown .dropdown-menu li {
  margin: 0;
}
.category-dropdown .dropdown-menu li a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  padding: 5px 15px;
  color: #FFF;
  background: #43A3BA;
  white-space: nowrap;
}
.category-dropdown .dropdown-menu li a:hover {
  color: #143F55;
  font-weight: 600;
}
.category-dropdown .dropdown-menu li.active a {
  color: #fff;
  font-weight: 600;
}
.category-dropdown:hover .dropdown-menu {
  display: block;
}

.news-item h3 {
  margin: 10px 0;
}

.news-category {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}

.news-date {
  font-size: 14px !important;
  line-height: 20px !important;
}

.cdev_loadmore_wrap {
  text-align: center;
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.post-meta {
  color: #143F55;
}

/*	--------------------------------------------------
   	Events Calendar
	-------------------------------------------------- */
:root {
  --tec-color-accent-primary: #43A3BA !important;
  --tec-font-family-sans-serif: $font-stack-base;
  --tec-font-family-serif: $font-stack-headings;
  --tec-font-family-monospace: $font-stack-base;
  /*-- tec-color-border-secondary-month-grid: #F6EFDB; */
  --tec-color-border-secondary-month-grid: #efefef;
  --tec-color-background-primary-multiday: rgba(160, 49, 37,.24);
  --tec-color-background-primary-multiday-hover: rgba(160, 49, 37,.34);
  --tec-color-text-events-title: #7FB550;
  --tec-color-background-primary-multiday: #efefef;
  --tec-color-background-primary-multiday-hover: #dfdfdf;
  --tec-color-link-accent-hover: #34592B;
  --tec-color-link-accent: #7FB550;
}

h2.month-list-heading {
  margin-bottom: 30px;
}

.tribe-events-l-container {
  --tec-font-family-sans-serif: $font-stack-base;
}

.tribe-events-l-container {
  padding-bottom: 0 !important;
  padding-top: 30px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tribe-common .tribe-common-l-container,
.tribe-events-pg-template {
  --width--max: var(--width--content--wide);
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
  min-height: 500px !important;
  max-width: min(100% - var(--width--site-gutter) * 2, var(--width--max)) !important;
  padding: 0 !important;
}

.tribe-events-header__title {
  display: none !important;
}

.tribe-events-c-top-bar__datepicker-time {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  color: #143F55;
  font-weight: 700;
}

.tribe-events-calendar-month__calendar-event-title-link {
  display: block !important;
  color: #7FB550 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  border-color: transparent !important;
}

.tribe-events-calendar-month__calendar-event-title-link:hover {
  color: #34592B !important;
  text-decoration: none !important;
  border-bottom: none !important;
  border-color: transparent !important;
}

.tooltipster-base.tribe-events-tooltip-theme {
  max-width: 600px !important;
  padding: 30px !important;
}

.tribe-events-calendar-month__calendar-event-tooltip-title-link {
  display: block !important;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #143F55;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  border-color: transparent !important;
}

.tribe-events-c-subscribe-dropdown__button {
  background-color: #7FB550 !important;
  border: none !important;
  border-radius: 0 !important;
}
.tribe-events-c-subscribe-dropdown__button:hover {
  background-color: #34592B !important;
  border: none !important;
  border-radius: 0 !important;
}
.tribe-events-c-subscribe-dropdown__button .tribe-events-c-subscribe-dropdown__button-text {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  color: #FFF !important;
  outline: none !important;
  border: none !important;
}
.tribe-events-c-subscribe-dropdown__button .tribe-common-c-svgicon__svg-fill {
  color: #FFF !important;
}

.tribe-events .tribe-events-c-view-selector {
  width: auto !important;
}

.tribe-events-c-view-selector__cdev {
  margin-left: 30px !important;
  font-size: 18px !important;
  line-height: 26px !important;
}
.tribe-events-c-view-selector__cdev i {
  font-size: 20px;
}

.tribe-events-c-view-selector__button {
  padding: 0 !important;
  white-space: nowrap !important;
}
.tribe-events-c-view-selector__button:hover {
  opacity: 1 !important;
}
.tribe-events-c-view-selector__button:hover .tribe-events-c-view-selector__cdev {
  color: #43A3BA !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.tribe-events .tribe-events-c-view-selector__button:before {
  display: none !important;
}

.tribe-events-c-view-selector__content {
  background-color: #43A3BA !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item-icon {
  display: none !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item-link {
  padding: 5px 15px !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item:first-child a {
  padding-top: 14px !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item:last-child a {
  padding-bottom: 14px !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item-text {
  display: block;
  font-size: 18px !important;
  line-height: 26px !important;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  color: #FFF !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item {
  background-color: #43A3BA !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item:hover {
  background-color: #43A3BA !important;
}
.tribe-events-c-view-selector__content .tribe-events-c-view-selector__list-item:hover .tribe-events-c-view-selector__list-item-text {
  color: #143F55 !important;
}

.event-category-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  line-height: 26px !important;
}
.event-category-dropdown .fa-angle-down {
  font-size: 20px;
}
.event-category-dropdown:hover {
  color: #43A3BA;
}
.event-category-dropdown .event-category-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 38px;
  background-color: #43A3BA;
  min-width: 160px;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-category-dropdown .event-category-dropdown-menu li a {
  display: block;
  font-size: 18px !important;
  line-height: 26px !important;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  padding: 5px 15px;
  color: #FFF !important;
  white-space: nowrap;
}
.event-category-dropdown .event-category-dropdown-menu li a:hover {
  color: #143F55;
}
.event-category-dropdown .event-category-dropdown-menu li:first-child a {
  padding-top: 14px;
}
.event-category-dropdown .event-category-dropdown-menu li:last-child a {
  padding-bottom: 14px;
}
.event-category-dropdown.is-active .event-category-dropdown-menu {
  display: block;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1230px) {
  .events-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-item {
  color: #fff;
  overflow: hidden;
  display: flex;
  background-color: #5D8C3F;
}
@media (max-width: 1230px) {
  .event-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .event-item {
    flex-direction: row;
  }
}
@media (max-width: 580px) {
  .event-item {
    flex-direction: column;
  }
}
.event-item .card-image {
  flex: 0 0 225px;
  width: 225px;
}
@media (max-width: 1230px) {
  .event-item .card-image {
    width: 100%;
  }
}
.event-item .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-item .card-details {
  position: relative;
  padding: 20px 20px 65px 20px;
}
.event-item .card-details .date-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.event-item .card-details .date-bar .tribe-events-calendar-list__event-date-tag {
  display: flex;
  flex-direction: column;
  width: 60px;
  min-width: 60px;
  height: 60px;
  background-color: #487134;
}
.event-item .card-details .date-bar .tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-datetime {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60px;
  padding-top: 0 !important;
  text-align: center;
}
.event-item .card-details .date-bar .tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-datetime .tribe-events-calendar-list__event-date-tag-weekday {
  font-size: 11px;
  line-height: 20px;
  font-weight: 400;
  color: #FFF !important;
  text-transform: uppercase;
}
.event-item .card-details .date-bar .tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-datetime .tribe-events-calendar-list__event-date-tag-daynum {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: #FFF !important;
}
.event-item .card-details .date-bar .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-item .card-details .date-bar .tribe-events-calendar-list__event-datetime,
.event-item .card-details .date-bar .event-category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #FFF !important;
}
.event-item .card-details h3 {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-item .card-details a.box {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.tribe-events-calendar-list-nav {
  border-top: none !important;
}

.tribe-events-schedule {
  margin: 12px 0 30px 0 !important;
  padding: 0 !important;
  color: #143F55;
}
.tribe-events-schedule p,
.tribe-events-schedule span {
  font-size: 14px;
  line-height: 20px;
  color: #143F55;
  margin: 0;
}

.event-single-content {
  display: grid;
  grid-template-columns: 800px 1fr;
  gap: 50px;
}
@media (max-width: 1100px) {
  .event-single-content {
    grid-template-columns: 1fr;
  }
}

.tribe-events-event-meta:before,
.tribe-events-event-meta:after {
  border: none !important;
}

.tribe-events-meta-group {
  padding: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

.tribe-events-event-meta:before,
.tribe-events-event-meta ~ div:not(.tribe-events-event-meta, .event-tickets) {
  border: none !important;
}

.tribe-events-c-subscribe-dropdown__export-icon {
  display: none !important;
}

h2.tribe-events-single-section-title {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  margin: 0 0 12px 0 !important;
  text-transform: unset !important;
  font-size: 20px !important;
  line-height: 28px !important;
}

.tribe-events-single-section.tribe-events-event-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  width: 100% !important;
}
@media (max-width: 1100px) {
  .tribe-events-single-section.tribe-events-event-meta {
    flex-direction: row !important;
    gap: 30px !important;
  }
}

.tribe-events-event-meta dl {
  margin-top: 0 !important;
}

/*	--------------------------------------------------
   	Pager
	-------------------------------------------------- */
ul.pager {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#nav-below {
  margin: 30px 0 0 0;
}

ul.pager li {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

ul.pager a {
  display: inline-block;
  margin: 0;
  padding: 6px 10px;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 600 !important;
  position: relative;
  background: #54B2C9;
  transition-duration: 0.35s;
  border-radius: 0;
}

ul.pager a:visited {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
}

ul.pager a:after {
  font-size: 16px;
  content: "\f054";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

ul.pager a:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #2B7086;
  text-decoration: none !important;
}

ul.pager .previous a:before {
  font-size: 16px;
  content: "\f053";
  padding-right: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

ul.pager .previous a:after {
  display: none;
}

/* Mobile */
/*	--------------------------------------------------
   	Footer
	-------------------------------------------------- */
/* Newsletter */
.newsletter-wrapper {
  background: #54B2C9;
  padding: 50px 0;
  color: #FFF;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .newsletter-content {
    flex-direction: column;
    align-items: center;
  }
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 500px) {
  .newsletter-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.newsletter-left h2 {
  margin: 0;
}
.newsletter-left p {
  margin: 0;
}
.newsletter-left i {
  font-size: 65px;
  line-height: 65px;
  color: #143F55;
}

#gform_1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (max-width: 600px) {
  #gform_1 {
    flex-direction: column;
  }
}
#gform_1 .gform_fields {
  display: flex !important;
  align-items: center;
  gap: 20px !important;
}
@media (max-width: 600px) {
  #gform_1 .gform_fields {
    flex-direction: column;
    max-width: 100%;
  }
}
#gform_1 .gform_fields input {
  width: 125px;
  border: none;
  border-radius: 0;
  padding: 10px;
}
@media (max-width: 1024px) {
  #gform_1 .gform_fields input {
    width: 110px;
  }
}
@media (max-width: 600px) {
  #gform_1 .gform_fields input {
    width: 200px;
  }
}
#gform_1 .gform_fields .gfield input[type=text]:focus,
#gform_1 .gform_fields .gfield input[type=email]:focus {
  border: none !important;
}
#gform_1 .gform-footer {
  margin: 0 !important;
}
#gform_1 .gform-footer .gform_button:hover {
  background: #143F55 !important;
  color: #54B2C9 !important;
}
#gform_1 .gfield {
  position: relative;
}
#gform_1 .validation_message {
  position: absolute;
  top: 40px;
  left: 0;
  color: #143F55 !important;
}
#gform_1 .gform_ajax_spinner {
  display: none !important;
}

#gform_1_validation_container {
  display: none !important;
  visibility: hidden !important;
}

#gform_wrapper_1 .gform_ajax_spinner {
  display: none !important;
  visibility: hidden !important;
}

/* Footer */
.site-footer {
  background: #143F55;
  padding: 60px 0 100px 0;
  color: #FFF;
}

.site-footer h4,
.site-footer p {
  color: #FFF;
}

.site-footer a {
  color: #FFF;
  font-weight: 400;
}

.site-footer a:hover {
  color: #54B2C9;
}

.site-footer a:visited {
  color: #FFF;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}
.footer-content p {
  font-size: 16px;
  line-height: 24px;
}

.footer-logo {
  flex: 0 0 auto;
}

.footer-contact {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  margin-inline: auto;
  max-width: 800px;
  justify-content: center;
  align-items: flex-start;
}
.footer-contact p {
  white-space: nowrap;
}
.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-contact p {
  margin: 0 0 20px 0;
}

.footer-menus {
  display: flex;
  gap: 30px;
}

.footer-menu-left,
.footer-menu-right {
  display: flex;
  flex-direction: column;
}

.footer-menu-left ul,
.footer-menu-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu-left ul li,
.footer-menu-right ul li {
  margin: 0;
}
.footer-menu-left ul a,
.footer-menu-right ul a {
  display: block;
  color: #FFF;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
}
.footer-menu-left ul a:hover,
.footer-menu-right ul a:hover {
  color: #54B2C9;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .footer-logo {
    margin: 0 auto;
    text-align: center;
  }
  .footer-menus {
    justify-content: center;
  }
}
@media (max-width: 630px) {
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* Association logos */
.assoc {
  margin-bottom: 50px;
}
.assoc ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0;
}
@media (max-width: 600px) {
  .assoc ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.assoc ul li {
  list-style: none;
  margin: 0;
}
.assoc ul a {
  transition-duration: 0.25s;
}
.assoc ul a:hover {
  opacity: 0.6;
}
.assoc ul img {
  max-width: 100px;
  max-height: 80px;
  height: auto;
  width: auto;
}

/* Copyright */
.site-info {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.site-info p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 20px 0;
}

.site-info a {
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  text-decoration: none;
  padding-left: 5px;
}

.site-info a:hover {
  text-decoration: underline;
}

/*	--------------------------------------------------
   	cdeVision Blocks
	-------------------------------------------------- */
/* Accordion Block */
.accordion__wrap {
  margin-bottom: 50px;
}

.accordion__wrap + .accordion__wrap,
.wp-block-cdev-accordion + .wp-block-cdev-accordion {
  margin-top: -51px !important;
}

.accordion-wrap {
  border-top: 1px solid #dddddd;
}

.accordiontitle {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}
.accordiontitle .fa-solid {
  font-size: 16px;
  line-height: 30px;
  font-weight: 900;
  color: #777777;
  float: left;
  margin: 0;
}
.accordiontitle:hover .fa-solid {
  color: #7FB550;
}
.accordiontitle.open .closedicon {
  display: none;
}
.accordiontitle.open .openicon {
  display: block;
}
.accordiontitle .openicon {
  display: none;
}
.accordiontitle h3 {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  line-height: 30px;
  font-size: clamp(18px, 16.6301369863px + 0.002739726 * 100vw, 20px);
  color: #444;
  padding-left: 8px;
  margin: 0;
  font-weight: 400;
}
.accordiontitle h3.open:hover {
  cursor: pointer;
}
.accordiontitle:hover {
  cursor: pointer;
}
.accordiontitle:hover h3 {
  color: #7FB550;
}

.accordioncontent {
  display: none;
  padding: 20px 34px 1px 34px;
  margin: 0;
}
.accordioncontent ul {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .accordioncontent {
    padding: 20px 0 1px 0;
  }
}

/* Button Block */
.button-block {
  margin-bottom: 24px;
}
.button-block.center {
  text-align: center;
}
.button-block.left {
  text-align: left;
}
.button-block.right {
  text-align: right;
}

/* Button Bar Block */
.button_bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.button_bar.center {
  justify-content: center;
}

.button_bar.right {
  justify-content: flex-end;
}

/* Cards Block */
.cards-grid {
  display: grid;
  grid-gap: 30px;
  margin-block: 30px 50px;
  grid-template-rows: repeat(3, min-content);
}
.cards-grid.grid-2, .cards-grid.grid-3, .cards-grid.grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}
@media screen and (max-width: 1000px) {
  .cards-grid.grid-2.grid-2, .cards-grid.grid-3.grid-2, .cards-grid.grid-4.grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  }
}
@media screen and (max-width: 800px) {
  .cards-grid.grid-2.grid-3, .cards-grid.grid-3.grid-3, .cards-grid.grid-4.grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  }
}
.cards-grid.grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(min(460px, 100%), 1fr));
}
.cards-grid.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
}
.cards-grid .card-item {
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.cards-grid .card-item.card_theme_green {
  background-color: #5D8C3F;
}
.cards-grid .card-item.card_theme_blue {
  background-color: #34778E;
}
.cards-grid .card-item .card-image {
  grid-row: 1;
}
.cards-grid .card-item .card-image img {
  aspect-ratio: "6/4";
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.cards-grid .card-item .card-text {
  grid-row: 2;
  padding: 20px;
}
.cards-grid .card-item .card-button {
  grid-row: 3;
  padding: 0 20px 20px 20px;
}

/*	Hero Block - Image and Text  */
.color-box {
  display: flex;
  margin-block: 80px;
  border-radius: 0;
  overflow: hidden;
}
.color-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.color-box.block_size_breakout .image {
  flex: 0 0 min(385px, 50%);
}
.color-box.block_size_wide .image {
  flex: 0 0 min(285px, 50%);
}
.color-box.block_size_none .image {
  flex: 0 0 min(285px, 50%);
}
.color-box .text {
  display: flex;
  align-items: center;
  padding: 30px;
}
@media (max-width: 767px) {
  .color-box {
    flex-direction: column;
    width: 600px;
    max-width: calc(100% - 40px);
    margin-inline: auto;
  }
  .color-box .image {
    flex: 0 0 100% !important;
  }
  .color-box .text {
    padding: 20px;
  }
}

/*	One Column Block  */
.block_callout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1020px) {
  .block_callout {
    flex-direction: column;
    gap: 0;
  }
}
.block_callout .callout_content {
  flex: 0 0 390px;
  margin-inline: auto;
}
@media (max-width: 1020px) {
  .block_callout .callout_content {
    flex: 1 1 0;
  }
}
.block_callout .callout_content p {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: var(--step-3);
  line-height: var(--lh-step-3);
  font-weight: 400;
}
.block_callout .callout_content .callout_text_wrap {
  padding-block: 20px;
  border-top: 2px solid #CCCCCC;
  border-bottom: 2px solid #CCCCCC;
}
.block_callout .callout_content .callout_quote_wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-block: 20px;
  border-top: 2px solid #CCCCCC;
  border-bottom: 2px solid #CCCCCC;
}
.block_callout .callout_content .callout_quote_wrap p {
  margin-bottom: 10px;
}
.block_callout .callout_content .callout_quote_wrap p.quote-by {
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  font-style: italic;
  text-align: right;
  font-weight: normal;
  margin: 0;
}
.block_callout .callout_content .callout_quote_wrap .fa {
  color: #6FA442;
}
.block_callout .callout_image_wrap {
  padding-block-end: 30px;
}

/* Columns Block */
.columns-block .column_headline {
  margin-bottom: 20px;
}
.columns-block .columns .column_image {
  aspect-ratio: 600/400;
  margin-bottom: 20px !important;
  border-radius: 0;
  overflow: hidden;
}
.columns-block .columns .column_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.columns-block .columns .column_image + h2,
.columns-block .columns .column_image + h3,
.columns-block .columns .column_image + h4,
.columns-block .columns .column_image + h5,
.columns-block .columns .column_image + h6 {
  margin-top: 0;
}
.columns-block.block_size_breakout .columns.colnum-2 {
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}
@media screen and (max-width: 1080px) {
  .columns-block.block_size_breakout .columns.colnum-2 {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}
@media screen and (max-width: 900px) {
  .columns-block.block_size_breakout .columns.colnum-2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.columns-block.block_size_breakout .columns.colnum-4 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.columns-block.block_background_dark .columns, .columns-block.block_background_light .columns {
  row-gap: 24px;
}
.columns-block.block_background_dark .col *:first-child, .columns-block.block_background_light .col *:first-child {
  margin-top: 0;
}
.columns-block.block_background_dark .col *:last-child, .columns-block.block_background_light .col *:last-child {
  margin-bottom: 0;
}

/*	Find Pantry Block  */
.find-pantry-block {
  margin-block: 80px;
}

#wpsl-wrap li::before {
  display: none !important;
}

.wpsl-search {
  margin-bottom: 0 !important;
  padding: 12px;
  background: #143F55 !important;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
}

#wpsl-search-wrap label {
  white-space: nowrap !important;
  width: auto !important;
  color: #FFF;
}

#wpsl-search-wrap form {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px 20px;
}

.wpsl-select-wrap {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px 20px;
}

#wpsl-search-wrap .wpsl-input,
#wpsl-search-wrap .wpsl-select-wrap,
#wpsl-radius,
#wpsl-results {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

#wpsl-search-wrap .wpsl-input {
  gap: 10px;
}

#wpsl-search-wrap div {
  margin-right: 0;
  float: left;
}

#wpsl-search-input {
  outline: none !important;
  padding: 5px;
  height: 38px !important;
}

#wpsl-radius-dropdown {
  padding: 5px;
  height: 38px !important;
}

#wpsl-results-dropdown {
  padding: 5px;
  height: 38px !important;
}

#wpsl-checkbox-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: 100%;
}

#wpsl-checkbox-filter li {
  float: none !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: 100% !important;
}
#wpsl-checkbox-filter li label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 5px;
  margin: 0 !important;
  padding: 0 !important;
  white-space: wrap !important;
  width: auto !important;
  max-width: 100% !important;
}
#wpsl-checkbox-filter li label input {
  margin-top: 4px !important;
}

#wpsl-wrap {
  margin-bottom: 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 50px solid #143F55 !important;
}

@media (max-width: 675px) {
  #wpsl-wrap #wpsl-result-list li {
    padding-left: 20px !important;
  }
}
.wpsl-more-info-listings .block_size_wide,
.wpsl-more-info-listings .inner_alignwide {
  max-inline-size: 100%;
}
.wpsl-more-info-listings p {
  font-size: 16px;
  line-height: 24px;
}

table.wpsl-opening-hours {
  border: 1px solid #CCC !important;
  border-collapse: collapse;
  margin-bottom: 20px !important;
}
table.wpsl-opening-hours th, table.wpsl-opening-hours td {
  border: 1px solid #CCC !important;
  padding: 5px;
  font-size: 16px;
}
table.wpsl-opening-hours th {
  background-color: #CCC !important;
}

#wpsl-search-btn {
  border: none !important;
  border-radius: 0 !important;
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 600 !important;
  position: relative;
  background: #54B2C9;
  transition-duration: 0.35s;
}
#wpsl-search-btn:hover {
  background: #2B7086 !important;
}

/* Gallery Block */
.gallery-block {
  margin-block: 80px;
}
.gallery-block img {
  border-radius: 0;
  overflow: hidden;
}
.gallery-block .gallery_view_more {
  margin-top: 30px;
  text-align: center;
}

.gallery_custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px);
}
.gallery_custom a:nth-child(n+5) {
  display: none;
}

/*	Heading Block  */ /*	Heading Intro Block  */
.heading-intro-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-block-end: 50px;
}
@media (max-width: 900px) {
  .heading-intro-box {
    display: block;
  }
}
.heading-intro-box *:first-child {
  margin-top: 0;
}

/* Hero Block */
.hero-block .hero-block-inner {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
  background-attachment: fixed;
}
.hero-block .text {
  display: flex;
  align-items: center;
  min-height: 600px;
}
.hero-block .text.quote {
  min-height: 450px;
}
.hero-block .text.right {
  justify-content: flex-end;
}
.hero-block .text .hero-block-inner-wrap {
  padding: 30px;
  max-width: 600px;
  background-color: rgba(20, 63, 85, 0.85);
  border-radius: 0;
}
.hero-block .text .hero-block-inner-quote-wrap {
  max-width: 800px;
}
.hero-block .text .hero-block-inner-quote-wrap .quote-text {
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-block .text .hero-block-inner-quote-wrap .quote-by {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile */
@media (max-width: 767px) {
  .hero-block .text.right {
    justify-content: flex-start;
  }
  .hero-block .text .hero-block-inner-wrap {
    padding: 20px;
    max-width: 100%;
  }
}
/*	Highlight Box - Image, image grid, video and Text  */
.highlight-box {
  margin-block: 80px;
}
.highlight-box .highlight-box-wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: 900px) {
  .highlight-box .highlight-box-wrapper {
    flex-direction: column !important;
    max-width: 600px;
    margin-inline: auto;
  }
  .highlight-box .highlight-box-wrapper .media {
    flex: 0 0 100% !important;
  }
}
.highlight-box.right .highlight-box-wrapper {
  flex-direction: row-reverse;
}
.highlight-box .media {
  flex: 0 0 calc(50% - 15px);
}
.highlight-box img {
  height: auto;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.highlight-box .grid {
  --gap: 30px;
  --image-large: calc(67.5% - var(--gap)/2);
  --image-small: calc(32.5% - var(--gap)/2);
  display: grid;
  grid-template-columns: var(--image-large) var(--image-small);
  gap: var(--gap);
}
@media (max-width: 640px) {
  .highlight-box .grid {
    --gap: 20px;
  }
}
.highlight-box .grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.highlight-box .grid *:first-child {
  grid-row: span 2;
}
.highlight-box .text {
  display: flex;
  align-items: center;
}

/* Home Action Bar Block */
.action-cards-block {
  position: relative;
  background-color: #6FA442;
  padding-block: 50px;
  border-top: 10px solid #FFF;
}
.action-cards-block .cards-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media screen and (max-width: 1100px) {
  .action-cards-block .cards-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 600px) {
  .action-cards-block .cards-grid.grid-4 {
    grid-template-columns: 1fr !important;
  }
}
.action-cards-block h2 {
  text-align: center;
}
.action-cards-block .card-item.card_theme_green {
  background-color: rgba(52, 89, 43, 0.5);
}
.action-cards-block .inner_alignwide {
  position: relative;
  z-index: 20;
}
.action-cards-block .action-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  background-color: rgba(127, 181, 80, 0.5);
}
.action-cards-block .action-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: none;
}

/*	Home Discover Box  */
.home-discover-block {
  padding-block: 80px;
}

.home-discover-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 920px) {
  .home-discover-wrapper {
    flex-direction: column;
  }
}
.home-discover-wrapper .text-wrapper {
  flex: 0 0 390px;
}
@media (max-width: 920px) {
  .home-discover-wrapper .text-wrapper {
    flex: 0 0 auto;
    text-align: center;
  }
}
.home-discover-wrapper .stats-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 30px;
}
.home-discover-wrapper .stats-wrapper .stat {
  flex: 1 1 200px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.home-discover-wrapper .stats-wrapper .stat .stat-number {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 46px;
  line-height: 46px;
  font-weight: 700;
  color: #7FB550;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}
.home-discover-wrapper .stats-wrapper .stat .stat-number.visible {
  opacity: 1;
  transform: translateY(0);
}
.home-discover-wrapper .stats-wrapper .stat h3 {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 auto;
  max-width: 390px;
}
.home-discover-wrapper .stats-wrapper .stat p {
  font-size: 16px;
  line-height: 22px;
  margin: 0 auto;
  max-width: 390px;
}

.block-editor-block-list__block .stat-number {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Home header */
/* Stop Chrome Slick Flicker */
.slick-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.home-header {
  --home-header-height: 700px;
  position: relative;
  background-color: #143F55;
  height: var(--home-header-height);
}
@media (max-width: 1575px) {
  .home-header {
    --home-header-height: 500px;
  }
}
@media (max-width: 900px) {
  .home-header {
    --home-header-height: auto;
    min-height: 650px;
  }
}
.home-header .wrapper {
  height: var(--home-header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-header .wrapper.text-left {
  align-items: flex-start;
}
.home-header .wrapper.text-right {
  align-items: flex-end;
}
@media (max-width: 900px) {
  .home-header .wrapper {
    justify-content: flex-start;
    max-inline-size: 100% !important;
  }
  .home-header .wrapper.text-right {
    align-items: flex-start;
  }
}
.home-header .header-banner-text {
  position: relative;
  transition-delay: 0.5s;
  z-index: 20;
  max-width: 500px;
  padding: clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px);
  background-color: rgba(20, 63, 85, 0.85);
  border-radius: 0;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  transition-delay: 0.5s;
  opacity: 0;
}
.home-header .header-banner-text h2 {
  margin-bottom: 5px;
}
.home-header .header-banner-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.home-header.header-slideshow .placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 20;
}
.home-header.header-slideshow .banner_slideshow_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--home-header-height);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
@media (max-width: 900px) {
  .home-header.header-slideshow .banner_slideshow_wrapper {
    height: auto;
    min-height: 650px;
  }
}
.home-header.header-slideshow .banner_slideshow_wrapper:has(.slick-initialized) {
  opacity: 1;
}
.home-header.header-slideshow .home_slideshow {
  width: 100%;
  height: var(--home-header-height);
  z-index: 20;
  overflow: hidden;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .home-header.header-slideshow .home_slideshow {
    height: auto;
    min-height: 650px;
  }
}
.home-header.header-slideshow .home_slideshow .slide {
  position: relative;
  height: var(--home-header-height);
}
@media (max-width: 900px) {
  .home-header.header-slideshow .home_slideshow .slide {
    height: auto;
    min-height: 650px;
  }
}
.home-header.header-slideshow .home_slideshow .slide img.image-full-width {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 10;
}
@media (max-width: 900px) {
  .home-header.header-slideshow .home_slideshow .slide img.image-full-width {
    position: static;
    height: 250px;
  }
}
.home-header.header-slideshow .home_slideshow .slide .image-text-split {
  display: grid;
  grid-template-columns: minmax(25px, 1fr) minmax(460px, 1110px) 460px minmax(25px, 1fr);
  grid-template-areas: "image image text overflow";
  height: 100%;
}
.home-header.header-slideshow .home_slideshow .slide .image-text-split.text-left {
  grid-template-columns: minmax(25px, 1fr) 460px minmax(460px, 1110px) minmax(25px, 1fr);
  grid-template-areas: "overflow text image image";
}
@media (max-width: 1400px) {
  .home-header.header-slideshow .home_slideshow .slide .image-text-split {
    grid-template-columns: 1fr minmax(350px, 30%);
    grid-template-areas: "image text";
  }
  .home-header.header-slideshow .home_slideshow .slide .image-text-split.text-left {
    grid-template-columns: minmax(350px, 30%) 1fr;
    grid-template-areas: "text image";
  }
}
@media (max-width: 900px) {
  .home-header.header-slideshow .home_slideshow .slide .image-text-split {
    display: block;
  }
  .home-header.header-slideshow .home_slideshow .slide .image-text-split .header-banner-text {
    max-width: 100%;
  }
}
.home-header.header-slideshow .home_slideshow .slide .image-text-split .image {
  grid-area: image;
}
@media (max-width: 900px) {
  .home-header.header-slideshow .home_slideshow .slide .image-text-split .image {
    height: 250px;
  }
}
.home-header.header-slideshow .home_slideshow .slide .image-text-split .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.home-header.header-slideshow .home_slideshow .slide .image-text-split.text-left .image img {
  -o-object-position: center center;
     object-position: center center;
}
.home-header.header-slideshow .home_slideshow .slide .image-text-split .image-text-split-wrapper {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.home-header.header-slideshow .home_slideshow .slick-prev,
.home-header.header-slideshow .home_slideshow .slick-next {
  z-index: 1;
}
.home-header.header-slideshow .home_slideshow .slick-prev:before,
.home-header.header-slideshow .home_slideshow .slick-next:before {
  transition-duration: 0.25s;
}
.home-header.header-slideshow .home_slideshow .slick-prev:hover:before,
.home-header.header-slideshow .home_slideshow .slick-next:hover:before {
  opacity: 0.8;
}
.home-header.header-slideshow .home_slideshow .slick-prev {
  left: 10px;
}
.home-header.header-slideshow .home_slideshow .slick-next {
  right: 10px;
}
.home-header.header-slideshow .home_slideshow .slick-prev:before, .home-header.header-slideshow .home_slideshow .slick-next:before {
  font-size: 50px;
  line-height: 50px;
}
.home-header.header-slideshow .home_slideshow .slick-prev:hover:before,
.home-header.header-slideshow .home_slideshow .slick-next:hover:before {
  color: #43A3BA;
}
.home-header.header-slideshow .home_slideshow .slick-dots {
  margin: 0 !important;
  padding: 0 !important;
  bottom: 10px !important;
}
.home-header.header-slideshow .home_slideshow .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px !important;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.home-header.header-slideshow .home_slideshow .slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
}
.home-header.header-slideshow .home_slideshow .slick-dots li button:before {
  line-height: 20px;
  width: 20px;
  height: 20px;
  content: "";
  opacity: 1;
  background-color: #43A3BA;
}
.home-header.header-slideshow .home_slideshow .slick-dots li.slick-active button:before {
  opacity: 1 !important;
  background-color: #7FB550 !important;
}

/*	Home News Box  */
.home-news-block {
  padding-block: 50px;
  background-color: #54B2C9;
}
.home-news-block .more-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .home-news-block .more-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.home-news-block .more-header h3 {
  margin: 0;
}
.home-news-block .cards-grid {
  margin-block: 20px 0;
  grid-template-rows: repeat(3, min-content);
}

body.home .home-news-block,
body.is-home-editor .home-news-block {
  border-top: 10px solid #FFF;
}

/*	Home Events Box  */
.home-events-block {
  padding-block: 50px;
  background-color: #7FB550;
}
.home-events-block .more-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .home-events-block .more-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.home-events-block .more-header h3 {
  margin: 0;
}

body.home .home-events-block,
body.is-home-editor .home-events-block {
  border-top: 10px solid #FFF;
}

/* Video Block */
.image-block {
  margin-block: 50px;
}
.image-block img {
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .image-block img {
    aspect-ratio: 16/9;
    height: auto;
    -o-object-position: center center;
       object-position: center center;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* Logo Grid Block */
.logo-grid-block {
  margin-block: 50px;
}

.logo-grid-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 920px) {
  .logo-grid-wrapper {
    flex-direction: column;
  }
}
.logo-grid-wrapper .text-wrapper {
  flex: 0 0 390px;
}
@media (max-width: 920px) {
  .logo-grid-wrapper .text-wrapper {
    flex: 0 0 auto;
    text-align: center;
  }
}
.logo-grid-wrapper .logo_grid,
.logo-grid-wrapper .logo-grid-placeholder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
  max-width: 700px;
  margin-inline: auto;
}
@media (max-width: 920px) {
  .logo-grid-wrapper .logo_grid,
.logo-grid-wrapper .logo-grid-placeholder {
    gap: 30px;
  }
}
.logo-grid-wrapper .logo_grid img,
.logo-grid-wrapper .logo-grid-placeholder img {
  max-width: 200px;
  max-height: 100px;
  width: auto;
  height: auto;
}

/* Page header */
.page-header {
  position: relative;
  background-color: #143F55;
  margin-bottom: 60px;
}
.page-header .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 200px;
  z-index: 30;
}
@media (max-width: 767px) {
  .page-header .wrapper {
    height: 150px;
  }
}
.page-header .header-banner-text {
  transition-delay: 0.5s;
}
.page-header .header-banner-text p {
  font-size: var(--step-1);
  line-height: var(--lh-step-1);
}
.page-header.header-banner .header-banner-text {
  max-width: 480px;
  padding: clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px);
  background-color: rgba(20, 63, 85, 0.85);
  border-radius: 0;
}
.page-header.header-banner .header-banner-text.show {
  opacity: 1;
  transform: translateY(0);
}
.page-header.header-banner-jumbo .wrapper, .page-header.header-video .wrapper, .page-header.header-slideshow .wrapper {
  height: 600px;
}
@media (max-width: 767px) {
  .page-header.header-banner-jumbo .wrapper, .page-header.header-video .wrapper, .page-header.header-slideshow .wrapper {
    height: 400px;
  }
}
.page-header.header-banner-jumbo .header-banner-text, .page-header.header-video .header-banner-text, .page-header.header-slideshow .header-banner-text {
  max-width: 480px;
  padding: clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px);
  background-color: rgba(20, 63, 85, 0.85);
  border-radius: 0;
}
.page-header.header-banner-jumbo .header-banner-text.show, .page-header.header-video .header-banner-text.show, .page-header.header-slideshow .header-banner-text.show {
  opacity: 1;
  transform: translateY(0);
}
.page-header.header-banner-jumbo .wrapper {
  height: 500px;
}
@media (max-width: 767px) {
  .page-header.header-banner-jumbo .wrapper {
    height: 400px;
  }
}
.page-header.header-video:has(video) .header-banner-text, .page-header.header-slideshow:has(.banner_slideshow_wrapper) .header-banner-text {
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  transition-delay: 0.5s;
  opacity: 0;
}
.page-header.header-video:has(video) .header-banner-text.show, .page-header.header-slideshow:has(.banner_slideshow_wrapper) .header-banner-text.show {
  opacity: 1;
  transform: translateY(0);
}
.page-header.header-banner .banner-image, .page-header.header-banner-jumbo .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}
.page-header.header-video .header-banner-text {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.page-header.header-video video,
.page-header.header-video .placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 20;
}
.page-header.header-video video {
  display: none;
}
.page-header.header-video .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  z-index: 10;
}
.page-header.header-slideshow .placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 20;
}
.page-header.header-slideshow .banner_slideshow_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .page-header.header-slideshow .banner_slideshow_wrapper {
    height: 400px;
  }
}
.page-header.header-slideshow .banner_slideshow_wrapper:has(.slick-initialized) {
  opacity: 1;
}
.page-header.header-slideshow .banner_slideshow {
  width: 100%;
  height: 600px;
  z-index: 20;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-header.header-slideshow .banner_slideshow {
    height: 400px;
  }
}
.page-header.header-slideshow .banner_slideshow .slide {
  height: 600px;
}
@media (max-width: 767px) {
  .page-header.header-slideshow .banner_slideshow .slide {
    height: 400px;
  }
}
.page-header.header-slideshow .banner_slideshow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-header.header-slideshow .banner_slideshow .slick-prev,
.page-header.header-slideshow .banner_slideshow .slick-next {
  z-index: 1;
}
.page-header.header-slideshow .banner_slideshow .slick-prev:before,
.page-header.header-slideshow .banner_slideshow .slick-next:before {
  transition-duration: 0.25s;
}
.page-header.header-slideshow .banner_slideshow .slick-prev:hover:before,
.page-header.header-slideshow .banner_slideshow .slick-next:hover:before {
  opacity: 0.8;
}
.page-header.header-slideshow .banner_slideshow .slick-prev {
  left: 20px;
}
.page-header.header-slideshow .banner_slideshow .slick-next {
  right: 20px;
}

.page-header-block + .block_size_full,
.page-header-block + .block_anchor-wrapper + .block_size_full,
.wp-block-cdev-page-header + *:has(.block_size_full) {
  margin-top: -60px !important;
}

/* PDF Grid Block */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px) clamp(20px, 13.1506849315px + 0.0136986301 * 100vw, 30px);
  margin-bottom: 30px;
}

a.pdficon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  line-height: 1.4;
}
a.pdficon i {
  font-size: clamp(30px, 23.1506849315px + 0.0136986301 * 100vw, 40px);
}

/* Quote Block */
.quote-block {
  margin-block: 80px;
}
.quote-block img {
  border-radius: 0;
  overflow: hidden;
}
.quote-block .quote-text {
  text-align: center;
}
.quote-block .quote-text .text p {
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--lh-step-1);
  line-height: var(--lh-step-2);
  font-weight: 400;
  text-align: center;
  margin: 0 0 20px 0;
}
.quote-block .quote-text .fa {
  color: #6FA442;
  padding-right: 10px;
}
.quote-block p.by {
  font-size: var(--step-1);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

.block_size_none .quote-text-wrap,
.block_size_wide .quote-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.block_size_breakout .quote-text-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}
.block_size_breakout .quote-text-wrap img {
  min-width: 200px;
  height: auto;
}
.block_size_breakout .quote-text-wrap .quote-text {
  text-align: center;
  margin-bottom: 10px;
}
.block_size_breakout .quote-text-wrap .quote-text p {
  text-align: left;
}
.block_size_breakout .quote-text-wrap p.by {
  text-align: left;
}

/* Spacer Block */
.spacer-block.spacer-small {
  height: 30px;
}
.spacer-block.spacer-medium {
  height: 50px;
}
.spacer-block.spacer-large {
  height: 80px;
}
.spacer-block.spacer-xlarge {
  height: 100px;
}

.block-editor-block-list__block .spacer-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-editor-block-list__block .spacer-block:before {
  content: "Spacer Block (admin note)";
  display: block;
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 20px;
  color: #CCC;
}

/*	Table Block  */
.wpdatatables-block {
  margin-bottom: 50px;
}

.wpDataTable,
.wpDataTables {
  width: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.wpDataTable ::-webkit-scrollbar,
.wpDataTables ::-webkit-scrollbar {
  display: none;
}

.wpdatatables-placeholder {
  text-align: center;
  margin-bottom: 50px;
}
.wpdatatables-placeholder img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 10px auto;
}
.wpdatatables-placeholder p {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 20px;
  color: #CCC;
  text-align: center;
  margin: 0;
}

/* Video Block */
.video-block {
  margin-block: 100px;
}

.video-block.block_background_light,
.video-block.block_background_dark {
  max-inline-size: none;
  padding-block: 80px;
  margin-block: 0;
}
.video-block.block_background_light .video-wrapper,
.video-block.block_background_dark .video-wrapper {
  --width--max: var(--width--content);
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
}

.video-wrapper {
  border-radius: 0;
  overflow: hidden;
}
.video-wrapper .video {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
}
.video-wrapper .video > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*	--------------------------------------------------
   	Form - Gravity Forms (labels inside)
	-------------------------------------------------- */
/* Theme */
.gform-theme--api,
.gform-theme--foundation {
  --gf-form-gap-y: 16px !important;
}

.gform-theme--foundation .gform_footer,
.gform-theme--foundation .gform_page_footer {
  margin-block-start: 20px !important;
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 16px !important;
  grid-row-gap: 16px !important;
}

.gform_wrapper h3 {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 26px !important;
  font-weight: 700 !important;
  margin: 10px 0 -10px 0 !important;
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  margin: 0 !important;
  padding: 10px !important;
  border: 1px solid #CCCCCC !important;
}

.gform_wrapper.gravity-theme textarea.textarea {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  height: 120px !important;
  display: block !important;
  margin: 0 !important;
}

/* Address */
.gform_wrapper.gravity-theme .ginput_container_address {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span.address_line_1 {
  margin-bottom: 16px !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span.address_city {
  flex: 0 0 40% !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span.address_state {
  flex: 0 0 calc(40% - 16px) !important;
  margin-left: 16px !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span.address_zip {
  flex: 0 0 calc(20% - 16px) !important;
  margin-left: 16px !important;
}

/* Submit */
.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper .gform_footer input[type=submit] {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  font-family: "Libre Franklin", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 24px !important;
  text-align: center !important;
  text-transform: none !important;
  font-size: 16px !important;
  line-height: 24px !important;
  margin-top: 20px;
  margin-bottom: 0 !important;
  width: auto !important;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 700 !important;
  position: relative;
  background: #143F55 !important;
  transition-duration: 0.25s;
  border-radius: 0 !important;
  border: none !important;
  white-space: nowrap !important;
  -webkit-appearance: none;
}

.gform_wrapper .gform_footer input[type=submit]:hover {
  background: #43A3BA !important;
  cursor: pointer !important;
}

.gform_wrapper .gform_footer input[type=submit]:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Error */
h2.gform_submission_error {
  text-transform: none;
}

p.gform_required_legend {
  display: none;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  background: #fff9f9;
  border: 1.5px solid #c02b0a;
  border-radius: 5px;
  box-shadow: none !important;
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 15px !important;
  position: relative;
  width: 100%;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
  background: transparent !important;
  border: none !important;
  font-size: 13px !important;
  margin-top: 8px;
  padding: 0 !important;
}

/* Placeholder color */
.gform_wrapper .gform_fields .gfield input::-webkit-input-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder,
.ginput_container_select select:first-child {
  color: #777777;
}

/* Focus color */
.gfield input[type=text]:focus,
.gfield input[type=email]:focus,
.gfield input[type=tel]:focus,
.gfield input[type=url]:focus,
.gfield input[type=number]:focus,
.gfield input[type=password]:focus,
.gfield select:focus,
.gfield textarea:focus {
  border: 1px solid #777 !important;
  border-radius: 0 !important;
  padding: 10px !important;
}

/* Focus visible */
.gfield :focus-visible {
  outline: none !important;
}

.gform_ajax_spinner {
  margin: 5px 0 0 20px !important;
  width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
}

/*	--------------------------------------------------
	Print
	-------------------------------------------------- */
.showprint {
  display: none;
}

@media print {
  body {
    padding: 20px !important;
  }
  .container {
    padding: 0;
    margin: 0;
  }
  .showprint {
    display: block;
  }
  .hideprint {
    display: none;
  }
  .printlogo {
    margin: 15px 0;
  }
  .header-pad {
    display: none;
  }
  .has-animation {
    display: block !important;
    opacity: 1 !important;
  }
  .header-banner-text {
    color: #000 !important;
  }
  .header-banner-text h1,
.header-banner-text .h1,
.header-banner-text p {
    color: #000 !important;
  }
  table th,
.wpDataTable th.wpdt-cell {
    border-bottom: 2px solid #000 !important;
    color: #000 !important;
    font-weight: 700 !important;
  }
  .white-text,
.block_background_light,
.block_background_dark,
.block_background_1,
.block_background_4,
.block_theme_color_8,
.site-footer {
    color: #000 !important;
  }
  .white-text h1,
.white-text .h1,
.white-text h2,
.white-text .h2,
.white-text h3,
.white-text .h3,
.white-text h4,
.white-text .h4,
.white-text h5,
.white-text .h5,
.white-text h6,
.white-text .h6,
.white-text p,
.white-text ul,
.white-text a,
.block_background_light h1,
.block_background_light .h1,
.block_background_light h2,
.block_background_light .h2,
.block_background_light h3,
.block_background_light .h3,
.block_background_light h4,
.block_background_light .h4,
.block_background_light h5,
.block_background_light .h5,
.block_background_light h6,
.block_background_light .h6,
.block_background_light p,
.block_background_light ul,
.block_background_light a,
.block_background_dark h1,
.block_background_dark .h1,
.block_background_dark h2,
.block_background_dark .h2,
.block_background_dark h3,
.block_background_dark .h3,
.block_background_dark h4,
.block_background_dark .h4,
.block_background_dark h5,
.block_background_dark .h5,
.block_background_dark h6,
.block_background_dark .h6,
.block_background_dark p,
.block_background_dark ul,
.block_background_dark a,
.block_background_1 h1,
.block_background_1 .h1,
.block_background_1 h2,
.block_background_1 .h2,
.block_background_1 h3,
.block_background_1 .h3,
.block_background_1 h4,
.block_background_1 .h4,
.block_background_1 h5,
.block_background_1 .h5,
.block_background_1 h6,
.block_background_1 .h6,
.block_background_1 p,
.block_background_1 ul,
.block_background_1 a,
.block_background_4 h1,
.block_background_4 .h1,
.block_background_4 h2,
.block_background_4 .h2,
.block_background_4 h3,
.block_background_4 .h3,
.block_background_4 h4,
.block_background_4 .h4,
.block_background_4 h5,
.block_background_4 .h5,
.block_background_4 h6,
.block_background_4 .h6,
.block_background_4 p,
.block_background_4 ul,
.block_background_4 a,
.block_theme_color_8 h1,
.block_theme_color_8 .h1,
.block_theme_color_8 h2,
.block_theme_color_8 .h2,
.block_theme_color_8 h3,
.block_theme_color_8 .h3,
.block_theme_color_8 h4,
.block_theme_color_8 .h4,
.block_theme_color_8 h5,
.block_theme_color_8 .h5,
.block_theme_color_8 h6,
.block_theme_color_8 .h6,
.block_theme_color_8 p,
.block_theme_color_8 ul,
.block_theme_color_8 a,
.site-footer h1,
.site-footer .h1,
.site-footer h2,
.site-footer .h2,
.site-footer h3,
.site-footer .h3,
.site-footer h4,
.site-footer .h4,
.site-footer h5,
.site-footer .h5,
.site-footer h6,
.site-footer .h6,
.site-footer p,
.site-footer ul,
.site-footer a {
    color: #000 !important;
  }
  .white-text a:not(a.box):not(a.alert-close),
.block_background_light a:not(a.box):not(a.alert-close),
.block_background_dark a:not(a.box):not(a.alert-close),
.block_background_1 a:not(a.box):not(a.alert-close),
.block_background_4 a:not(a.box):not(a.alert-close),
.block_theme_color_8 a:not(a.box):not(a.alert-close),
.site-footer a:not(a.box):not(a.alert-close) {
    color: #000;
    text-decoration: underline !important;
  }
  .white-text a:hover:not(a.box):not(a.alert-close),
.white-text a:visited:not(a.box):not(a.alert-close),
.block_background_light a:hover:not(a.box):not(a.alert-close),
.block_background_light a:visited:not(a.box):not(a.alert-close),
.block_background_dark a:hover:not(a.box):not(a.alert-close),
.block_background_dark a:visited:not(a.box):not(a.alert-close),
.block_background_1 a:hover:not(a.box):not(a.alert-close),
.block_background_1 a:visited:not(a.box):not(a.alert-close),
.block_background_4 a:hover:not(a.box):not(a.alert-close),
.block_background_4 a:visited:not(a.box):not(a.alert-close),
.block_theme_color_8 a:hover:not(a.box):not(a.alert-close),
.block_theme_color_8 a:visited:not(a.box):not(a.alert-close),
.site-footer a:hover:not(a.box):not(a.alert-close),
.site-footer a:visited:not(a.box):not(a.alert-close) {
    color: #000;
    text-decoration: underline !important;
    opacity: 1;
  }
  .white-text ul li,
.block_background_light ul li,
.block_background_dark ul li,
.block_background_1 ul li,
.block_background_4 ul li,
.block_theme_color_8 ul li,
.site-footer ul li {
    list-style: url(images/bullet.png);
  }
}