@charset "UTF-8";
/*
Theme Name: RevitalLine - Mestek
Theme URI: http://cdevision.com/
Author: cdeVision
Author URI: http://cdevision.com/
Description: Custom theme for RevitalLine - Mestek
Version: 7.2
License: No copy or resale
License URI: http://cdevision.com/
Text Domain: RevitalLine - Mestek
Tags: 
*/
/*
AFTER SETTING UP VARIABLES FOR A NEW PROJECT:
Copy the prompt below into Copilot Chat to update the AI doc files:

---
Read sass/_variables.scss, style.css (theme header), and gulpfile.js (proxy URL).
Then update AI_PROJECT_OVERVIEW.md:
- Theme name (title + description)
- All color variables and descriptions
- Font families, weights, and base colors
- Fluid typography step range
- Proxy URL
- Remove the TODO placeholder note if present
Also update the theme name/description in AGENTS.md.
---

*/
/* @link https://utopia.fyi/type/calculator?c=600,16,1.125,1230,18,1.1504,8,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.7901rem, 0.733rem + 0.1522vw, 0.8501rem);
  --step--1: clamp(0.8889rem, 0.8041rem + 0.2261vw, 0.9779rem);
  --step-0: clamp(1rem, 0.881rem + 0.3175vw, 1.125rem);
  --step-1: clamp(1.125rem, 0.9639rem + 0.4297vw, 1.2942rem);
  --step-2: clamp(1.2656rem, 1.053rem + 0.5669vw, 1.4888rem);
  --step-3: clamp(1.4238rem, 1.1486rem + 0.7338vw, 1.7128rem);
  --step-4: clamp(1.6018rem, 1.2508rem + 0.936vw, 1.9704rem);
  --step-5: clamp(1.802rem, 1.3595rem + 1.1801vw, 2.2667rem);
  --step-6: clamp(2.0273rem, 1.4746rem + 1.4739vw, 2.6076rem);
  --step-7: clamp(2.2807rem, 1.5958rem + 1.8263vw, 2.9998rem);
  --step-8: clamp(2.5658rem, 1.7227rem + 2.2481vw, 3.451rem);
}

: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);
  --lh-step-7: calc(var(--step-7) * 1.2);
  --lh-step-8: calc(var(--step-8) * 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 {
  -webkit-box-sizing: border-box;
          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 {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !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: #3A3A3A;
  font-family: "acumin-pro", 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;
}

.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_full,
.inner_alignfull {
  max-inline-size: none;
}

.full_inner_alignwide {
  --width--max: var(--width--content--wide);
  margin-inline: auto;
  max-inline-size: min(100%, var(--width--max));
}

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

/* Last block if full width no margin bottom */
.wp-block-post-content > .block_size_full:last-child,
.block-editor-writing-flow > .block_size_full:last-child {
  margin-bottom: 0 !important;
}

/* Columns */
.columns {
  --grid-max-col-count: 2;
  --grid-min-col-size: 200px;
  --grid-gap: 30px;
  /* calculations, do not touch */
  --grid-col-size-calc: calc(
    (100% - var(--grid-gap) * var(--grid-max-col-count)) /
      var(--grid-max-col-count)
  );
  --grid-col-min-size-calc: min(
    100%,
    max(var(--grid-min-col-size), var(--grid-col-size-calc))
  );
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-col-min-size-calc), 1fr));
  gap: 0 var(--grid-gap);
}
.columns.colnum-2 {
  --grid-max-col-count: 2;
}
.columns.colnum-3 {
  --grid-max-col-count: 3;
}
.columns.colnum-4 {
  --grid-max-col-count: 4;
}
.columns.colnum-5 {
  --grid-max-col-count: 5;
}

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

/* Buttons at and of column */
.col.button-end {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .col.button-end {
    padding-bottom: 0;
  }
}
.col.button-end p.linkwrap {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .col.button-end p.linkwrap {
    position: relative;
  }
}

/* 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: "acumin-pro", sans-serif;
  color: #0E0E0E;
  font-weight: 800;
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
  padding: 0;
  font-style: normal !important;
  text-wrap: balance;
}
h1 span,
.h1 span,
h2 span,
.h2 span,
h3 span,
.h3 span,
h4 span,
.h4 span,
h5 span,
.h5 span,
h6 span,
.h6 span {
  color: #4FA852;
}

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

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

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

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

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

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

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #0E0E0E;
  text-decoration: none;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 767px) {
  h1 br,
h2 br,
h3 br,
h4 br,
h5 br,
h6 br {
    display: none;
  }
}
p {
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  color: #3A3A3A;
  font-family: "acumin-pro", sans-serif;
  font-weight: normal;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 26px;
          margin-block-end: 26px;
  text-wrap: pretty;
}

p.caption,
p.wp-caption-text,
.gallery-caption {
  font-size: 16px !important;
  line-height: 22px !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 {
  margin: 0 0 26px 0;
  list-style: none; /* Remove default list style */
}
.cdev_block ul li,
.mce-content-body ul li {
  font-family: "acumin-pro", sans-serif;
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  color: #3A3A3A;
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 26px;
}
.cdev_block ul li::before,
.mce-content-body ul li::before {
  content: "\f00c";
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #4FA852;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.cdev_block ul ul,
.mce-content-body ul ul {
  margin: 10px 0 10px 0;
  padding: 0;
}
.cdev_block ol,
.mce-content-body ol {
  margin: 0 0 26px 0;
  list-style: decimal inside;
  padding: 0;
}
.cdev_block ol li,
.mce-content-body ol li {
  font-family: "acumin-pro", sans-serif;
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  position: relative;
  margin: 0 0 5px 0;
  padding: 0 0 0 0;
  color: #3A3A3A;
}
.cdev_block ol ol,
.mce-content-body ol ol {
  margin: 10px 0 10px 20px;
  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;
}

img.aligncenter {
  margin-inline: auto;
}

@media (max-width: 1140px) {
  img.alignright {
    max-width: 40%;
    height: auto;
  }
  img.alignleft {
    max-width: 40%;
    height: auto;
  }
}
/*	--------------------------------------------------
	Links
	-------------------------------------------------- */
a {
  color: #4FA852;
  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: #4FA852;
}

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

a.box,
.primary-menu .menu-item.rep a,
#gform_1 .gform_footer input[type=submit],
#gform_2 .gform_footer input[type=submit],
#gform_3 .gform_footer input[type=submit],
#gform_4 .gform_footer input[type=submit],
#gform_5 .gform_footer input[type=submit],
#gform_6 .gform_footer input[type=submit],
#gform_7 .gform_footer input[type=submit],
#gform_8 .gform_footer input[type=submit],
#gform_9 .gform_footer input[type=submit],
#gform_10 .gform_footer input[type=submit] {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  font-family: "acumin-pro", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 800 !important;
  position: relative;
  background: #4FA852;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border-radius: 6px;
}

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

