:root {
  hanging-punctuation: first last;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
body {
  min-height: 100svh;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
body:not(.transitions) * {
  transition: none !important;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  object-fit: cover;
}
img:not(.free),
picture:not(.free),
svg:not(.free),
video:not(.free) {
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding-top);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
.content-grid {
  --padding-inline: max(12px, 4vw);
  --content-max-width: 1400px;
  display: grid;
  width: 100%;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.full-width) {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
@media (min-width: 992px) {
  .content-grid .column-md-content {
    grid-column: content;
  }
}
img.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
:has(>.bg-image):not(picture),
:has(>picture>.bg-image) {
  position: relative;
}
/* ---------------------------------
STANDARDIZE ALL FIELDS
----------------------------------*/
.field-wrap {
  display: flex;
}
.field-wrap > label {
  display: block;
}
.field-wrap > div input,
.field-wrap textarea,
.field-wrap select,
.field-wrap .pikaday__container,
.field-wrap .pikaday__display {
  width: 100%;
}
.field-wrap > div input[type="checkbox"] {
  width: auto;
}
.field-wrap input[type="submit"],
.field-wrap input[type="button"],
.field-wrap button {
  width: auto;
}
.nf-field-label {
  order: 5;
}
.nf-field-description {
  width: 100%;
  order: 10;
}
.nf-field-element {
  order: 15;
}
/* ---------------------------------
LABEL ABOVE
----------------------------------*/
.label-above .nf-field-label {
  margin-bottom: 10px;
}
/* ---------------------------------
LABEL BELOW
----------------------------------*/
.label-below .nf-field-label {
  margin-top: 10px;
  order: 15;
}
.label-below .nf-field-element {
  order: 5;
}
/* ---------------------------------
LABEL HIDDEN
----------------------------------*/
.label-hidden .field-wrap {
  flex-wrap: wrap;
}
.label-hidden .nf-field-label {
  height: 0;
  margin: 0 !important;
  width: 100%;
  visibility: hidden;
}
.label-hidden .nf-field-description {
  width: 100%;
  order: 20;
}
.label-hidden .nf-field-element {
  width: 100%;
}
/* ---------------------------------
LABEL LEFT
----------------------------------*/
.label-left .field-wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.label-left .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 2%;
  text-align: right;
  width: 35%;
  order: 5;
}
.label-left .nf-field-label label {
  width: 100%;
}
.label-left .nf-field-description {
  margin-left: 35%;
}
.label-left .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 10;
}
.label-left .nf-after-field {
  margin-left: 36.5%;
}
/* ---------------------------------
LABEL RIGHT
----------------------------------*/
.label-right .field-wrap {
  flex-direction: row;
}
.label-right .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 2%;
  width: 35%;
  order: 10;
}
.label-right .nf-field-description {
  margin-right: 35%;
  order: 15;
}
.label-right .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 5;
}
.label-right .checkbox-wrap .nf-field-label {
  width: auto;
}
.label-right .checkbox-wrap .nf-field-element {
  width: 20px;
}
.label-right .nf-after-field {
  width: 65%;
}
/* ---------------------------------
ADJUST SOME LABEL ABOVE & BELOW ISSUES
----------------------------------*/
.label-below .field-wrap,
.label-above .field-wrap {
  flex-direction: column;
  flex-flow: wrap;
}
.label-below .nf-field-element,
.label-above .nf-field-element {
  margin: 0;
  width: 100%;
}
/* ---------------------------------
ADJUST SOME LABEL LEFT & RIGHT ISSUES
----------------------------------*/
.label-left .textarea-wrap .nf-field-label,
.label-left .listradio-wrap .nf-field-label,
.label-left .listcheckbox-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label,
.label-right .listradio-wrap .nf-field-label,
.label-right .listcheckbox-wrap .nf-field-label {
  align-items: flex-start;
}
.label-left .textarea-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label {
  margin-top: 5px;
}
.label-left .html-wrap,
.label-left .hr-wrap,
.label-right .html-wrap,
.label-right .hr-wrap {
  display: block;
}
.label-left .html-wrap .nf-field-element,
.label-left .hr-wrap .nf-field-element,
.label-right .html-wrap .nf-field-element,
.label-right .hr-wrap .nf-field-element {
  display: block;
  margin: 0;
  width: 100%;
}
/* ---------------------------------
FIELD DESCRIPTION POSITIONS
----------------------------------*/
/*
 * Ninja Forms - Form Display Structure
 */