a.box:after,
.primary-menu .menu-item.rep a:after {
  font-size: 14px;
  content: "\f054";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a.box.back:before {
  font-size: 14px;
  content: "\f054";
  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: #4FA852;
  background: none;
}

a.box.rev:visited {
  color: #4FA852;
}

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

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

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

a.box.loc:after,
.primary-menu .menu-item.rep a:after {
  font-size: 14px;
  padding-left: 8px;
  content: "\f3c5";
}

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

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

a.box:hover,
.primary-menu .menu-item.rep a:hover,
#gform_1 .gform_footer input[type=submit]:hover,
#gform_2 .gform_footer input[type=submit]:hover,
#gform_3 .gform_footer input[type=submit]:hover,
#gform_4 .gform_footer input[type=submit]:hover,
#gform_5 .gform_footer input[type=submit]:hover,
#gform_6 .gform_footer input[type=submit]:hover,
#gform_7 .gform_footer input[type=submit]:hover,
#gform_8 .gform_footer input[type=submit]:hover,
#gform_9 .gform_footer input[type=submit]:hover,
#gform_10 .gform_footer input[type=submit]:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #2D5528;
  text-decoration: none !important;
}

a.box.rev:hover {
  color: #2D5528;
  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--2);
  line-height: var(--lh-step--2);
}
.small-text p {
  font-size: var(--step--2);
  line-height: var(--lh-step--2);
}

.x-small-text {
  font-size: 12px;
  line-height: 20px;
}
.x-small-text p {
  font-size: 12px;
  line-height: 20px;
}

.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(.social a) {
  color: #FFF;
  text-decoration: underline !important;
}
.white-text a:hover:not(a.box),
.white-text a:visited:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
  opacity: 0.6;
}
.white-text ul li {
  list-style: url(images/bullet_white.png);
}

.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 {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  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;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}

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

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

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

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

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

/*	--------------------------------------------------
   	Header
	-------------------------------------------------- */
/* Alert */
.alertbar {
  background: #4FA852;
  padding: 15px 0;
  color: #FFF;
}

.alertbar .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.alertbar .text {
  color: #FFF;
}

.alertbar .text p {
  color: #FFF;
  margin: 0;
}

.alertbar .text a {
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
}

.alertbar .text a:hover {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
}

.alertbar .close {
  font-size: 20px;
  color: #FFF;
  margin: 2px 0 0 0;
}

.alertbar .close:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* 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;
  -webkit-transition: opacity 0.3s ease-in-out;
  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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #2D5528;
  border: 10px solid #FFF;
  max-width: 820px;
  max-height: 620px;
  width: 90%;
  z-index: 2000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.popup.hidden {
  display: none;
}

.popup-content {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 50px 30px 30px 30px;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.popup-content.image-pop {
  min-height: auto;
  aspect-ratio: 800/600;
  padding: 0;
  text-align: center;
}

.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: #4FA852;
}

.popup-close:hover {
  color: #4FA852;
}

.popup-body a:hover {
  opacity: 1 !important;
}

/* Header */
.site-header {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0E0E0E;
}

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

.site-header__pad {
  height: 140px;
  position: relative;
}

/* Site Branding */
.site-branding {
  width: 275px;
  height: 79px;
  position: absolute;
  bottom: 28px;
  left: 0;
}

.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;
}

@media (max-width: 1200px) {
  .site-branding {
    width: 260px;
    height: 75px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .site-branding {
    width: 260px;
    height: 75px;
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/* Social */
.social {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.social.footer {
  margin-left: auto;
}
@media (max-width: 1080px) {
  .social.footer {
    margin-left: 0;
  }
}
.social span {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #0E0E0E;
}
.social.footer span {
  color: #FFF;
}
.social a {
  font-size: 20px;
  line-height: 30px;
  padding: 0;
  margin: 0;
  text-align: center;
  text-decoration: none !important;
  color: #0E0E0E;
  font-weight: normal;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

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

.primary-navigation .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}

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

.primary-menu .menu-item a {
  display: block;
  font-size: 18px;
  line-height: 50px;
  margin: 0;
  padding: 0 15px;
  text-decoration: none;
  color: #FFF;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .primary-menu .menu-item a {
    font-size: 16px;
    padding: 0 10px;
  }
}

.primary-menu .menu-item.rep a {
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .primary-menu .menu-item.rep a {
    margin-left: 10px;
  }
}

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

.primary-menu .menu-item:last-child:not(.rep) a {
  padding-right: 0;
}

.primary-menu .menu-item.current_page_item:not(.rep) > a,
.primary-menu .menu-item.current-menu-item:not(.rep) > a,
.primary-menu .menu-item.current-post-ancestor:not(.rep) > a,
.primary-menu .menu-item.current-category-ancestor:not(.rep) > a,
.primary-menu .menu-item.current_page_ancestor:not(.rep) > a {
  color: #4FA852;
}

.primary-menu .menu-item:not(.rep):hover > a {
  color: #4FA852;
}

.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 0;
  background: #333;
  padding: 0;
}

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

/*.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: 16px;
  line-height: 24px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  padding: 5px 15px;
  color: #FFF;
  background: none;
  white-space: nowrap;
}

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

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

.primary-menu .menu-item .sub-menu .menu-item a:hover {
  color: #FFF;
  opacity: 0.6;
}

.primary-menu .menu-item .sub-menu .menu-item.current-menu-item > a {
  color: #FFF;
  opacity: 0.6;
}

@media (max-width: 1080px) {
  .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: #0E0E0E url(images/mob.png) 0 0 no-repeat !important;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  text-indent: -4000px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

.nav-panel {
  display: block;
  position: static;
}

@media (max-width: 1080px) {
  .mobile-hamburger {
    display: block;
    top: 22px;
    right: 20px;
  }
  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: #0E0E0E;
    overflow-y: auto;
    padding-top: 30px;
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-panel .primary-navigation {
    position: static;
    display: block;
  }
  .nav-panel .primary-menu {
    display: block;
    margin: 0 30px;
    padding: 0;
  }
  .nav-panel .primary-menu .menu-item {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .nav-panel .primary-menu .menu-item > a {
    font-size: 22px;
    line-height: 30px;
    padding: 10px 0;
    display: block;
    text-decoration: none;
    color: #FFF;
    margin: 0;
    font-weight: 700;
    font-style: normal;
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
  .nav-panel .primary-menu .menu-item.rep a {
    font-size: 20px;
    line-height: 26px;
    padding: 10px 14px;
    display: inline-block;
    margin-top: 10px;
  }
  .nav-panel .primary-menu .menu-item.rep a:after {
    font-size: 20px;
  }
  .nav-panel .primary-menu .menu-item > a:hover,
.nav-panel .primary-menu .menu-item.current_page_item > a,
.nav-panel .primary-menu .menu-item.current-menu-item > a,
.nav-panel .primary-menu .menu-item.current-post-ancestor > a,
.nav-panel .primary-menu .menu-item.current-category-ancestor > a,
.nav-panel .primary-menu .menu-item.current_page_ancestor > a {
    color: #4FA852;
  }
  .nav-panel .primary-menu .sub-menu {
    display: none;
    position: static;
    top: auto;
    left: auto;
    min-width: auto;
    margin: 0 0 10px 0;
    padding: 0;
    background: none;
  }
  .nav-panel .primary-menu .sub-menu .menu-item a {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 0;
    display: block;
    text-decoration: none;
    color: #FFF;
    margin: 0;
    font-weight: 400;
    font-style: normal;
    white-space: normal;
  }
  .nav-panel .primary-menu .sub-menu .menu-item:first-child a {
    padding-top: 4px;
  }
  .nav-panel .primary-menu .sub-menu .menu-item:last-child a {
    padding-bottom: 10px;
  }
  #masthead .nav-panel .tool {
    position: static;
    display: block;
    margin: 30px 30px 0 30px;
  }
  #masthead .nav-panel .tool .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  #masthead .nav-panel .tool .social {
    position: static;
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  #masthead .nav-panel .tool .social span {
    display: none;
  }
  #masthead .nav-panel .tool .social a {
    font-size: 30px;
    line-height: 30px;
    color: #FFF;
    padding: 0;
  }
  #masthead .nav-panel .tool .social a:hover {
    color: #2D5528;
  }
  #masthead .nav-panel .tool a.phone {
    font-size: 24px;
    line-height: 34px;
    color: #FFF;
  }
}
/* Suppress all transitions during window resize to prevent flash/shift */
body.resize-animation-stopper * {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-animation: none !important;
          animation: none !important;
}

@media (max-width: 660px) {
  .mobile-hamburger {
    top: 10px;
    right: 10px;
  }
  .nav-panel {
    width: 100%;
  }
}
/*	--------------------------------------------------
   	Home
	-------------------------------------------------- */
/*	--------------------------------------------------
   	Content
	-------------------------------------------------- */
/* Page wrap */
/* Main 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 {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

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

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

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

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

.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_zero {
  padding-bottom: 0 !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 a.box,
.block_theme_color_2 a.box,
.block_theme_color_3 a.box {
  background-color: transparent;
  border: 1px solid #FFF;
}
.block_theme_color_1 a.box:hover,
.block_theme_color_2 a.box:hover,
.block_theme_color_3 a.box:hover {
  background-color: #2D5528;
}

.block_theme_color_1 {
  background-color: #4FA852;
}

.block_theme_color_2 {
  background-color: #0E0E0E;
}

.block_theme_color_3 {
  background-color: #0E0E0E;
}

/* Block Background Light */
.block_background_light,
.block_background_dark {
  background-color: #4FA852;
  padding: 80px 30px;
}
@media (max-width: 1270px) {
  .block_background_light,
.block_background_dark {
    padding: 50px 20px;
  }
}
.block_background_light > .inner_alignwide, .block_background_light > .highlight-box,
.block_background_dark > .inner_alignwide,
.block_background_dark > .highlight-box {
  --width--max: var(--width--content--wide);
  max-inline-size: min(100%, var(--width--max));
  margin-inline: auto;
}
.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 {
  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 {
  margin-bottom: 0;
}
.block_background_light a.box,
.block_background_dark a.box {
  background-color: transparent;
  border: 1px solid #FFF;
}
.block_background_light a.box:hover,
.block_background_dark a.box:hover {
  background-color: #2D5528;
}
.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 .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 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 .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 a {
  color: #FFF;
}
.block_background_light a:not(a.box),
.block_background_dark a:not(a.box) {
  color: #FFF;
  text-decoration: underline;
}
.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) {
  color: #FFF;
  text-decoration: underline;
  opacity: 0.6;
}
.block_background_light ul li,
.block_background_dark ul li {
  list-style: url(images/bullet_white.png);
}
.block_background_light li::before,
.block_background_dark li::before {
  background-color: #FFF !important;
}
.block_background_light i,
.block_background_dark i {
  color: #FFF;
}

/* Block Background Dark */
.block_background_dark {
  background-color: #0E0E0E;
}

/* Block White Text */
.block-white-text,
.block_theme_color_1,
.block_theme_color_2 {
  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 {
  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) {
  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) {
  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 {
  list-style: url(images/bullet_white.png);
}

/* Block Anchor */
/* Adjust 80px to match your header height */
.cdev_block[id] {
  scroll-margin-top: 30px;
}

/*	--------------------------------------------------
   	cdeVision Blocks
	-------------------------------------------------- */
/* Accordion Block with inner blocks */
.accordion__wrap {
  margin-bottom: -1px;
}

/* Page view - If this accordion is immediately followed by another accordion, keep -1px margin */
.pagewrap .accordion__wrap:not(.accordion__wrap:has(+ .accordion__wrap)) {
  margin-bottom: 50px;
}

/* Editor view - Target .wp-block-cdev-accordion that is NOT followed by another .wp-block-cdev-accordion */
.wp-block-cdev-accordion:not(.wp-block-cdev-accordion:has(+ .wp-block-cdev-accordion)) .accordion__wrap {
  margin-bottom: 50px;
}

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

.accordiontitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid lightgray;
}
.accordiontitle:hover {
  cursor: pointer;
}
.accordiontitle .fa-solid {
  font-size: 16px;
  line-height: 30px;
  font-weight: 900;
  color: #4FA852;
  float: left;
  margin: 0;
}
.accordiontitle:hover .fa-solid {
  color: #3A3A3A;
}
.accordiontitle.open .closedicon {
  display: none;
}
.accordiontitle.open .openicon {
  display: block;
}
.accordiontitle .openicon {
  display: none;
}
.accordiontitle h3 {
  font-family: "acumin-pro", sans-serif;
  line-height: 30px;
  font-size: 18px;
  color: #0E0E0E;
  padding-left: 8px;
  margin: 0;
  font-weight: 700;
  text-transform: none;
}
.accordiontitle:hover h3 {
  color: #3A3A3A;
}

.accordioncontent {
  display: none;
  padding: 20px 14px 1px 14px;
  margin: 0;
}
.accordioncontent .acf-innerblocks-container > *:first-child {
  margin-top: 0;
}
.accordioncontent .acf-innerblocks-container .block-editor-block-list__block > *:first-child {
  margin-top: 0;
}
.accordioncontent .acf-innerblocks-container > *:last-child {
  margin-bottom: 0;
}
.accordioncontent .acf-innerblocks-container .block-editor-block-list__block > *:last-child {
  margin-bottom: 0;
}
.accordioncontent ul {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .accordioncontent {
    padding: 20px 0 1px 0;
  }
}

/* Brands Block */
.brands-block .brands-grid {
  --brands-cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--brands-cols), 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 0;
  margin: 30px 0 0 0;
}
@media (max-width: 1120px) {
  .brands-block .brands-grid {
    --brands-cols: 2;
  }
}
@media (max-width: 767px) {
  .brands-block .brands-grid {
    --brands-cols: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .brands-block .brands-grid .brand-item {
    grid-row: span 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.brands-block .brands-grid .brand-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}
.brands-block .brands-grid .brand-item::after {
  content: "";
  display: block;
  height: 80px;
}
.brands-block .brands-grid .brand-item .brand-logo {
  -ms-flex-item-align: end;
      align-self: end;
  padding-bottom: 20px;
}
.brands-block .brands-grid .brand-item .brand-logo img {
  display: block;
  max-width: min(390px, 100%);
  max-height: 75px;
  width: auto;
  height: auto;
  margin: 0;
}
.brands-block .brands-grid .brand-item h3.h5 {
  margin-bottom: 0;
  margin-top: 0;
}
.brands-block .brands-grid .brand-item .brand-description {
  font-size: var(--step-0);
  line-height: var(--lh-step-0);
  color: #333;
}
.brands-block .brands-grid .brand-item .brand-description p {
  margin-bottom: 0;
}
.brands-block .brands-grid .brand-item .brand-link {
  padding-top: 20px;
}
.brands-block .brands-grid .brand-item .brand-link .box {
  display: inline-block;
}

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

/* Background Section Block */
.wrapper-background-block {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding-inline: 0 !important;
}
.wrapper-background-block .acf-innerblocks-container > *:first-child {
  margin-top: 0 !important;
}
.wrapper-background-block .acf-innerblocks-container > *:first-child *:first-child {
  margin-top: 0 !important;
}
.wrapper-background-block .acf-innerblocks-container > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 970px) {
  .wrapper-background-block .acf-innerblocks-container > *:last-child *:last-child {
    margin-bottom: 0 !important;
  }
}
.wrapper-background-block.bg-scroll {
  background-attachment: scroll;
  background-position: top center;
}
@media screen and (max-width: 600px) {
  .wrapper-background-block {
    background-image: none !important;
  }
}

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

.button_bar.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button_bar.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* Cards Block */
.cards-grid {
  --grid-max-col-count: 3;
  --grid-min-col-size: 280px;
  --grid-gap: 30px;
  /* calculations, do not touch */
  --grid-col-size-calc: calc(
    (100% - var(--grid-gap) * var(--grid-max-col-count)) /
      var(--grid-max-col-count)
  );
  --grid-col-min-size-calc: min(
    100%,
    max(var(--grid-min-col-size), var(--grid-col-size-calc))
  );
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-col-min-size-calc), 1fr));
  grid-gap: var(--grid-gap);
  margin-block: 50px;
}
@media (max-width: 767px) {
  .cards-grid {
    --grid-gap: 20px;
  }
}
.cards-grid.grid-2 {
  --grid-max-col-count: 2;
}
.cards-grid.grid-3 {
  --grid-max-col-count: 3;
}
.cards-grid.grid-4 {
  --grid-max-col-count: 4;
}
.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-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 80px;
  border-radius: 0;
  min-height: 285px;
  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 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(385px, 50%);
          flex: 0 0 min(385px, 50%);
}
.color-box.block_size_wide .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(285px, 50%);
          flex: 0 0 min(285px, 50%);
}
.color-box.block_size_none .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(285px, 50%);
          flex: 0 0 min(285px, 50%);
}
.color-box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
@media (max-width: 767px) {
  .color-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 600px;
    max-width: calc(100% - 40px);
    margin-inline: auto;
  }
  .color-box .image {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
  }
  .color-box .text {
    padding: 20px;
  }
}