.ninja-forms-form-wrap *,
.ninja-forms-form-wrap *:after,
.ninja-forms-form-wrap *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.nf-response-msg {
  display: none;
}
.nf-field-container,
#ninja_forms_required_items {
  clear: both;
  position: relative;
  margin-bottom: 25px;
}
.nf-field-container::after,
#ninja_forms_required_items::after {
  clear: both;
  content: "";
  display: block;
}
.nf-field-container.hidden-container,
.nf-field-container.hr-container,
#ninja_forms_required_items.hidden-container,
#ninja_forms_required_items.hr-container {
  margin: 0;
  height: auto;
}
.nf-field-container.hidden-container .nf-field-label,
.nf-field-container.hr-container .nf-field-label,
#ninja_forms_required_items.hidden-container .nf-field-label,
#ninja_forms_required_items.hr-container .nf-field-label {
  display: none;
}
.nf-field-container.html-container .nf-field-label,
#ninja_forms_required_items.html-container .nf-field-label {
  display: none;
}
.nf-field-label .nf-label-span,
.nf-field-label label {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.nf-field-element {
  position: relative;
}
.nf-field-element input,
.nf-field-element select,
.nf-field-element textarea {
  margin: 0;
  width: auto;
  height: auto;
  vertical-align: inherit;
}
.nf-field-element textarea {
  height: 200px;
}
.nf-field-description p:last-child {
  margin: 0;
}
.nf-help {
  background: url("../img/help-info.png") no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
}
.nf-input-limit {
  font-size: 12px;
  margin-top: 5px;
}
.nf-static {
  padding: 0 10px;
}
.nf-after-field .nf-error-msg {
  margin-right: 10px;
}
/* ---------------------------------
Screen Reader CSS
----------------------------------*/
.nf-sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  opacity: 0;
  white-space: nowrap;
  width: 1px;
}
/* ---------------------------------
Date/Time FIELD
----------------------------------*/
.nf-field-element .time-wrap {
  padding: 1px;
}
/* ---------------------------------
CHECKBOX FIELD
----------------------------------*/
/* ---------------------------------
RADIO & CHECKBOX LISTS
----------------------------------*/
.list-radio-wrap .nf-field-element ul,
.list-radio-wrap .nf-field-element li,
.list-checkbox-wrap .nf-field-element ul,
.list-checkbox-wrap .nf-field-element li,
.list-image-wrap .nf-field-element ul,
.list-image-wrap .nf-field-element li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.list-radio-wrap .nf-field-element ul input,
.list-radio-wrap .nf-field-element li input,
.list-checkbox-wrap .nf-field-element ul input,
.list-checkbox-wrap .nf-field-element li input,
.list-image-wrap .nf-field-element ul input,
.list-image-wrap .nf-field-element li input {
  margin-right: 5px;
}
.list-radio-wrap .nf-field-element li,
.list-checkbox-wrap .nf-field-element li,
.list-image-wrap .nf-field-element li {
  padding-left: 10px;
  margin: 0 0 5px !important;
  text-indent: initial !important;
}
.list-radio-wrap .nf-field-element li label,
.list-checkbox-wrap .nf-field-element li label,
.list-image-wrap .nf-field-element li label {
  display: block;
  float: initial;
  width: auto;
  margin-left: 1.5em;
}
.list-radio-wrap .nf-field-element li input,
.list-checkbox-wrap .nf-field-element li input,
.list-image-wrap .nf-field-element li input {
  width: auto !important;
  float: left;
  margin-top: 0.25em;
}
.listimage-wrap li {
  width: 100%;
  height: 100%;
  display: inline-grid;
}
.listimage-wrap li label {
  padding: 5px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
}
.listimage-wrap li label.nf-checked-label {
  border-width: 2px;
  border-style: solid;
  border-color: #007acc;
  transition: all 0.5s;
}
.listimage-wrap li label img {
  display: block;
}
.listimage-wrap li input:focus + label {
  outline: 2px solid;
}
/* ---------------------------------
PRODUCT FIELD
----------------------------------*/
.product-wrap > div input {
  width: 80px !important;
}
.product-wrap > div .nf-product-field span {
  padding: 0 5px;
}
/* ---------------------------------
STAR RATING
----------------------------------*/
.starrating-wrap .star {
  border-bottom: 0;
}
/* ---------------------------------
HONEYPOT
----------------------------------*/
.nf-form-hp {
  position: absolute;
  visibility: hidden;
}
/* ---------------------------------
SELECT LIST
----------------------------------*/
.list-select-wrap div div {
  display: none;
}
/* ---------------------------------
COLORS
As minimal as possible
----------------------------------*/
.ninja-forms-req-symbol,
.nf-error-msg {
  color: #E80000;
}
.nf-error .ninja-forms-field {
  border: 1px solid #E80000;
}
.nf-error.listimage-wrap .nf-field-element ul {
  border: 1px solid #E80000;
}
.nf-field-submit-error {
  padding: 15px;
}
.ninja-forms-noscript-message {
  background: #f1f1f1;
  border: 4px dashed #ccc;
  color: #333;
  display: block;
  font-size: 20px;
  margin: 20px 0;
  padding: 40px;
  text-align: center;
}
/* ---------------------------------
HELPER CLASSES
----------------------------------*/
.two-col-list ul li {
  float: left;
  width: 50%;
}
.three-col-list ul li {
  float: left;
  width: 33.33%;
}
.four-col-list ul li {
  float: left;
  width: 25%;
}
.five-col-list ul li {
  float: left;
  width: 20%;
}
.six-col-list ul li {
  float: left;
  width: 16.66%;
}
body .pika-label {
  background: transparent;
}
/* Column Classes
    Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */
.nf-form-cont .five-sixths,
.nf-form-cont .four-sixths,
.nf-form-cont .one-fourth,
.nf-form-cont .one-half,
.nf-form-cont .one-sixth,
.nf-form-cont .one-third,
.nf-form-cont .three-fourths,
.nf-form-cont .three-sixths,
.nf-form-cont .two-fourths,
.nf-form-cont .two-sixths,
.nf-form-cont .two-thirds {
  clear: initial;
  float: left;
  margin-left: 2.56410256%;
}
.nf-form-cont .five-sixths .inside,
.nf-form-cont .four-sixths .inside,
.nf-form-cont .one-fourth .inside,
.nf-form-cont .one-half .inside,
.nf-form-cont .one-sixth .inside,
.nf-form-cont .one-third .inside,
.nf-form-cont .three-fourths .inside,
.nf-form-cont .three-sixths .inside,
.nf-form-cont .two-fourths .inside,
.nf-form-cont .two-sixths .inside,
.nf-form-cont .two-thirds .inside {
  padding: 20px;
}
.nf-form-cont .five-sixths::after,
.nf-form-cont .four-sixths::after,
.nf-form-cont .one-fourth::after,
.nf-form-cont .one-half::after,
.nf-form-cont .one-sixth::after,
.nf-form-cont .one-third::after,
.nf-form-cont .three-fourths::after,
.nf-form-cont .three-sixths::after,
.nf-form-cont .two-fourths::after,
.nf-form-cont .two-sixths::after,
.nf-form-cont .two-thirds::after {
  clear: both;
  content: "";
  display: block;
}
.nf-form-cont .one-half,
.nf-form-cont .three-sixths,
.nf-form-cont .two-fourths {
  width: 48.71794872%;
}
.nf-form-cont .one-third,
.nf-form-cont .two-sixths {
  width: 31.62393162%;
}
.nf-form-cont .four-sixths,
.nf-form-cont .two-thirds {
  width: 65.81196581%;
}
.nf-form-cont .one-fourth {
  width: 23.07692308%;
}
.nf-form-cont .three-fourths {
  width: 74.35897436%;
}
.nf-form-cont .one-sixth {
  width: 14.52991453%;
}
.nf-form-cont .five-sixths {
  width: 82.90598291%;
}
.nf-form-cont .first {
  clear: both;
  margin-left: 0;
}
/* ---------------------------------
STANDARDIZE ALL FIELDS
----------------------------------*/
.field-wrap {
  display: flex;
}
.field-wrap > label {
  display: block;
}
.field-wrap > div input,
.field-wrap textarea,
.field-wrap select,
.field-wrap .pikaday__container,
.field-wrap .pikaday__display {
  width: 100%;
}
.field-wrap > div input[type="checkbox"] {
  width: auto;
}
.field-wrap input[type="submit"],
.field-wrap input[type="button"],
.field-wrap button {
  width: auto;
}
.nf-field-label {
  order: 5;
}
.nf-field-description {
  width: 100%;
  order: 10;
}
.nf-field-element {
  order: 15;
}
/* ---------------------------------
LABEL ABOVE
----------------------------------*/
.label-above .nf-field-label {
  margin-bottom: 10px;
}
/* ---------------------------------
LABEL BELOW
----------------------------------*/
.label-below .nf-field-label {
  margin-top: 10px;
  order: 15;
}
.label-below .nf-field-element {
  order: 5;
}
/* ---------------------------------
LABEL HIDDEN
----------------------------------*/
.label-hidden .field-wrap {
  flex-wrap: wrap;
}
.label-hidden .nf-field-label {
  height: 0;
  margin: 0 !important;
  width: 100%;
  visibility: hidden;
}
.label-hidden .nf-field-description {
  width: 100%;
  order: 20;
}
.label-hidden .nf-field-element {
  width: 100%;
}
/* ---------------------------------
LABEL LEFT
----------------------------------*/
.label-left .field-wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.label-left .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 2%;
  text-align: right;
  width: 35%;
  order: 5;
}
.label-left .nf-field-label label {
  width: 100%;
}
.label-left .nf-field-description {
  margin-left: 35%;
}
.label-left .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 10;
}
.label-left .nf-after-field {
  margin-left: 36.5%;
}
/* ---------------------------------
LABEL RIGHT
----------------------------------*/
.label-right .field-wrap {
  flex-direction: row;
}
.label-right .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 2%;
  width: 35%;
  order: 10;
}
.label-right .nf-field-description {
  margin-right: 35%;
  order: 15;
}
.label-right .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 5;
}
.label-right .checkbox-wrap .nf-field-label {
  width: auto;
}
.label-right .checkbox-wrap .nf-field-element {
  width: 20px;
}
.label-right .nf-after-field {
  width: 65%;
}
/* ---------------------------------
ADJUST SOME LABEL ABOVE & BELOW ISSUES
----------------------------------*/
.label-below .field-wrap,
.label-above .field-wrap {
  flex-direction: column;
  flex-flow: wrap;
}
.label-below .nf-field-element,
.label-above .nf-field-element {
  margin: 0;
  width: 100%;
}
/* ---------------------------------
ADJUST SOME LABEL LEFT & RIGHT ISSUES
----------------------------------*/
.label-left .textarea-wrap .nf-field-label,
.label-left .listradio-wrap .nf-field-label,
.label-left .listcheckbox-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label,
.label-right .listradio-wrap .nf-field-label,
.label-right .listcheckbox-wrap .nf-field-label {
  align-items: flex-start;
}
.label-left .textarea-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label {
  margin-top: 5px;
}
.label-left .html-wrap,
.label-left .hr-wrap,
.label-right .html-wrap,
.label-right .hr-wrap {
  display: block;
}
.label-left .html-wrap .nf-field-element,
.label-left .hr-wrap .nf-field-element,
.label-right .html-wrap .nf-field-element,
.label-right .hr-wrap .nf-field-element {
  display: block;
  margin: 0;
  width: 100%;
}
/*- SETTINGS -----*/
:root {
  --wpclu-header-height: 80px;
  --wpclu-header-height-mobile: 60px;
  --wpclu-header-padding: 25px;
  --wpclu-header-padding-mobile: 16px;
}
/*- GLOBAL STYLES -----*/
#header {
  position: fixed;
  --header-height: var(--wpclu-header-height-mobile);
  height: var(--header-height);
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 0px rgb(190 190 190 / 10%);
}
@media (min-width: 992px) {
  #header {
    --header-height: var(--wpclu-header-height);
  }
}
body:not(.scrolled):not(.menu-open) #header {
  background: #00000022;
}
body:not(.scrolled):not(.menu-open) #header svg .svg-text {
  fill: #ffffff;
}
body:not(.scrolled):not(.menu-open) #header svg .svg-sign {
  fill: #39c383;
}
#header .header-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
#header .website-logo a {
  display: inline-block;
  height: var(--header-height);
  padding-block: var(--wpclu-header-padding-mobile);
}
#header .website-logo a > * {
  height: 100%;
  width: auto;
  min-width: var(--header-height);
}
#header #hamburger {
  display: flex;
  border: none;
  background: transparent;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  overflow: hidden;
}
#header #hamburger span {
  color: transparent;
  height: 0;
  display: inline-block;
  width: 32px;
  border-top: 2px solid #000;
  position: relative;
}
#header #hamburger span:before,
#header #hamburger span:after {
  content: '';
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  border-top: 2px solid #000;
}
body:not(.scrolled):not(.menu-open) #header #hamburger span {
  border-top-color: #ffffff;
}
body:not(.scrolled):not(.menu-open) #header #hamburger span,
body:not(.scrolled):not(.menu-open) #header #hamburger span:before,
body:not(.scrolled):not(.menu-open) #header #hamburger span:after {
  border-top-color: #ffffff;
}
#header #hamburger span:before {
  top: -12px;
}
#header #hamburger span:after {
  bottom: -10px;
}
@media (min-width: 992px) {
  #header #hamburger {
    display: none;
  }
}
body.menu-open #header #hamburger span {
  border-top-color: transparent;
}
body.menu-open #header #hamburger span:before {
  transform: rotate(45deg);
  top: -2px;
}
body.menu-open #header #hamburger span:after {
  transform: rotate(-45deg);
  top: -2px;
}
#header #main-menu {
  display: none;
  position: absolute;
  top: var(--wpclu-header-height-mobile);
  height: calc(100dvh - var(--wpclu-header-height-mobile));
  padding-inline: var(--padding-inline);
  background: #ffffff;
  left: 0;
  right: 0;
  overflow: auto;
  overscroll-behavior: contain;
}
body.scrolled #header #main-menu {
  height: calc(100dvh - 60px);
}
#header #main-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-block: 12px 0;
}
#header #main-menu .menu li.menu-item-has-children {
  position: relative;
}
#header #main-menu .menu li.menu-item-has-children .sub-menu-opener {
  position: absolute;
  top: 0;
  right: calc(-1 * var(--padding-inline));
  height: 64px;
  width: 64px;
  border: none;
  background: transparent no-repeat right var(--padding-inline) center / 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 13'%3E%3Cpath fill='%23198754' d='M7.5 13 0 0h15Z' data-name='Polygon 1'/%3E%3C/svg%3E");
}
@media (min-width: 992px) {
  #header #main-menu .menu li.menu-item-has-children .sub-menu-opener {
    display: none;
  }
}
#header #main-menu .menu li a {
  display: block;
  padding-block: 1em;
  font-size: 18px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #e3e3e3;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 60ms ease-in-out;
}
#header #main-menu .menu li .sub-menu {
  display: none;
  list-style: none;
  padding-left: 1em;
}
#header #main-menu .menu li .sub-menu a {
  font-size: 0.85em;
  color: #686868;
}
#header #main-menu .menu li.active .sub-menu {
  display: block;
}
@media (min-width: 992px) {
  #header {
    height: var(--wpclu-header-height);
    transition: 60ms ease-in-out;
  }
  #header svg .svg-text,
  #header svg .svg-sign {
    transition: 60ms ease-in-out;
  }
  #header .website-logo a {
    padding-block: var(--wpclu-header-padding);
  }
  #header #main-menu {
    display: block;
    position: static;
    background: transparent;
    height: auto !important;
    box-shadow: none;
    overflow: visible;
    padding-inline: 0;
  }
  #header #main-menu .menu {
    flex-direction: row;
    flex-wrap: nowrap;
    margin-block: 0;
  }
  #header #main-menu .menu li {
    border-bottom: none;
  }
  #header #main-menu .menu li a {
    padding: 0 1em;
    font-size: 16px;
    height: var(--wpclu-header-height);
    line-height: var(--wpclu-header-height);
    white-space: nowrap;
    border-bottom: none;
    position: relative;
  }
  #header #main-menu .menu li a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 4px;
    background: #198754;
    width: 0;
    transform: translateX(-50%);
  }
  body:not(.scrolled):not(.menu-open) #header #main-menu .menu li a:after {
    background: #ffffff;
  }
  #header #main-menu .menu li a:hover {
    color: #198754;
  }
  body:not(.scrolled):not(.menu-open) #header #main-menu .menu li a {
    color: #ffffff;
  }
  #header #main-menu .menu li.current-menu-item a:after {
    width: 100%;
  }
  #header #main-menu .menu li.menu-item-has-children:hover .sub-menu {
    display: grid;
    position: absolute;
    background: #FFF;
    top: calc(100% + 0px);
    right: 0;
    padding-left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  }
  #header #main-menu .menu li.menu-item-has-children:hover .sub-menu a {
    color: #000000;
    height: 50px;
    line-height: 50px;
    padding-inline: 20px;
    display: block;
    transition: none;
  }
  #header #main-menu .menu li.menu-item-has-children:hover .sub-menu a:after {
    display: none;
  }
  #header #main-menu .menu li.menu-item-has-children:hover .sub-menu a:hover {
    color: #FFF;
    background: #198754;
  }
  #header #main-menu .sub-menu {
    display: none;
  }
}
#header.menu-open {
  background: #ffffff;
}
#header.menu-open #main-menu {
  display: block;
  flex-direction: column;
  justify-content: center;
}
#header.menu-open #hamburger span {
  border-top-color: transparent;
}
#header.menu-open #hamburger span:before {
  transform: rotate(45deg);
  top: -2px;
}
#header.menu-open #hamburger span:after {
  transform: rotate(-45deg);
  top: -2px;
}
/* Bootstrap overrides */
.btn {
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-border-radius: 4rem;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #279e67;
  --bs-btn-hover-border-color: #279e67;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #137648;
  --bs-btn-active-border-color: #137648;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}
/*- CUSTOM STYLES -----*/
section.full-width.temp {
  border: 10px solid #dbdbdb;
  margin-block: 10px;
}
section.full-width.temp p {
  margin-bottom: 0;
}
.py-std {
  padding-block: 60px;
}
body {
  background: #f8f8f8;
  color: #333;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.site-main {
  background: #F8F8F8;
  z-index: 2;
  position: relative;
  box-shadow: 0 20px 20px #000000b0;
  min-height: 100dvh;
}
h2:not(.raw),
.h2:not(.raw) {
  position: relative;
  padding-bottom: 1.2rem;
}
h2:not(.raw):after,
.h2:not(.raw):after {
  content: '';
  width: 3rem;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #198754;
}
.hero-image {
  background: #153d64;
  color: #FFF;
  padding-block: calc(var(--wpclu-header-height-mobile) + 60px) 60px;
}
@media (min-width: 992px) {
  .hero-image {
    padding-block: calc(var(--wpclu-header-height) + 60px) 60px;
  }
}
.hero-image .content-grid:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(60deg, #000000e8, #00000059);
}
.hero-image .content-grid .content-grid__item {
  position: relative;
  max-width: 800px;
}
section.section-alfa img {
  border-radius: 10px;
}
section.section-offer-list {
  background: #fafafa;
}
section.section-offer-list .offer-list {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  min-height: 120px;
  padding: 0;
  font-weight: 400;
  margin-inline: calc(-1 * var(--padding-inline));
}
@media (min-width: 768px) {
  section.section-offer-list .offer-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  section.section-offer-list .offer-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
section.section-offer-list .offer-list .offer-list__item {
  position: relative;
  overflow: hidden;
}
section.section-offer-list .offer-list .offer-list__item a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  text-align: center;
  padding: 20px;
}
section.section-offer-list .offer-list .offer-list__item a .offer-list__item-title {
  position: relative;
  z-index: 1;
  transition: all 200ms ease-out;
}
section.section-offer-list .offer-list .offer-list__item a img {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  transition: all 200ms ease-out;
}
section.section-offer-list .offer-list .offer-list__item a:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #137648;
  transform: translateY(-100%);
  transition: all 200ms ease-out;
}
section.section-offer-list .offer-list .offer-list__item a:hover {
  color: #FFF;
}
section.section-offer-list .offer-list .offer-list__item a:hover img {
  filter: grayscale() brightness(0) invert();
}
section.section-offer-list .offer-list .offer-list__item a:hover .offer-list__item-title {
  color: #FFF;
}
section.section-offer-list .offer-list .offer-list__item a:hover:after {
  transform: translateY(0);
}
/* Hero slider */
.hero-slider .splide__slide .content-grid {
  padding-block: calc(var(--wpclu-header-height-mobile) + 80px) 80px;
  position: relative;
  color: #FFF;
  height: 100%;
  min-height: min(70vw, calc(100dvh - 120px));
  display: grid;
  align-items: center;
}
.hero-slider .splide__slide .content-grid:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(60deg, #000000e8, #00000059);
}
.hero-slider .splide__slide .content-grid .content-grid__item {
  position: relative;
  max-width: 600px;
}
.hero-slider .splide__arrow {
  top: auto;
  bottom: 0;
}
ul.boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  padding: 0;
  gap: min(20px, var(--padding-inline));
}
@media (min-width: 768px) {
  ul.boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  ul.boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
ul.boxes .box {
  background: #FFF;
  padding: 30px;
  border: 1px solid #f2f2f2;
  border-left: 5px solid #198754;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
ul.boxes .box .box-image {
  margin: -30px -30px 20px;
  width: calc(100% + 60px);
  max-width: none !important;
  aspect-ratio: 3;
  object-position: center;
}
ul.boxes .box .box-title {
  margin-bottom: 0.3em;
}
ul.boxes .box .box-subtitle {
  text-transform: uppercase;
  font-weight: 700;
  color: #153d64;
  font-size: 14px;
}
ul.boxes .box .box-text {
  margin-bottom: 0;
  font-size: 15px;
  color: #000;
}
ul.boxes .box .box-icon {
  width: 100%;
  height: 64px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
  transition: all 200ms ease-out;
}
ul.boxes .box a.box-link {
  text-decoration: none;
  text-align: right;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  display: inline-block;
  padding-left: 3rem;
}
ul.boxes .box a.box-link:before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: #198754;
  display: inline-block;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
}
ul.boxes .box a.box-link:after {
  content: '';
  position: absolute;
  inset: 0;
}
ul.boxes .box:has(a:hover) .box-icon {
  transform: translateY(-5px);
}
ul.boxes .box:has(a:hover) .box-title {
  color: #198754;
}
ul.features-list {
  display: grid;
  gap: 1em;
  margin: 0;
}
@media (min-width: 1200px) {
  ul.features-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
ul.features-list li {
  padding-left: 2em;
  position: relative;
  font-size: 16px;
}
ul.features-list li:after {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 147 146'%3E%3Cpath fill='%23198754' d='M43 42h27v28H40a148 148 0 0 1 3-28Zm0 62h27V76H40a148 148 0 0 0 3 28Zm27-68V0C59 2 50 16 45 36h25Zm40 68h30a73 73 0 0 0 7-28h-34a157 157 0 0 1-3 28Zm0-62a158 158 0 0 1 3 28h34a73 73 0 0 0-7-28h-30Zm-1-6h28A74 74 0 0 0 91 2c8 7 14 19 18 34ZM70 146v-36H45c5 20 14 34 25 36Zm32-110C97 16 87 2 76 0v36h26Zm5 40H76v28h28a149 149 0 0 0 3-28ZM0 76a73 73 0 0 0 7 28h30a157 157 0 0 1-3-28H0Zm38 34H10a74 74 0 0 0 45 34c-7-7-13-19-17-34Zm71 0c-4 15-10 27-18 34a74 74 0 0 0 46-34ZM38 36C42 21 48 9 55 2a74 74 0 0 0-45 34Zm66 6H76v28h31a149 149 0 0 0-3-28ZM7 42a73 73 0 0 0-7 28h34a158 158 0 0 1 3-28H7Zm69 68v36c11-2 21-16 26-36H76Z' data-name='Path 1'/%3E%3C/svg%3E");
}
.nf-form-content {
  margin: 20px -5px;
}
/* Footer */
footer.content-grid {
  background: #333;
  color: #FFF;
  font-size: 15px;
  padding-block: 60px;
  position: sticky;
  bottom: 0;
  z-index: 0;
}
footer.content-grid svg#footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}
footer.content-grid .footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer.content-grid .footer-menu a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
}
footer.content-grid a {
  color: #FFF;
}