/*	One Column Block  */
.block_callout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1020px) {
  .block_callout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.block_callout .callout_content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 390px;
          flex: 0 0 390px;
  padding-bottom: 30px;
  margin-inline: auto;
}
@media (max-width: 1020px) {
  .block_callout .callout_content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}
.block_callout .callout_content p {
  font-family: "acumin-pro", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
}
.block_callout .callout_content .callout_quote_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.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 {
  font-size: var(--step-4);
  color: #4FA852;
}
.block_callout .callout_image {
  padding-block: 80px;
}

/* Columns Block */
.columns-block .column_headline {
  margin-bottom: 30px;
}
.columns-block .columns .column_image {
  aspect-ratio: 600/400;
  margin-bottom: 15px !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 center;
     object-position: center 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 .columns .column_icon {
  margin-bottom: 15px !important;
  text-align: center;
}
.columns-block .columns .column_icon i {
  font-size: 60px;
  line-height: 60px;
  color: #4FA852;
  margin-top: 20px;
}
.columns-block.block_background_dark .column_headline, .columns-block.block_background_light .column_headline {
  margin-top: 0;
}
.columns-block.block_background_dark .columns, .columns-block.block_background_light .columns {
  gap: var(--grid-gap) var(--grid-gap);
}
.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;
}

/* Form Columns Block */
.form-columns-block {
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
}
.form-columns-block h2:not(.gform_submission_error) {
  margin-bottom: 20px;
}
.form-columns-block .block_size_wide, .form-columns-block .inner_alignwide {
  max-inline-size: 100%;
}
@media (max-width: 850px) {
  .form-columns-block .columns {
    --grid-max-col-count: 1;
  }
}

/* Gallery Block */
.gallery-block {
  margin-block: 80px;
}
@media (max-width: 767px) {
  .gallery-block {
    margin-block: 50px;
  }
}
.gallery-block img {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 285/200;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.gallery-block .gallery_view_more {
  margin-top: 30px;
  text-align: center;
}

.accordioncontent .gallery-block {
  margin-block: 30px;
}

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

/*	Heading Block  */ /*	Heading Intro Block  */
.heading-intro-box {
  -webkit-margin-after: 80px;
          margin-block-end: 80px;
}
@media (max-width: 767px) {
  .heading-intro-box {
    -webkit-margin-after: 50px;
            margin-block-end: 50px;
  }
}
.heading-intro-box .heading-intro-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) {
  .heading-intro-box .heading-intro-box-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.heading-intro-box .heading-intro-box-wrap *:first-child {
  margin-top: 0;
}
.heading-intro-box .heading-intro-box-wrap .heading-title-wrap .small-text {
  font-size: var(--step-2);
  font-family: "acumin-pro", sans-serif;
  margin-bottom: 10px;
}
.heading-intro-box .heading-intro-box-wrap .heading-title-wrap h2,
.heading-intro-box .heading-intro-box-wrap .heading-title-wrap h3,
.heading-intro-box .heading-intro-box-wrap .heading-title-wrap h4,
.heading-intro-box .heading-intro-box-wrap .heading-title-wrap h5,
.heading-intro-box .heading-intro-box-wrap .heading-title-wrap h6 {
  margin-top: 0;
}

.heading-intro-box.block_size_full {
  -webkit-margin-after: 0;
          margin-block-end: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 600px;
}
.hero-block .text.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero-block .text .hero-block-inner-wrap {
  padding: 30px;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.hero-block .text .hero-block-inner-quote-wrap {
  max-width: 600px;
}

/* Mobile */
@media (max-width: 767px) {
  .hero-block .hero-block-inner {
    background-attachment: scroll;
  }
  .hero-block .text {
    min-height: 330px;
  }
  .hero-block .text.right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 80px;
  margin-inline: auto;
  gap: 30px;
}
@media (max-width: 767px) {
  .highlight-box {
    margin-block: 50px;
  }
}
@media (max-width: 900px) {
  .highlight-box {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    width: 600px;
    max-width: 100%;
    margin-inline: auto;
  }
  .highlight-box .media {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
  }
}
.highlight-box.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.highlight-box .media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
}
.highlight-box img {
  height: auto;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 600/400;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.highlight-box .grid {
  --gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  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;
  aspect-ratio: 285/190;
}
.highlight-box .grid *:first-child {
  grid-column: span 2;
}
.highlight-box .grid *:first-child img {
  aspect-ratio: 600/400;
}
.highlight-box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.highlight-box .text ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.highlight-box .text li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}

.highlight-box-wrap.block_background_light,
.highlight-box-wrap.block_background_dark {
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
}
.highlight-box-wrap.block_background_light .highlight-box,
.highlight-box-wrap.block_background_dark .highlight-box {
  --width--max: 1230px;
  margin-inline: auto;
  max-inline-size: min(100% - var(--width--site-gutter) * 2, var(--width--max));
}

/*	Home Elevator Box  */
.home-elevator-wrap {
  padding-block: 80px 50px;
}
@media (max-width: 767px) {
  .home-elevator-wrap {
    padding-block: 50px;
  }
}

.home-elevator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 350px;
}
.home-elevator .text-inner {
  max-width: calc(1230px / 2);
  margin-right: auto;
  padding-left: 3.75rem;
  padding-right: 20px;
}
.home-elevator.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.home-elevator.right .text-inner {
  margin-right: 0;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 3.75rem;
}
.home-elevator .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 80px;
}
.home-elevator .media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  overflow: hidden;
}
.home-elevator .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center left;
     object-position: center left;
  display: block;
}
@media (max-width: 900px) {
  .home-elevator {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    min-height: 0;
  }
  .home-elevator .text {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 0px !important;
            flex: 1 1 0 !important;
    width: 100%;
    padding: 30px 0 20px 0;
  }
  .home-elevator .text-inner {
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 20px;
  }
  .home-elevator.right .text-inner {
    margin-inline: 0;
    padding-inline: 20px;
  }
  .home-elevator .media {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 0px !important;
            flex: 1 1 0 !important;
    width: 100%;
    min-height: 350px;
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .home-elevator .media {
    min-height: 250px;
  }
}

/* Home header */
.home-header-block {
  margin-bottom: 80px;
}

.home-header {
  position: relative;
  background-color: #0E0E0E;
}
.home-header .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
  z-index: 30;
}
.home-header .header-banner-text {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.home-header .header-banner-text .h1 {
  font-size: var(--step-8);
  line-height: var(--lh-step-8);
  border-top: 2px solid #4FA852;
  border-bottom: 2px solid #4FA852;
  padding-top: 10px;
  padding-bottom: 15px;
}
.home-header .header-banner-text p {
  font-size: var(--step-3);
  line-height: var(--lh-step-3);
  font-weight: 700;
  margin: 20px 0;
}
.home-header.header-slideshow {
  height: 600px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-header.header-slideshow {
    height: auto;
    overflow: visible;
  }
}
.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;
}
@media (max-width: 767px) {
  .home-header.header-slideshow .placeholder-image {
    position: relative;
    height: 250px;
  }
}
.home-header.header-slideshow .banner_slideshow_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .home-header.header-slideshow .banner_slideshow_wrapper {
    position: relative;
    height: auto;
  }
}
.home-header.header-slideshow .banner_slideshow_wrapper:has(.slick-initialized) {
  opacity: 1;
}
.home-header.header-slideshow .home_slideshow {
  width: 100%;
  height: 600px;
  z-index: 20;
}
@media (max-width: 767px) {
  .home-header.header-slideshow .home_slideshow {
    height: auto;
  }
}
.home-header.header-slideshow .home_slideshow .slide {
  position: relative;
  z-index: 1;
  height: 600px;
}
@media (max-width: 767px) {
  .home-header.header-slideshow .home_slideshow .slide {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-header.header-slideshow .home_slideshow .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 15px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
  background: -webkit-gradient(linear, left top, right top, from(#0e0e0e), to(rgba(14, 14, 14, 0.15)));
  background: linear-gradient(to right, #0e0e0e 0%, rgba(14, 14, 14, 0.15) 100%);
}
@media (max-width: 650px) {
  .home-header.header-slideshow .home_slideshow .slide::before {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home-header.header-slideshow .home_slideshow .slide::before {
    display: none;
  }
}
.home-header.header-slideshow .home_slideshow .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
}
@media (max-width: 767px) {
  .home-header.header-slideshow .home_slideshow .slide img {
    position: relative;
    height: 250px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.home-header.header-slideshow .home_slideshow .slide .wrapper {
  position: relative;
  height: 100%;
  z-index: 3;
}
@media (max-width: 767px) {
  .home-header.header-slideshow .home_slideshow .slide .wrapper {
    height: auto;
    padding: 30px 0;
  }
}
.home-header.header-slideshow .home_slideshow .slide .slide-link {
  display: inline-block;
  margin-top: 20px;
}
.home-header.header-slideshow .home_slideshow .slide .header-banner-text {
  max-width: 600px;
  padding: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.home-header.header-slideshow .home_slideshow .slide .header-banner-text.fade-in {
  opacity: 1;
}
@media (max-width: 1230px) {
  .home-header.header-slideshow .home_slideshow .slide .header-banner-text {
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  .home-header.header-slideshow .home_slideshow .slide .header-banner-text {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .home-header.header-slideshow .home_slideshow .slide .header-banner-text {
    max-width: 100%;
  }
}
.home-header.header-slideshow .home_slideshow .slick-prev,
.home-header.header-slideshow .home_slideshow .slick-next {
  z-index: 4;
}
.home-header.header-slideshow .home_slideshow .slick-prev:before,
.home-header.header-slideshow .home_slideshow .slick-next:before {
  -webkit-transition-duration: 0.25s;
          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: 20px;
}
.home-header.header-slideshow .home_slideshow .slick-next {
  right: 20px;
}
.home-header.header-slideshow .home_slideshow .slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.home-header.header-slideshow .home_slideshow .slick-dots li button {
  background-color: #4FA852;
}
.home-header.header-slideshow .home_slideshow .slick-dots li.slick-active button {
  background-color: #2D5528;
}
.home-header.header-slideshow .home_slideshow .slick-dots li button:before {
  display: none;
}

.home-header-block:has(+ .block_size_full),
.home-header-block:has(+ .block_anchor + .block_size_full) {
  margin-bottom: 0;
}

.wp-block-cdev-home-header + .wp-block:has(.block_size_full) ~ .wp-block-cdev-home-header .home-header-block {
  margin-bottom: 0;
}

.wp-block-cdev-home-header:has(+ .wp-block .block_size_full) .home-header-block {
  margin-bottom: 0;
}

/* Video Block */
.image-block {
  margin-block: 100px;
}
@media (max-width: 767px) {
  .image-block {
    margin-block: 50px;
  }
}
.image-block img {
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
}

/* Logo Slider Block */
.logo-slider-block {
  margin-block: 80px;
}

/* Two-column layout when text content is present */
.logo-slider-block.has-text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.logo-slider-block.has-text-content .logo-slider-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
  min-width: 0;
}
.logo-slider-block.has-text-content .logo-slider-text h3 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.logo-slider-block.has-text-content .logo-slider-text p:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.logo-slider-block.has-text-content .logo-slider-logos {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 1120px) {
  .logo-slider-block.has-text-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .logo-slider-block.has-text-content .logo-slider-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .logo-slider-block.has-text-content .logo-slider-logos {
    width: 100%;
  }
}

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

.logo_slideshow {
  width: calc(100% - 80px);
  opacity: 0.5;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  margin: 0 auto 30px auto !important;
}

.logo_slideshow.slick-initialized {
  opacity: 1;
}

.logo_slideshow .logo {
  height: 120px;
  position: relative;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
}

.logo_slideshow a.logo:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
}

.logo_slideshow img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: calc(100% - 20px);
  max-height: 120px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

/* Arrows */
.logo_slideshow .slick-prev, .logo_slideshow .slick-next {
  width: 30px;
  height: 50px;
}

.logo_slideshow .slick-prev {
  left: -40px;
  z-index: 99;
}

.logo_slideshow .slick-next {
  right: -40px;
  z-index: 99;
}

.logo_slideshow .slick-prev:before,
.logo_slideshow .slick-next:before {
  font-size: 40px;
  line-height: 40px;
  width: 30px;
  text-align: center;
  opacity: 1;
  color: #BFBFBF;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #2D5528;
}

.logo-slider-placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  margin-bottom: 10px;
}

.logo-slider-placeholder-note {
  display: none;
  font-size: 14px;
  color: #CCC;
  font-style: italic;
  text-align: center;
}

/* Page header */
.page-header-block {
  margin-bottom: 80px;
}

.page-header {
  position: relative;
  background-color: #0E0E0E;
}
.page-header .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
  z-index: 30;
}
.page-header .header-banner-text {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.page-header .header-banner-text p {
  font-size: var(--step-1);
  line-height: var(--lh-step-1);
  margin: 10px 0 0 0;
}
.page-header.header-banner-jumbo::before, .page-header.header-video::before, .page-header.header-slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 15px);
  height: 100%;
  z-index: 25;
  pointer-events: none;
  opacity: 0.95;
  background: -webkit-gradient(linear, left top, right top, from(#0e0e0e), to(rgba(14, 14, 14, 0.15)));
  background: linear-gradient(to right, #0e0e0e 0%, rgba(14, 14, 14, 0.15) 100%);
}
@media (max-width: 650px) {
  .page-header.header-banner-jumbo::before, .page-header.header-video::before, .page-header.header-slideshow::before {
    width: 100%;
  }
}
.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: 250px;
  }
}
.page-header.header-banner-jumbo .header-banner-text, .page-header.header-video .header-banner-text, .page-header.header-slideshow .header-banner-text {
  max-width: 600px;
  padding: 0;
}
@media (max-width: 1230px) {
  .page-header.header-banner-jumbo .header-banner-text, .page-header.header-video .header-banner-text, .page-header.header-slideshow .header-banner-text {
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  .page-header.header-banner-jumbo .header-banner-text, .page-header.header-video .header-banner-text, .page-header.header-slideshow .header-banner-text {
    max-width: 100%;
  }
}
.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;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-header.header-banner-jumbo .wrapper {
  height: 600px;
}
@media (max-width: 767px) {
  .page-header.header-banner-jumbo .wrapper {
    height: 250px;
  }
}
.page-header.header-video:has(video) .header-banner-text, .page-header.header-slideshow:has(.banner_slideshow_wrapper) .header-banner-text {
  -webkit-transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
  -webkit-transition-delay: 0.5s;
          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;
  -webkit-transform: translateY(0);
          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 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-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top: 4px solid #FFF;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.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;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .page-header.header-slideshow .banner_slideshow_wrapper {
    height: 250px;
  }
}
.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: 250px;
  }
}
.page-header.header-slideshow .banner_slideshow .slide {
  height: 600px;
}
@media (max-width: 767px) {
  .page-header.header-slideshow .banner_slideshow .slide {
    height: 250px;
  }
}
.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 {
  -webkit-transition-duration: 0.25s;
          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;
}

.block-editor-block-list__block .wrapper {
  margin-top: 0;
}

.page-header-block:has(+ .block_size_full),
.page-header-block:has(+ .block_anchor + .block_size_full) {
  margin-bottom: 0;
}

.wp-block-cdev-page-header + .wp-block:has(.block_size_full) ~ .wp-block-cdev-page-header .page-header-block {
  margin-bottom: 0;
}

.wp-block-cdev-page-header:has(+ .wp-block .block_size_full) .page-header-block {
  margin-bottom: 0;
}

/* Quote Block */
.quote-block {
  margin-block: 80px;
}
.quote-block img {
  border-radius: 0;
  overflow: hidden;
}
.quote-block .quote-text {
  text-align: center;
  margin-bottom: 10px;
}
.quote-block .quote-text p {
  font-size: var(--step-3);
  line-height: var(--lh-step-3);
  text-align: center;
  margin: 0;
}
.quote-block .quote-text .fa {
  font-size: var(--step-3);
  color: #4FA852;
  padding-right: 10px;
}
.quote-block p.by {
  font-size: var(--step-1);
  line-height: var(--lh-step-1);
  font-weight: 400;
  text-align: center;
}

.block_size_none .quote-text-wrap,
.block_size_wide .quote-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.block_size_breakout .quote-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.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;
}

/* Slideshow Block */
.slideshow-block {
  margin-block: 50px;
}

.cdev_block.slideshow-block ul li::before {
  display: none !important;
}

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

.slideshow {
  width: 100%;
  opacity: 0;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  margin: 0 auto 30px auto !important;
}

.slideshow.slick-initialized {
  opacity: 1;
}

.slideshow .slide {
  width: 100%;
}
.slideshow .slide img {
  display: block;
  width: 100%;
  height: auto;
}
.slideshow .slide p.slide-caption {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Arrows */
.slideshow .slick-prev, .slideshow .slick-next {
  width: 30px;
  height: 50px;
}

.slideshow .slick-prev {
  left: -40px;
  z-index: 99;
}

.slideshow .slick-next {
  right: -40px;
  z-index: 99;
}

.slideshow .slick-prev:before,
.slideshow .slick-next:before {
  font-size: 40px;
  line-height: 40px;
  width: 30px;
  text-align: center;
  opacity: 1;
  color: #BFBFBF;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.slideshow .slick-prev:hover:before,
.slideshow .slick-next:hover:before {
  color: #2D5528;
}

:root {
  --slideshow-dot-width: 16px;
  --slideshow-dot-height: 16px;
  --slideshow-dot-margin: 6px;
  --slideshow-dot-bg: #4FA852;
  --slideshow-dot-bg-active: #2D5528;
}

.slideshow .slick-dots {
  margin: 0 !important;
  bottom: -30px;
}
.slideshow .slick-dots li {
  width: var(--slideshow-dot-width);
  height: var(--slideshow-dot-height);
  margin: 0 var(--slideshow-dot-margin) !important;
  padding: 0 !important;
}
.slideshow .slick-dots li button {
  width: 100%;
  height: 100%;
  line-height: var(--slideshow-dot-height) !important;
  font-size: 1px !important;
}
.slideshow .slick-dots li button:before {
  width: 100%;
  height: 100%;
  content: "" !important;
  opacity: 1 !important;
  color: transparent !important;
  background-color: var(--slideshow-dot-bg) !important;
  -webkit-transition-duration: 0.25s !important;
          transition-duration: 0.25s !important;
  display: block;
  border-radius: 0 !important;
}
.slideshow .slick-dots li.slick-active button:before,
.slideshow .slick-dots li:hover button:before {
  background-color: var(--slideshow-dot-bg-active) !important;
}

.slideshow-placeholder img {
  display: block;
  aspect-ratio: 1230/600;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block-editor-block-list__block .spacer-block:before {
  content: "Spacer Block (admin note)";
  display: block;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 20px;
  color: #CCC;
}

/* Video Block */
.video-block {
  margin-block: 100px;
}
@media (max-width: 767px) {
  .video-block {
    margin-block: 50px;
  }
}

.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%;
}

/*	--------------------------------------------------
   	Sidebar
	-------------------------------------------------- */
/*	--------------------------------------------------
   	Blog
	-------------------------------------------------- */
/* Blog Header */
.blog_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 0 0 50px 0;
  gap: 30px;
}

.blog_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.blog_header ul li {
  list-style: none;
  margin: 0;
}

.blog_header ul li a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #4FA852;
}

.blog_header ul li a:hover,
.blog_header ul li.active a {
  font-weight: 700;
  color: #2D5528;
}

@media (max-width: 767px) {
  .blog_header ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
/* Blog Grid */
.bloggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 30px;
}

.blogitem h3 {
  margin-top: 0;
}

@media (max-width: 600px) {
  .bloggrid {
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*	--------------------------------------------------
   	Pager
	-------------------------------------------------- */
ul.pager {
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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 12px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 700 !important;
  position: relative;
  background: #4FA852;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  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: #2D5528;
  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
	-------------------------------------------------- */
.cta {
  display: block;
  width: 100%;
  margin: 0;
  padding: 30px var(--width--site-gutter);
  background-color: #4FA852;
  color: #fff !important;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.cta:hover, .cta:focus {
  background-color: #2D5528;
  color: #fff !important;
  text-decoration: none !important;
}
.cta:visited {
  color: #fff !important;
}
.cta .cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
  row-gap: 1rem;
  margin-inline: auto;
  max-inline-size: 100%;
  text-align: left;
}
.cta .cta__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.cta .cta__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 60px;
  line-height: 1;
}
.cta .cta__icon .fa-solid {
  display: block;
  font-weight: 900;
}
.cta .cta__title {
  font-size: var(--step-4);
  font-weight: 800;
  line-height: var(--lh-step-4);
  color: inherit;
}
.cta .cta__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 220px;
          flex: 1 1 220px;
  max-width: 320px;
  font-size: var(--step-0);
  font-weight: 400;
  line-height: var(--lh-step-0);
  color: inherit;
}
@media (max-width: 767px) {
  .cta {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .cta .cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cta .cta__lead {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta .cta__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: none;
  }
  .cta .cta__icon {
    font-size: 40px;
  }
}
@media (max-width: 525px) {
  .cta .cta__lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0.625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .cta .cta__title {
    text-align: center;
  }
}

#colophon {
  padding: 60px 0 100px 0;
}

.footer-branding {
  width: 195px;
  height: 55px;
  margin-bottom: 20px;
}

.footer-branding__title {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.footer-branding__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;
}

.footercolumns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  gap: 0 50px;
}
@media (max-width: 600px) {
  .footercolumns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }
}

/* Association logos */
.assoc {
  margin-left: auto;
}
@media (max-width: 800px) {
  .assoc {
    margin-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.assoc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.assoc ul a:hover {
  opacity: 0.6;
}
.assoc ul img {
  max-width: 140px;
  max-height: 80px;
  height: auto;
  width: auto;
}

.site-footer {
  background: #0E0E0E;
  color: #FFF;
}
.site-footer p {
  color: #FFF;
}
.site-footer a {
  color: #4FA852;
  text-decoration: none !important;
  font-weight: 400;
}
.site-footer a:hover {
  color: #4FA852;
  text-decoration: underline !important;
}
.site-footer .site-info a {
  color: #FFF;
}
.site-footer .site-info a:hover {
  color: #FFF;
}

/*	--------------------------------------------------
   	Form - Gravity Forms (labels inside)
	-------------------------------------------------- */
/* Theme */
.gform_wrapper {
  margin-bottom: 50px !important;
}

.gform_wrapper .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;
}

#field_1_10 h3 {
  margin-top: 0 !important;
}

.gform_wrapper input[type=color],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=email],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=url],
.gform_wrapper input[type=week],
.gform_wrapper select,
.gform_wrapper textarea {
  font-family: "acumin-pro", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  margin: 0 !important;
  padding: 6px 10px !important;
  border: 1px solid #CCCCCC !important;
  outline: none !important;
}

.gform_wrapper select {
  padding: 6px 10px !important;
}

.gform_wrapper textarea.textarea {
  font-family: "acumin-pro", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  height: 120px !important;
  display: block !important;
  margin: 0 !important;
}

/* Address */
.gform_wrapper .ginput_container_address {
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Orbital / Foundation: .gform-grid-row uses row-gap (GF default) — do not also margin the street row or gaps stack */
}
.gform_wrapper .ginput_container_address.gform-grid-row {
  row-gap: 16px !important;
}

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

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

.gform_wrapper .ginput_container_address.gform-grid-row span.address_line_1 {
  margin-bottom: 0 !important;
}

.gform_wrapper .ginput_container_address span.address_city {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 40% !important;
          flex: 0 0 40% !important;
}

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

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

/* List items */
.add_list_item,
.delete_list_item {
  background-color: #2D5528 !important;
  color: #fff !important;
}
.add_list_item:hover,
.delete_list_item:hover {
  background-color: #4FA852 !important;
  color: #fff !important;
}

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

.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input[type=submit],
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_footer input[type=submit]:focus,
.gform_wrapper .gform_footer input[type=submit]:focus-visible,
.gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_page_footer input[type=submit]:hover,
.gform_wrapper .gform_page_footer input[type=submit]:focus,
.gform_wrapper .gform_page_footer input[type=submit]:focus-visible,
.gform_wrapper .gform_page_footer input[type=submit]:active {
  /* see a.box for styles; :active / focus ring / Firefox inner border */
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.gform_wrapper .gform_footer input[type=submit]::-moz-focus-inner,
.gform_wrapper .gform_page_footer input[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_page_footer input[type=submit]:hover {
  /* see a.box for styles */
  cursor: pointer !important;
}

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

p.gform_required_legend {
  display: none;
}

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

.gform_wrapper .gfield_validation_message,
.gform_wrapper .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: #6d6d6d;
}

/* 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;
  font-size: 16px !important;
  line-height: 22px !important;
  padding: 6px 10px !important;
  outline: none !important;
}

.gfield select:focus {
  padding: 6px 10px !important;
}

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

/* Spinner is an <img>; theme uses transparent src + border animation (see gravity-forms.php). */
@-webkit-keyframes pvc-gform-ajax-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes pvc-gform-ajax-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.gform_ajax_spinner {
  margin: 5px 0 0 10px !important;
  width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  border: 3px solid rgba(119, 119, 119, 0.25) !important;
  border-top-color: #777777 !important;
  border-radius: 50% !important;
  -webkit-animation: pvc-gform-ajax-spin 0.75s linear infinite !important;
          animation: pvc-gform-ajax-spin 0.75s linear infinite !important;
}

/*	--------------------------------------------------
	Search Form Styles
	-------------------------------------------------- */
.tool-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
  margin: 0;
}
.tool-search-form .tool-search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 150px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 12px;
  font-size: var(--step--1);
  line-height: 30px;
  color: #3A3A3A;
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 0;
}
.tool-search-form .tool-search-input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.tool-search-form .tool-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23444444'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") center/contain no-repeat;
  cursor: pointer;
}
.tool-search-form .tool-search-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin-left: -1px;
  color: #fff;
  background: #4FA852;
  border: 1px solid #4FA852;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.tool-search-form .tool-search-submit i {
  font-size: 16px;
}
.tool-search-form .tool-search-submit:hover, .tool-search-form .tool-search-submit:focus {
  background: #2D5528;
  border-color: #2D5528;
}

.search-page-form .tool-search-form {
  margin: 10px 0 50px 0;
}
.search-page-form .tool-search-form .tool-search-input {
  max-width: 200px;
}

.searchresult h4 {
  margin-top: 30px;
}

/*	--------------------------------------------------
	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;
  }
  .page-header {
    margin: 0;
    padding: 0;
  }
  .page-header .wrap {
    display: block;
    height: auto;
  }
  .page-header h1 {
    color: #000;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .main-content-inner {
    margin: 0;
  }
  p {
    margin: 0 0 20px 0;
  }
  #colophon a {
    display: none !important;
  }
}