/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
/* stylelint-disable no-empty-source */
/* stylelint-enable no-empty-source */
.form-style .gform_required_legend {
  display: none;
}
.form-style .gfield_description {
  font-size: 0.875rem;
}
.form-style .gfield .gfield_radio input,
.form-style .gfield .gfield_checkbox input {
  display: none;
}
.form-style .gfield .gfield_radio label,
.form-style .gfield .gfield_checkbox label {
  position: relative;
  font-size: 0.875rem;
  color: #002e2e;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.form-style .gfield .gfield_radio label::before,
.form-style .gfield .gfield_checkbox label::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 2px solid #066;
  border-radius: 4px;
  margin-right: 10px;
}
.form-style .gfield .gfield_radio label::after,
.form-style .gfield .gfield_checkbox label::after {
  position: absolute;
  top: 2px;
  left: 7.2px;
  display: inline-block;
  width: 5.4px;
  height: 11.8px;
  border-bottom: 1.8px solid #fff;
  border-right: 1.8px solid #fff;
  transform: rotate(45deg);
}
.form-style .gfield .gfield_radio input:checked + label::before,
.form-style .gfield .gfield_checkbox input:checked + label::before {
  background-color: #066;
}
.form-style .gfield .gfield_radio input:checked + label::after,
.form-style .gfield .gfield_checkbox input:checked + label::after {
  content: "";
}
.form-style .gfield .gfield_radio .gchoice,
.form-style .gfield .gfield_checkbox .gchoice {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 20px;
}
.form-style .gfield .gfield_radio .gchoice:last-child,
.form-style .gfield .gfield_checkbox .gchoice:last-child {
  margin-right: 0;
}
.form-style .gfield .gfield_radio label::before {
  border-radius: 50%;
}
.form-style .gfield .gfield_radio label::after {
  top: 1px;
  bottom: 0;
  left: 6px;
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  margin: auto;
  background-color: #066;
  transform: none;
}
.form-style .gfield .gfield_radio input:checked + label::before {
  background-color: transparent;
}
.form-style .gfield.honeypot {
  display: none;
}
.form-style .hidden_label > .gfield_label {
  display: none;
}
.form-style .gform_submission_error {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: red;
}

.form-style .hbspt-form fieldset {
  max-width: 100%;
}
.form-style .hbspt-form .inputs-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.form-style .hbspt-form .inputs-list li {
  line-height: 1;
}
.form-style .hbspt-form .hs-form-radio,
.form-style .hbspt-form .hs-form-booleancheckbox,
.form-style .hbspt-form .hs-form-checkbox {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 20px;
}
.form-style .hbspt-form .hs-form-radio label,
.form-style .hbspt-form .hs-form-booleancheckbox label,
.form-style .hbspt-form .hs-form-checkbox label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.form-style .hbspt-form .hs-form-radio label input,
.form-style .hbspt-form .hs-form-booleancheckbox label input,
.form-style .hbspt-form .hs-form-checkbox label input {
  display: none;
}
.form-style .hbspt-form .hs-form-radio label > span,
.form-style .hbspt-form .hs-form-booleancheckbox label > span,
.form-style .hbspt-form .hs-form-checkbox label > span {
  position: relative;
  display: block;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #002e2e;
}
.form-style .hbspt-form .hs-form-radio label > span::before,
.form-style .hbspt-form .hs-form-booleancheckbox label > span::before,
.form-style .hbspt-form .hs-form-checkbox label > span::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 2px solid #066;
  border-radius: 4px;
  margin-right: 10px;
}
.form-style .hbspt-form .hs-form-radio label > span::after,
.form-style .hbspt-form .hs-form-booleancheckbox label > span::after,
.form-style .hbspt-form .hs-form-checkbox label > span::after {
  position: absolute;
  top: 5px;
  left: 7px;
  display: inline-block;
  width: 5.4px;
  height: 11.8px;
  border-bottom: 1.8px solid #fff;
  border-right: 1.8px solid #fff;
  transform: rotate(45deg);
}
.form-style .hbspt-form .hs-form-radio label input:checked + span::before,
.form-style .hbspt-form .hs-form-booleancheckbox label input:checked + span::before,
.form-style .hbspt-form .hs-form-checkbox label input:checked + span::before {
  background-color: #066;
}
.form-style .hbspt-form .hs-form-radio label input:checked + span::after,
.form-style .hbspt-form .hs-form-booleancheckbox label input:checked + span::after,
.form-style .hbspt-form .hs-form-checkbox label input:checked + span::after {
  content: "";
}
.form-style .hbspt-form .hs-form-radio:last-child,
.form-style .hbspt-form .hs-form-booleancheckbox:last-child,
.form-style .hbspt-form .hs-form-checkbox:last-child {
  margin-right: 0;
}
.form-style .hbspt-form .hs-form-radio label span::before {
  border-radius: 50%;
}
.form-style .hbspt-form .hs-form-radio label span::after {
  top: 10px;
  left: 6px;
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  margin: auto;
  background-color: #066;
  transform: none;
}
.form-style .hbspt-form .hs-form-radio label input:checked + span::before {
  background-color: transparent;
}
.form-style .hbspt-form .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.form-style .hbspt-form .hs-error-msgs .hs-error-msg {
  color: red !important;
}
.form-style .hbspt-form .hs-error-msgs li + li {
  margin-top: 7px;
}
.form-style .hbspt-form .hs_error_rollup {
  margin-bottom: 20px;
}
.form-style .hbspt-form .hs_error_rollup .hs-error-msgs label {
  font-size: 1rem;
  line-height: 1.5;
  color: red;
}
.form-style .hbspt-form .hs_recaptcha {
  margin-top: 40px;
}
.form-style .hbspt-form .hs-richtext {
  margin-bottom: 20px;
}
.form-style .hbspt-form .hs-richtext:last-child {
  margin-bottom: 40px;
}
.form-style .hbspt-form .hs-richtext h1,
.form-style .hbspt-form .hs-richtext h2,
.form-style .hbspt-form .hs-richtext h3,
.form-style .hbspt-form .hs-richtext h4,
.form-style .hbspt-form .hs-richtext h5,
.form-style .hbspt-form .hs-richtext h6 {
  margin-bottom: 15px;
  font-size: 1.125rem;
  line-height: 1.3;
}
.form-style .hbspt-form .hs-richtext img {
  display: block;
}
.form-style .hbspt-form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0;
}

@font-face {
  font-family: Kontrapunkt;
  src: url(/app/themes/zanders/dist/fonts/Kontrapunkt-Light.woff2?2deb4b72fede647b21af713b80d823a2) format("woff2"), url(/app/themes/zanders/dist/fonts/Kontrapunkt-Light.woff?f89de12683b7caa5d307d418e6c4d129) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Kontrapunkt;
  src: url(/app/themes/zanders/dist/fonts/Kontrapunkt-LightItalic.woff2?03e0423fc33e6d8908937a34ab5b118a) format("woff2"), url(/app/themes/zanders/dist/fonts/Kontrapunkt-LightItalic.woff?e3e42f33bab2699dd7cde419a429e53d) format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Kontrapunkt;
  src: url(/app/themes/zanders/dist/fonts/Kontrapunkt-Bold.woff2?942d7f9deabab1755996677f98eaa743) format("woff2"), url(/app/themes/zanders/dist/fonts/Kontrapunkt-Bold.woff?0c8089f8ef677f1325d76af741c3dfbd) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: 0;
}

html[lang=de-DE] h1,
html[lang=de-DE] h2,
html[lang=de-DE] h3,
html[lang=de-DE] h4,
html[lang=de-DE] h5,
html[lang=de-DE] h6, html[lang=nl-NL] h1,
html[lang=nl-NL] h2,
html[lang=nl-NL] h3,
html[lang=nl-NL] h4,
html[lang=nl-NL] h5,
html[lang=nl-NL] h6 {
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

h1,
.h1 {
  font-size: 4.25rem;
  line-height: 4.625rem;
}

h2,
.h2 {
  font-size: 3.25rem;
  line-height: 3.5rem;
}

h3,
.h3 {
  font-size: 2.625rem;
  line-height: 3rem;
}

h4,
.h4 {
  font-size: 2rem;
  line-height: 2.375rem;
}

h5,
.h5 {
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

h6,
.h6 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

p,
li {
  font-size: 1rem;
  line-height: 1.3;
}

*::selection {
  color: #fff;
  background-color: #000;
}

.wysiwyg > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 599px) {
  .wysiwyg h1,
  .wysiwyg .h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 599px) {
  .wysiwyg h2,
  .wysiwyg .h2 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
.wysiwyg h3,
.wysiwyg .h3 {
  font-weight: 300;
}
@media only screen and (max-width: 599px) {
  .wysiwyg h3,
  .wysiwyg .h3 {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 599px) {
  .wysiwyg h4,
  .wysiwyg .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 599px) {
  .wysiwyg h5,
  .wysiwyg .h5 {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .wysiwyg h6,
  .wysiwyg .h6 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.0625rem;
  }
}
@media only screen and (max-width: 599px) {
  .wysiwyg p,
  .wysiwyg li {
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}
.wysiwyg a {
  font-weight: 700;
  text-decoration: underline;
  color: #066;
  transition: color 300ms;
}
.wysiwyg a:hover {
  color: #87e0b0;
}
.wysiwyg .btn {
  text-decoration: none;
}
@media only screen and (max-width: 599px) {
  .wysiwyg .btn--primary {
    font-size: 0.875rem;
  }
}
.wysiwyg li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 26px;
}
.wysiwyg ul,
.wysiwyg ol {
  padding: 0;
  padding-left: 20px;
  list-style: none;
  list-style-position: inside;
}
.wysiwyg ul ul,
.wysiwyg ol ul {
  margin-top: 20px;
}
.wysiwyg ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #002e2e;
}
.wysiwyg ol {
  counter-reset: counter;
}
.wysiwyg ol > li {
  counter-increment: counter;
}
.wysiwyg ol > li::before {
  content: counter(counter) ".";
  position: absolute;
  top: 3px;
  left: 0;
}
.wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.wysiwyg ._brlbs-responsive-table {
  text-align: left;
}

*,
::before,
::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.prevent-overscroll {
  overscroll-behavior: none;
}

body {
  font-family: kontrapunkt, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  overflow-x: hidden;
  margin: 0;
  color: #002e2e;
}
body.no-scroll {
  overflow-y: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms, visibility 400ms;
}
body.show-overlay::before {
  opacity: 1;
  visibility: visible;
}
body.has-hero-carousel {
  padding-top: 100vh;
}

main {
  overflow: hidden;
  margin-top: 110px;
}
@media only screen and (max-width: 599px) {
  main {
    margin-top: 80px;
  }
}
.has-hero-carousel main, .single-event main {
  margin-top: 0;
}

.header-nav--transparent + main {
  margin-top: 0;
}

.page-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.page-content > *:last-child {
  margin-bottom: 0;
}

.svg-icon-wrapper {
  position: relative;
  display: inline-block;
}

.svg-icon--spinner {
  width: 40px;
  height: 40px;
}
.svg-icon--spinner circle {
  stroke: #000;
}
.svg-icon--logo {
  width: 267px;
  height: 47px;
  fill: #002e2e;
}

.icon {
  position: relative;
  display: inline-block;
}

.icon--hamburger {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 25px;
  background-color: #002e2e;
}
.icon--hamburger::before, .icon--hamburger::after {
  content: "";
  position: relative;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: 25px;
  background-color: #002e2e;
}
.icon--hamburger::before {
  top: -13px;
}
.icon--hamburger::after {
  top: 9px;
}
@media only screen and (max-width: 599px) {
  .icon--hamburger span {
    height: 2px;
  }
  .icon--hamburger span::before {
    top: -9px;
  }
  .icon--hamburger span::after {
    top: 8px;
  }
}

.icon--cross {
  width: 100%;
  height: 2px;
}
.icon--cross,
.icon--cross * {
  cursor: pointer;
}
.icon--cross::before, .icon--cross::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 25px;
  background-color: #002e2e;
  opacity: 1;
  transform: rotate(45deg);
}
.icon--cross::after {
  transform: rotate(-45deg);
}

.force-aspect-ratio {
  position: relative;
  padding-bottom: 56.25%;
}
.force-aspect-ratio img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;"; /* stylelint-disable-line */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: 0;
  font-size: inherit;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
  padding: 0;
  font-family: kontrapunkt, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}
.btn * {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.btn--bare {
  letter-spacing: initial;
}
.btn--primary {
  max-width: 230px;
  padding-bottom: 14px;
  padding-right: 30px;
  color: #066;
}
.btn--primary::after, .btn--primary::before {
  content: "";
  position: absolute;
}
.btn--primary::after {
  content: "\f178";
  display: inline-block;
  /* stylelint-disable font-family-no-missing-generic-family-keyword */
  font-family: "Font Awesome 6 Pro";
  /* stylelint-enable font-family-no-missing-generic-family-keyword */
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  bottom: 11px;
  right: 0;
}
.btn--primary::before {
  bottom: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #066;
  transition: width 400ms, border-color 400ms;
}
.btn--primary:hover, .btn--primary:active {
  color: #001414;
}
.btn--primary:hover::before, .btn--primary:active::before {
  width: 0;
  border-color: #001414;
}
.btn--primary.reverse-direction {
  padding-left: 30px;
  padding-right: 0;
}
.btn--primary.reverse-direction::after {
  left: 0;
  right: auto;
  transform: rotate(180deg);
}
.btn--primary.reverse-direction::before {
  left: 0;
  right: auto;
}
.btn--primary.btn--light {
  color: #87e0b0;
}
.btn--primary.btn--light::before {
  border-color: #87e0b0;
}
.btn--primary.btn--light:hover {
  color: #b0ffd9;
}
.btn--primary.btn--light:hover::before {
  border-color: #b0ffd9;
}
.btn--primary.btn--gold {
  color: #c3a86b;
}
.btn--primary.btn--gold::before {
  border-color: #c3a86b;
}
.btn--primary.btn--gold:hover {
  color: #d1b273;
}
.btn--primary.btn--gold:hover::before {
  border-color: #d1b273;
}
.btn--primary[disabled] {
  color: #a6b5bd !important;
  cursor: default !important;
}
.btn--primary[disabled]::before {
  width: 100% !important;
  border-color: #a6b5bd !important;
}
.btn--primary[disabled]::after {
  bottom: 15px;
}
.btn--impact, .btn--impact-down {
  max-width: 230px;
  letter-spacing: 0.1em;
  color: #066;
}
.btn--impact .arrow-container, .btn--impact-down .arrow-container {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-top: 10px;
}
.btn--impact .arrow-container::before, .btn--impact .arrow-container::after, .btn--impact-down .arrow-container::before, .btn--impact-down .arrow-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 400ms;
}
.btn--impact:hover, .btn--impact-down:hover {
  color: #001414;
}
.btn--impact.btn--light, .btn--impact-down.btn--light {
  color: #87e0b0;
}
.btn--impact.btn--light:hover, .btn--impact-down.btn--light:hover {
  color: #b0ffd9;
}
.btn--impact.btn--gold, .btn--impact-down.btn--gold {
  color: #c3a86b;
}
.btn--impact.btn--gold:hover, .btn--impact-down.btn--gold:hover {
  color: #d1b273;
}
.btn--impact[disabled], .btn--impact-down[disabled] {
  color: #a6b5bd !important;
  cursor: default !important;
}
.btn--impact[disabled] .arrow-container, .btn--impact-down[disabled] .arrow-container {
  cursor: default !important;
}
@media only screen and (max-width: 599px) {
  .btn--impact, .btn--impact-down {
    font-size: 0.875rem;
  }
  .btn--impact .arrow-container, .btn--impact-down .arrow-container {
    width: 40px;
    height: 40px;
    margin-top: 3px;
  }
  .btn--impact .arrow-container::before, .btn--impact .arrow-container::after, .btn--impact-down .arrow-container::before, .btn--impact-down .arrow-container::after {
    font-size: 2.1875rem;
  }
}
.btn--impact-small {
  font-size: 1rem;
}
.btn--impact-small .arrow-container {
  width: 30px;
  height: 30px;
  margin-top: 0;
}
.btn--impact-small .arrow-container::before, .btn--impact-small .arrow-container::after {
  font-size: 2.15rem;
}
.btn--impact .arrow-container::before, .btn--impact .arrow-container::after {
  content: "\f061";
  display: inline-block;
  /* stylelint-disable font-family-no-missing-generic-family-keyword */
  font-family: "Font Awesome 6 Pro";
  /* stylelint-enable font-family-no-missing-generic-family-keyword */
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.btn--impact .arrow-container::before {
  transform: translateX(-150%);
}
.btn--impact:hover .arrow-container::before {
  transform: translateX(0);
}
.btn--impact:hover .arrow-container::after {
  transform: translateX(150%);
}
.btn--impact[disabled] .arrow-container::before, .btn--impact[disabled] .arrow-container::after {
  transform: translateX(0) !important;
}
.btn--impact-down {
  text-align: center;
}
.btn--impact-down .arrow-container {
  width: 40px;
  margin: 10px auto 0;
  text-align: left;
}
.btn--impact-down .arrow-container::before, .btn--impact-down .arrow-container::after {
  content: "\f063";
  display: inline-block;
  /* stylelint-disable font-family-no-missing-generic-family-keyword */
  font-family: "Font Awesome 6 Pro";
  /* stylelint-enable font-family-no-missing-generic-family-keyword */
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.btn--impact-down .arrow-container::before {
  transform: translateY(-150%);
}
.btn--impact-down:hover .arrow-container::before {
  transform: translateY(0);
}
.btn--impact-down:hover .arrow-container::after {
  transform: translateY(150%);
}
.btn--impact-down[disabled] .arrow-container::before, .btn--impact-down[disabled] .arrow-container::after {
  transform: translateY(0) !important;
}
.btn--hamburger {
  width: 36px;
  height: 30px;
  line-height: 1;
}
@media only screen and (max-width: 599px) {
  .btn--hamburger {
    width: 28px;
    height: 22px;
  }
  .btn--hamburger .icon--hamburger::before {
    top: -9px;
  }
  .btn--hamburger .icon--hamburger::after {
    top: 6px;
  }
}
.btn--cross {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  line-height: 1;
}

hr,
.wp-block-separator {
  border-top: 2px solid #87e0b0;
  border-bottom: none;
  margin: 40px auto;
  color: #87e0b0;
}
hr.grey-color,
.wp-block-separator.grey-color {
  border-top: 2px solid #a6b5bd;
}

.block-line {
  border-top: 2px solid #87e0b0;
  padding-top: 40px;
}

.async-load {
  opacity: 0;
  transition: opacity 300ms;
}

/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.theme--white .page-content {
  background-color: #fff;
}
.theme--green {
  background-color: #87e0b0;
}
.theme--green h1,
.theme--green h2,
.theme--green h3,
.theme--green h4,
.theme--green h5,
.theme--green h6,
.theme--green p,
.theme--green li {
  color: #001414;
}
.theme--green .btn--primary:not(.theme--green .btn--primary.btn--gold) {
  color: #066;
}
.theme--green .btn--primary:not(.theme--green .btn--primary.btn--gold)::before {
  border-color: #066;
}
.theme--green .btn--primary:not(.theme--green .btn--primary.btn--gold):hover {
  color: #001414;
}
.theme--green .btn--primary:not(.theme--green .btn--primary.btn--gold):hover::before {
  border-color: #001414;
}
.theme--green .btn--impact:not(.theme--green .btn--impact.btn--gold,
.theme--green .btn--impact-down.btn--gold),
.theme--green .btn--impact-down:not(.theme--green .btn--impact.btn--gold,
.theme--green .btn--impact-down.btn--gold) {
  color: #066;
}
.theme--green .btn--impact:not(.theme--green .btn--impact.btn--gold,
.theme--green .btn--impact-down.btn--gold):hover,
.theme--green .btn--impact-down:not(.theme--green .btn--impact.btn--gold,
.theme--green .btn--impact-down.btn--gold):hover {
  color: #001414;
}
.theme--green .page-content {
  background-color: #87e0b0;
}
.theme--green-dark {
  background-color: #002e2e;
}
.theme--green-dark h1,
.theme--green-dark h2,
.theme--green-dark h3,
.theme--green-dark h4,
.theme--green-dark h5,
.theme--green-dark h6,
.theme--green-dark p,
.theme--green-dark li,
.theme--green-dark td {
  color: #f2f5f0;
}
.theme--green-dark ul li::before {
  background-color: #f2f5f0;
}
.theme--green-dark a {
  color: #87e0b0;
}
.theme--green-dark a:hover {
  color: #b0ffd9;
}
.theme--green-dark .btn--primary:not(.theme--green-dark .btn--primary.btn--gold, .theme--green-dark .btn--primary.btn--light) {
  color: #f2f5f0;
}
.theme--green-dark .btn--primary:not(.theme--green-dark .btn--primary.btn--gold, .theme--green-dark .btn--primary.btn--light)::before {
  border-color: #f2f5f0;
}
.theme--green-dark .btn--primary:not(.theme--green-dark .btn--primary.btn--gold, .theme--green-dark .btn--primary.btn--light):hover {
  color: #fff;
}
.theme--green-dark .btn--primary:not(.theme--green-dark .btn--primary.btn--gold, .theme--green-dark .btn--primary.btn--light):hover::before {
  border-color: #fff;
}
.theme--green-dark .btn--primary.btn--gold {
  color: #d1b273;
}
.theme--green-dark .btn--primary.btn--gold::before {
  border-color: #d1b273;
}
.theme--green-dark .btn--primary.btn--gold:hover {
  color: #d1b273;
}
.theme--green-dark .btn--primary.btn--gold:hover::before {
  border-color: #d1b273;
}
.theme--green-dark .btn--impact:not(.theme--green-dark .btn--impact.btn--gold, .theme--green-dark .btn--impact.btn--light,
.theme--green-dark .btn--impact-down.btn--gold,
.theme--green-dark .btn--impact-down.btn--light),
.theme--green-dark .btn--impact-down:not(.theme--green-dark .btn--impact.btn--gold, .theme--green-dark .btn--impact.btn--light,
.theme--green-dark .btn--impact-down.btn--gold,
.theme--green-dark .btn--impact-down.btn--light) {
  color: #f2f5f0;
}
.theme--green-dark .btn--impact:not(.theme--green-dark .btn--impact.btn--gold, .theme--green-dark .btn--impact.btn--light,
.theme--green-dark .btn--impact-down.btn--gold,
.theme--green-dark .btn--impact-down.btn--light):hover,
.theme--green-dark .btn--impact-down:not(.theme--green-dark .btn--impact.btn--gold, .theme--green-dark .btn--impact.btn--light,
.theme--green-dark .btn--impact-down.btn--gold,
.theme--green-dark .btn--impact-down.btn--light):hover {
  color: #fff;
}
.theme--green-dark .btn--impact.btn--gold,
.theme--green-dark .btn--impact-down.btn--gold {
  color: #d1b273;
}
.theme--green-dark .btn--impact.btn--gold:hover,
.theme--green-dark .btn--impact-down.btn--gold:hover {
  color: #d1b273;
}
.theme--green-dark .page-content {
  background-color: #002e2e;
}
.theme .theme--green {
  background-color: #87e0b0;
}
.theme .theme--green h1,
.theme .theme--green h2,
.theme .theme--green h3,
.theme .theme--green h4,
.theme .theme--green h5,
.theme .theme--green h6,
.theme .theme--green p,
.theme .theme--green li {
  color: #001414;
}
.theme .theme--green .btn--primary:not(.theme .theme--green .btn--primary.btn--gold) {
  color: #066;
}
.theme .theme--green .btn--primary:not(.theme .theme--green .btn--primary.btn--gold)::before {
  border-color: #066;
}
.theme .theme--green .btn--primary:not(.theme .theme--green .btn--primary.btn--gold):hover {
  color: #001414;
}
.theme .theme--green .btn--primary:not(.theme .theme--green .btn--primary.btn--gold):hover::before {
  border-color: #001414;
}
.theme .theme--green .btn--impact:not(.theme .theme--green .btn--impact.btn--gold,
.theme .theme--green .btn--impact-down.btn--gold),
.theme .theme--green .btn--impact-down:not(.theme .theme--green .btn--impact.btn--gold,
.theme .theme--green .btn--impact-down.btn--gold) {
  color: #066;
}
.theme .theme--green .btn--impact:not(.theme .theme--green .btn--impact.btn--gold,
.theme .theme--green .btn--impact-down.btn--gold):hover,
.theme .theme--green .btn--impact-down:not(.theme .theme--green .btn--impact.btn--gold,
.theme .theme--green .btn--impact-down.btn--gold):hover {
  color: #001414;
}
.theme .theme--green-dark {
  background-color: #002e2e;
}
.theme .theme--green-dark h1,
.theme .theme--green-dark h2,
.theme .theme--green-dark h3,
.theme .theme--green-dark h4,
.theme .theme--green-dark h5,
.theme .theme--green-dark h6,
.theme .theme--green-dark p,
.theme .theme--green-dark li,
.theme .theme--green-dark td {
  color: #f2f5f0;
}
.theme .theme--green-dark ul li::before {
  background-color: #f2f5f0;
}
.theme .theme--green-dark a {
  color: #87e0b0;
}
.theme .theme--green-dark a:hover {
  color: #b0ffd9;
}
.theme .theme--green-dark .btn--primary:not(.theme .theme--green-dark .btn--primary.btn--gold, .theme .theme--green-dark .btn--primary.btn--light) {
  color: #f2f5f0;
}
.theme .theme--green-dark .btn--primary:not(.theme .theme--green-dark .btn--primary.btn--gold, .theme .theme--green-dark .btn--primary.btn--light)::before {
  border-color: #f2f5f0;
}
.theme .theme--green-dark .btn--primary:not(.theme .theme--green-dark .btn--primary.btn--gold, .theme .theme--green-dark .btn--primary.btn--light):hover {
  color: #fff;
}
.theme .theme--green-dark .btn--primary:not(.theme .theme--green-dark .btn--primary.btn--gold, .theme .theme--green-dark .btn--primary.btn--light):hover::before {
  border-color: #fff;
}
.theme .theme--green-dark .btn--primary.btn--gold {
  color: #d1b273;
}
.theme .theme--green-dark .btn--primary.btn--gold::before {
  border-color: #d1b273;
}
.theme .theme--green-dark .btn--primary.btn--gold:hover {
  color: #d1b273;
}
.theme .theme--green-dark .btn--primary.btn--gold:hover::before {
  border-color: #d1b273;
}
.theme .theme--green-dark .btn--impact:not(.theme .theme--green-dark .btn--impact.btn--gold, .theme .theme--green-dark .btn--impact.btn--light,
.theme .theme--green-dark .btn--impact-down.btn--gold,
.theme .theme--green-dark .btn--impact-down.btn--light),
.theme .theme--green-dark .btn--impact-down:not(.theme .theme--green-dark .btn--impact.btn--gold, .theme .theme--green-dark .btn--impact.btn--light,
.theme .theme--green-dark .btn--impact-down.btn--gold,
.theme .theme--green-dark .btn--impact-down.btn--light) {
  color: #f2f5f0;
}
.theme .theme--green-dark .btn--impact:not(.theme .theme--green-dark .btn--impact.btn--gold, .theme .theme--green-dark .btn--impact.btn--light,
.theme .theme--green-dark .btn--impact-down.btn--gold,
.theme .theme--green-dark .btn--impact-down.btn--light):hover,
.theme .theme--green-dark .btn--impact-down:not(.theme .theme--green-dark .btn--impact.btn--gold, .theme .theme--green-dark .btn--impact.btn--light,
.theme .theme--green-dark .btn--impact-down.btn--gold,
.theme .theme--green-dark .btn--impact-down.btn--light):hover {
  color: #fff;
}
.theme .theme--green-dark .btn--impact.btn--gold,
.theme .theme--green-dark .btn--impact-down.btn--gold {
  color: #d1b273;
}
.theme .theme--green-dark .btn--impact.btn--gold:hover,
.theme .theme--green-dark .btn--impact-down.btn--gold:hover {
  color: #d1b273;
}
.theme--green-darker {
  background-color: #001414;
}
.theme--green-darker h1,
.theme--green-darker h2,
.theme--green-darker h3,
.theme--green-darker h4,
.theme--green-darker h5,
.theme--green-darker h6,
.theme--green-darker p,
.theme--green-darker li,
.theme--green-darker td {
  color: #f2f5f0;
}
.theme--green-darker ul li::before {
  background-color: #f2f5f0;
}
.theme--green-darker a:not(.btn) {
  color: #87e0b0;
}
.theme--green-darker a:not(.btn):hover {
  color: #b0ffd9;
}
.theme--green-darker .btn--primary:not(.theme--green-darker .btn--primary.btn--gold, .theme--green-darker .btn--primary.btn--light) {
  color: #f2f5f0;
}
.theme--green-darker .btn--primary:not(.theme--green-darker .btn--primary.btn--gold, .theme--green-darker .btn--primary.btn--light)::before {
  border-color: #f2f5f0;
}
.theme--green-darker .btn--primary:not(.theme--green-darker .btn--primary.btn--gold, .theme--green-darker .btn--primary.btn--light):hover {
  color: #fff;
}
.theme--green-darker .btn--primary:not(.theme--green-darker .btn--primary.btn--gold, .theme--green-darker .btn--primary.btn--light):hover::before {
  border-color: #fff;
}
.theme--green-darker .btn--primary.btn--gold {
  color: #d1b273;
}
.theme--green-darker .btn--primary.btn--gold::before {
  border-color: #d1b273;
}
.theme--green-darker .btn--primary.btn--gold:hover {
  color: #d1b273;
}
.theme--green-darker .btn--primary.btn--gold:hover::before {
  border-color: #d1b273;
}
.theme--green-darker .btn--impact:not(.theme--green-darker .btn--impact.btn--gold,
.theme--green-darker .btn--impact-down.btn--gold),
.theme--green-darker .btn--impact-down:not(.theme--green-darker .btn--impact.btn--gold,
.theme--green-darker .btn--impact-down.btn--gold) {
  color: #001414;
}
.theme--green-darker .btn--impact:not(.theme--green-darker .btn--impact.btn--gold,
.theme--green-darker .btn--impact-down.btn--gold):hover,
.theme--green-darker .btn--impact-down:not(.theme--green-darker .btn--impact.btn--gold,
.theme--green-darker .btn--impact-down.btn--gold):hover {
  color: #066;
}
.theme--green-darker .page-content {
  background-color: #001414;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.container, .container--default {
  max-width: calc(1644px + (2 * 7.1875vw));
  padding-left: 7.1875vw;
  padding-right: 7.1875vw;
}
.container--1370 {
  max-width: calc(1370px + (2 * 14.3229166667vw));
  padding-left: 14.3229166667vw;
  padding-right: 14.3229166667vw;
}
.container--1110 {
  max-width: calc(1110px + (2 * 21.09375vw));
  padding-left: 21.09375vw;
  padding-right: 21.09375vw;
}
.container--860 {
  max-width: calc(860px + (2 * 27.6041666667vw));
  padding-left: 27.6041666667vw;
  padding-right: 27.6041666667vw;
}
.container--735 {
  max-width: calc(735px + (2 * 30.859375vw));
  padding-left: 30.859375vw;
  padding-right: 30.859375vw;
}
.container--320 {
  max-width: calc(320px + (2 * 41.6666666667vw));
  padding-left: 41.6666666667vw;
  padding-right: 41.6666666667vw;
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .container {
    max-width: initial;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: initial;
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 599px) {
  .container {
    max-width: initial;
    padding-left: 18px;
    padding-right: 18px;
  }
}
.container--wysiwyg {
  margin: 60px auto;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .container--wysiwyg {
    padding-right: 33.33%;
  }
}
@media only screen and (min-width: 1920px) {
  .container--wysiwyg {
    padding-right: 33.33%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .container--wysiwyg {
    padding-right: 20%;
  }
}
@media only screen and (max-width: 1439px) {
  .container--wysiwyg {
    padding-right: 20%;
  }
}
@media only screen and (max-width: 599px) {
  .container--wysiwyg {
    padding-right: 18px;
  }
}
.container--wp-columns {
  margin: 60px auto;
}
.container--wp-columns .wp-block-columns {
  margin: 0 auto;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}

.lang-select--header-nav .lang-select__list a, .lang-select--sidebar .lang-select__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 0.875rem;
  text-decoration: none;
  color: #fff;
}
.lang-select--header-nav .lang-select__list a::before, .lang-select--sidebar .lang-select__list a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(/app/themes/zanders/dist/img/logo-icon-outline.svg?67873aa7af4ad78b3b39be578d4f592f);
  background-repeat: no-repeat;
  background-size: contain;
}
.lang-select--header-nav .lang-select__list a:hover, .lang-select--sidebar .lang-select__list a:hover {
  background-color: #001414;
}
.lang-select--header-nav .lang-select__list a.active::before, .lang-select--sidebar .lang-select__list a.active::before {
  background-image: url(/app/themes/zanders/dist/img/logo-icon-fill.svg?146ce4e8570bb9a2b1df4d48cb5169b9);
}
.lang-select--header-nav {
  position: relative;
  display: inline-block;
}
.lang-select--header-nav:hover .lang-select__current {
  color: #87e0b0;
  background-color: #002e2e;
}
.lang-select--header-nav:hover .lang-select__list {
  opacity: 1;
  visibility: visible;
}
.lang-select--header-nav .lang-select__current {
  display: inline-block;
  padding: 16px 16px 7px;
  font-size: 0.875rem;
  line-height: 1;
  color: #002e2e;
  transition: background-color 400ms;
  cursor: default;
}
.lang-select--header-nav .lang-select__list {
  position: absolute;
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 5px 0;
  list-style: none;
  text-align: left;
  background-color: #002e2e;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms, visibility 400ms;
}
.lang-select--header-nav .lang-select__list li {
  display: block;
}
.lang-select--sidebar {
  border-top: 1px solid rgba(0, 102, 102, 0.2);
}
.lang-select--sidebar .lang-select__current {
  display: block;
  width: 100%;
  max-width: none;
  padding: 12px 0;
  font-size: 1rem;
  text-align: center;
}
.lang-select--sidebar .lang-select__list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  gap: 8px;
}
.expand .lang-select--sidebar .lang-select__list {
  opacity: 1;
  visibility: visible;
}
.lang-select--sidebar .lang-select__list a {
  padding: 3px 16px;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #066;
}
@keyframes fade-in-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.search-overlay.show {
  display: block;
  animation-name: fade-in-animation;
  animation-duration: 150ms;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}
.search-overlay > .container {
  height: 100vh;
}
.search-overlay__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.search-overlay__header {
  position: absolute;
  top: 100px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.search-overlay__header .logo-link svg {
  fill: #fff;
}
.search-overlay__header .search-overlay-close-btn {
  position: relative;
  bottom: 9px;
}
.search-overlay__header .search-overlay-close-btn svg path {
  fill: #f2f5f0;
}
.search-overlay__body .search-form {
  position: relative;
}
.search-overlay__body .search-form .search-field {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-bottom: 2px solid #87e0b0;
  padding: 0 70px 26px 0;
  font-family: kontrapunkt, sans-serif;
  font-size: 2.8125rem;
  font-weight: 300;
  line-height: 1;
  color: #f2f5f0;
  background-color: transparent;
  transition: border-color 150ms;
}
.search-overlay__body .search-form .search-field:focus {
  border-bottom-color: #fff;
  outline: none;
}
.search-overlay__body .search-form .search-field::-webkit-input-placeholder {
  opacity: 1;
}
.search-overlay__body .search-form .search-field:-moz-placeholder {
  opacity: 1;
}
.search-overlay__body .search-form .search-field::-moz-placeholder {
  opacity: 1;
}
.search-overlay__body .search-form .search-field:-ms-input-placeholder {
  opacity: 1;
}
.search-overlay__body .search-form .search-submit-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 0 30px 20px;
}
.search-overlay__body .search-form .search-submit-btn svg {
  width: 38px;
  height: 38px;
  color: #fff;
}
.search-overlay__body .search-form .search-form__filters {
  display: none;
}
.search-overlay__body .search-suggested-terms-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 45px;
}
.search-overlay__body .search-suggested-terms-list .btn {
  color: #fff;
}
.search-overlay__body .search-suggested-terms-list .btn::before {
  border-color: #87e0b0;
}

.header-nav-full {
  position: relative;
  z-index: 2;
  height: 110px;
  background-color: #fff;
  transition: background-color 400ms;
}
.header-nav-full__top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}
.header-nav-full__top .lang-select {
  z-index: 1;
}
.header-nav-full__bottom {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.header-nav-full__bottom .logo-link {
  display: block;
}
.header-nav-full__nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1080px;
}
.header-nav-full .nav-menu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 8px;
  padding-left: 20px;
}
.header-nav-full .nav-menu .nav-menu-item > a {
  position: relative;
  display: inline-block;
}
.header-nav-full .nav-menu .nav-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 2px solid #002e2e;
  transition: width 400ms, border-color 400ms;
}
.header-nav-full .nav-menu .nav-menu-item--mega .nav-menu__submenu[data-depth="3"] > .current > a::after {
  width: 100%;
}
.header-nav-full .nav-menu .nav-menu-item--mega .nav-menu__submenu[data-depth="3"] > .current > a:hover::after {
  border-color: #87e0b0;
}
.header-nav-full .nav-menu .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="2"] > .current > a::after {
  width: 100%;
}
.header-nav-full .nav-menu .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="2"] > .current > a:hover::after {
  border-color: #87e0b0;
}
.header-nav-full .nav-menu .nav-menu-item--simple .current > a::after {
  width: 100%;
}
.header-nav-full .nav-menu .nav-menu-item--simple .current > a:hover::after {
  border-color: #87e0b0;
}
.header-nav-full .nav-menu > .nav-menu-item {
  padding: 0 20px;
}
@media only screen and (max-width: 1439px) {
  .header-nav-full .nav-menu > .nav-menu-item {
    padding: 0 12px;
  }
}
.header-nav-full .nav-menu > .nav-menu-item:nth-last-child(2) {
  position: relative;
}
.header-nav-full .nav-menu > .nav-menu-item:nth-last-child(2) .nav-menu__dropdown {
  right: -100px;
  white-space: nowrap;
}
.header-nav-full .nav-menu > .nav-menu-item:last-child {
  position: relative;
  padding-right: 0;
}
.header-nav-full .nav-menu > .nav-menu-item:last-child .nav-menu__dropdown {
  right: 0;
  white-space: nowrap;
}
.header-nav-full .nav-menu > .nav-menu-item > a {
  padding: 8px 0 36px;
  font-size: 1rem;
  color: #002e2e;
}
.header-nav-full .nav-menu > .nav-menu-item > a::after {
  bottom: 22px;
}
.header-nav-full .nav-menu > .nav-menu-item:hover > a {
  color: #002e2e;
}
.header-nav-full .nav-menu > .nav-menu-item:hover > a::after {
  width: 100%;
}
.header-nav-full .nav-menu > .nav-menu-item.current > a::after {
  width: 100%;
}
.header-nav-full .nav-menu__dropdown {
  position: absolute;
  width: auto;
  max-width: 1644px;
  overflow: hidden;
  margin: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms, visibility 400ms;
}
.header-nav-full .nav-menu-item--simple .nav-menu__dropdown {
  padding: 30px 35px;
}
.header-nav-full .nav-menu-item--simple .nav-menu__dropdown a {
  padding: 8px 0;
  font-size: 1.125rem;
}
.header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown {
  padding: 38px 35px;
}
.header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown > ul > li:nth-child(odd) {
  border-right: 1px solid #002e2e;
  padding-right: 40px;
}
.header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown > ul > li:nth-child(even) {
  padding-left: 40px;
}
.header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown > ul > li:nth-child(1) a, .header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown > ul > li:nth-child(2) a {
  padding-top: 0;
}
.header-nav-full .nav-menu-item--simple.nav-menu-item--grid .nav-menu__dropdown > ul > li:nth-last-child(-n+2) a {
  padding-bottom: 0;
}
.header-nav-full .nav-menu-item--mega .nav-menu__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding: 38px 0;
}
.header-nav-full .nav-menu-item--mega .nav-menu__dropdown > .nav-menu__submenu {
  display: flex;
}
.header-nav-full .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > .nav-menu-item {
  flex-basis: 0;
  flex-grow: 1;
  border-right: 1px solid #066;
  padding: 8px 50px;
}
.header-nav-full .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > .nav-menu-item:last-child {
  border-right: 0;
}
.header-nav-full .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > .nav-menu-item > a {
  margin-bottom: 25px;
  font-size: 2.25rem;
  line-height: 1.1;
}
.header-nav-full .nav-menu-item--mega .nav-menu__submenu[data-depth="2"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 70px;
}
.header-nav-full .nav-menu-item--mega .nav-menu__submenu[data-depth="2"] > .nav-menu-item > a {
  margin-bottom: 10px;
  font-size: 1.375rem;
}
.header-nav-full .nav-menu-item--mega .nav-menu__submenu[data-depth="3"] > .nav-menu-item > a {
  padding: 4px 0;
  font-size: 0.875rem;
}
.header-nav-full .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="1"] > .nav-menu-item {
  padding-left: 30px;
  padding-right: 30px;
}
.header-nav-full .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="1"] > .nav-menu-item:first-child {
  padding-left: 50px;
}
.header-nav-full .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="1"] > .nav-menu-item:last-child {
  padding-right: 50px;
}
.header-nav-full .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="1"] > .nav-menu-item > a {
  font-size: 1.5625rem;
}
.header-nav-full .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="2"] {
  grid-gap: 0 20px;
  grid-template-columns: 1fr;
}
.header-nav-full .nav-menu-item--mega.has-shallow-tree .nav-menu__submenu[data-depth="2"] > li > a {
  padding: 8px 0;
  font-size: 1.125rem;
}
.headroom--top .header-nav-full .nav-menu-item:hover .nav-menu__dropdown, .headroom--pinned .header-nav-full .nav-menu-item:hover .nav-menu__dropdown {
  opacity: 1;
  visibility: visible;
}
.headroom--not-top .header-nav-full {
  background-color: #fff;
}
@media only screen and (max-width: 1340px) {
  .header-nav-full {
    display: none;
  }
}

.header-nav-mobile {
  z-index: 0;
  display: none;
  height: 110px;
}
.header-nav-mobile__right {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header-nav-mobile__top-bar {
  position: relative;
  padding: 38px 0 20px;
  background-color: #fff;
  transition: background-color 400ms;
}
.header-nav-mobile__top-bar .container {
  display: flex;
  justify-content: space-between;
}
.header-nav-mobile__top-bar .btn {
  top: 6px;
}
@media only screen and (max-width: 599px) {
  .header-nav-mobile__top-bar {
    padding: 25px 0 17px;
  }
  .header-nav-mobile__top-bar .logo-link .svg-icon {
    width: 184px;
    height: 33px;
  }
}
@media only screen and (max-width: 1340px) {
  .header-nav-mobile {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .header-nav-mobile {
    height: 80px;
  }
}

.header-nav-mobile-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header-nav-mobile-sidebar.show {
  transform: translateX(0);
}
.header-nav-mobile-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: 74px;
  padding: 0 40px 0 0;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group {
  width: 140px;
  overflow: hidden;
  padding-left: 40px;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group__inner {
  width: 100%;
  height: 32px;
  transition: transform 300ms;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group .logo,
.header-nav-mobile-sidebar .sidebar-header-btn-group .btn {
  display: inline-block;
  vertical-align: top;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group .logo {
  position: absolute;
  width: 32px;
  height: 32px;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group .logo .svg-icon {
  width: 100%;
  height: 100%;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group .btn {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1;
  color: #002e2e;
  transform: translateX(100px);
  gap: 13px;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group .btn i {
  font-size: 1.625rem;
}
.header-nav-mobile-sidebar .sidebar-header-btn-group .btn span {
  position: relative;
  top: -2px;
}
.header-nav-mobile-sidebar.is-navigating-menu .sidebar-header-btn-group__inner {
  transform: translateX(-100%);
}
.header-nav-mobile-sidebar__nav {
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 20px;
  padding-bottom: 128px;
}
.header-nav-mobile-sidebar__nav .nav-menu-sidebar,
.header-nav-mobile-sidebar__nav .nav-menu__submenu {
  padding: 0 40px;
}
.header-nav-mobile-sidebar__nav .nav-menu-item--mega .nav-menu__submenu[data-depth="2"] {
  padding: 0;
}
.admin-bar .header-nav-mobile-sidebar__nav {
  max-height: calc(100% - 154px);
}
@media (max-width: 782px) {
  .admin-bar .header-nav-mobile-sidebar__nav {
    max-height: calc(100% - 168px);
  }
}
.header-nav-mobile-sidebar__footer {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  background-color: #fff;
  transition: background-color 300ms;
}
.header-nav-mobile-sidebar__footer .lang-select--sidebar {
  padding: 0 40px;
  background-color: #fff;
  transition: transform 300ms, background-color 300ms;
}
.header-nav-mobile-sidebar__footer .lang-select--sidebar .lang-select__current {
  color: #002e2e;
}
.header-nav-mobile-sidebar__footer.expand {
  background-color: #002e2e;
}
.header-nav-mobile-sidebar__footer.expand .lang-select--sidebar {
  background-color: #002e2e;
  transform: translateY(calc((100% - 48px) * -1));
}
.header-nav-mobile-sidebar__footer.expand .lang-select--sidebar .lang-select__current {
  color: #87e0b0;
}
.header-nav-mobile-sidebar__footer.expand .lang-select--sidebar .fa-chevron-down {
  position: relative;
  top: 2px;
  transform: rotate(180deg);
}

.nav-menu-sidebar {
  position: relative;
  transition: transform 300ms;
}
.nav-menu-sidebar .nav-menu-item a {
  display: inline-block !important;
  width: auto;
  font-size: 1.125rem;
}
.nav-menu-sidebar .nav-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: none;
  width: 100%;
  border-bottom: 2px solid #002e2e;
  transition: border-color 300ms;
}
.nav-menu-sidebar .nav-menu-item a:hover::after {
  border-color: #87e0b0;
}
.nav-menu-sidebar .nav-menu-item.current > a::after {
  display: block;
}
.nav-menu-sidebar > .nav-menu-item {
  margin-bottom: 34px;
}
.nav-menu-sidebar > .nav-menu-item > a {
  font-size: 1.625rem;
}
.nav-menu-sidebar .nav-menu__submenu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  height: 100%;
}
.nav-menu-sidebar .nav-menu__submenu .nav-menu-item {
  padding: 12px 0;
}
.nav-menu-sidebar .nav-menu__submenu .nav-menu-item:first-child {
  padding-top: 0;
}
.nav-menu-sidebar .nav-menu__submenu.show-submenu {
  display: block;
}
.nav-menu-sidebar.mega-menu-mobile-adjustment .nav-menu__submenu > li > a {
  opacity: 0;
}
.nav-menu-sidebar.mega-menu-mobile-adjustment .nav-menu__submenu.active-submenu > li > a {
  opacity: 1;
}
.nav-menu-sidebar.mega-menu-mobile-adjustment .nav-menu-item--mega .nav-menu__submenu[data-depth="1"].active-submenu > li {
  border-bottom-color: rgba(0, 102, 102, 0.2);
}
.nav-menu-sidebar.mega-menu-mobile-adjustment .nav-menu-item--mega .nav-menu__submenu[data-depth="1"].active-submenu .nav-menu__submenu[data-depth="2"] {
  position: relative;
}
.nav-menu-sidebar.mega-menu-mobile-adjustment .nav-menu-item--mega .nav-menu__submenu[data-depth="1"].active-submenu .nav-menu__submenu[data-depth="2"] > li > a {
  opacity: 1;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > li > a,
.nav-menu-sidebar .nav-menu-item--mega .nav-menu-item--header-link > a {
  margin-bottom: 24px;
  font-size: 1.625rem;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > li > a::after,
.nav-menu-sidebar .nav-menu-item--mega .nav-menu-item--header-link > a::after {
  display: none;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu-item--header-link {
  padding-bottom: 0;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu-item--header-link + .nav-menu-item {
  padding-top: 0;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > li {
  border-bottom: 1px solid transparent;
  padding: 30px 0 35px;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > li:first-child {
  padding-top: 0;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu__submenu[data-depth="1"] > li:last-child {
  border-bottom: 0;
}
.nav-menu-sidebar .nav-menu-item--mega .nav-menu__submenu[data-depth="2"] {
  left: 0;
  display: block;
}
@media only screen and (max-width: 599px) {
  .nav-menu-sidebar .nav-menu__submenu .nav-menu-item {
    font-size: 1rem;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}
#wpadminbar {
  position: fixed;
}

.admin-bar .header-nav {
  top: 31px;
}
@media (max-width: 782px) {
  .admin-bar .header-nav {
    top: 45px;
  }
}
.header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav .search-overlay-trigger-btn {
  position: relative;
  color: #002e2e;
}
.header-nav .nav-menu-item a {
  position: relative;
  display: block;
  font-weight: 700;
  text-decoration: none;
  color: #002e2e;
  transition: color 300ms;
}
.header-nav .nav-menu-item a:hover {
  color: #87e0b0;
}
.header-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 150vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms, visibility 400ms;
}
.header-nav.show-overlay::before {
  opacity: 1;
  visibility: visible;
}
.header-nav--transparent.headroom--top .header-nav-full {
  background-color: transparent;
}
.header-nav--transparent.headroom--top .header-nav-full .nav-menu .nav-menu-item > a::after {
  border-color: #fff;
}
.header-nav--transparent.headroom--top .header-nav-full:hover {
  background-color: #fff;
}
.header-nav--transparent.headroom--top .header-nav-full:hover .nav-menu .nav-menu-item > a::after {
  border-color: #002e2e;
}
.header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar {
  background-color: transparent;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full .nav-menu > .nav-menu-item > a {
  color: #fff;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full .logo-link svg {
  transition: fill 300ms;
  fill: #fff;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full .lang-select--header-nav .lang-select__current {
  color: #fff;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full .search-overlay-trigger-btn {
  color: #fff;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full:hover .nav-menu > .nav-menu-item > a {
  color: #002e2e;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full:hover .logo-link svg {
  fill: #002e2e;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full:hover .lang-select--header-nav .lang-select__current {
  color: #002e2e;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full:hover .lang-select--header-nav:hover .lang-select__current {
  color: #87e0b0;
}
.header-nav--transparent.headroom--top.white-text .header-nav-full:hover .search-overlay-trigger-btn {
  color: #002e2e;
}
.header-nav--transparent.headroom--top.white-text .header-nav-mobile .header-nav-mobile__top-bar .logo-link svg {
  transition: fill 300ms;
  fill: #fff;
}
.header-nav--transparent.headroom--top.white-text .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger, .header-nav--transparent.headroom--top.white-text .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::before, .header-nav--transparent.headroom--top.white-text .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::after {
  background-color: #fff;
  transition: background-color 300ms;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full .nav-menu > .nav-menu-item > a, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full .nav-menu > .nav-menu-item > a, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full .nav-menu > .nav-menu-item > a {
  color: #fff;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full .logo-link svg, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full .logo-link svg, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full .logo-link svg {
  transition: fill 300ms;
  fill: #fff;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full .lang-select--header-nav .lang-select__current, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full .lang-select--header-nav .lang-select__current, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full .lang-select--header-nav .lang-select__current {
  color: #fff;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full .search-overlay-trigger-btn, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full .search-overlay-trigger-btn, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full .search-overlay-trigger-btn {
  color: #fff;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full:hover .nav-menu > .nav-menu-item > a, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full:hover .nav-menu > .nav-menu-item > a, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full:hover .nav-menu > .nav-menu-item > a {
  color: #002e2e;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full:hover .logo-link svg, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full:hover .logo-link svg, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full:hover .logo-link svg {
  fill: #002e2e;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full:hover .lang-select--header-nav .lang-select__current, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full:hover .lang-select--header-nav .lang-select__current, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full:hover .lang-select--header-nav .lang-select__current {
  color: #002e2e;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full:hover .lang-select--header-nav:hover .lang-select__current, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full:hover .lang-select--header-nav:hover .lang-select__current, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full:hover .lang-select--header-nav:hover .lang-select__current {
  color: #87e0b0;
}
.single-event .header-nav--transparent.headroom--top .header-nav-full:hover .search-overlay-trigger-btn, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-full:hover .search-overlay-trigger-btn, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-full:hover .search-overlay-trigger-btn {
  color: #002e2e;
}
.single-event .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .logo-link svg, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .logo-link svg, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .logo-link svg {
  transition: fill 300ms;
  fill: #fff;
}
.single-event .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger, .single-event .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::before, .single-event .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::after, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::before, .theme--green-dark .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::after, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::before, .theme--green-darker .header-nav--transparent.headroom--top .header-nav-mobile .header-nav-mobile__top-bar .icon--hamburger::after {
  background-color: #fff;
  transition: background-color 300ms;
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.nav-login {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  font-weight: 700;
  text-decoration: none;
  color: #c3a86b;
  gap: 15px;
}
.nav-login::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url(/app/themes/zanders/dist/img/login-icon.svg?29d7de4578cac490ee6ab4c650b50430);
  background-repeat: no-repeat;
}
.nav-login::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #c3a86b;
}

.basic-header {
  padding: 90px 0 150px;
}
.basic-header h5,
.basic-header h1 {
  margin: 0;
}
.basic-header h5 {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.00938rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #c3a86b;
}
.basic-header h1 {
  color: #002e2e;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .basic-header {
    padding: 80px 0 120px;
  }
}
@media only screen and (max-width: 1439px) {
  .basic-header h1 {
    font-size: 3.4375rem;
    line-height: 4.0625rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .basic-header {
    padding: 70px 0 90px;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header {
    padding: 50px 0 70px;
  }
  .basic-header h5 {
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
  .basic-header h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 599px) {
  .basic-header {
    padding: 25px 0 45px;
  }
  .basic-header h5 {
    margin-bottom: 10px;
    font-size: 0.875rem;
  }
  .basic-header h1 {
    font-size: 2.5rem;
  }
}

.wp-block-table table {
  border-collapse: separate;
  border-spacing: 24px 0;
  margin-left: -24px;
}
.wp-block-table td {
  vertical-align: top;
  border: 0;
  padding: 15px 0 16px;
  font-size: 1.125rem;
}
.wp-block-table tr td {
  border-bottom: 1px solid #87e0b0;
}
.wp-block-table tr:first-child td {
  min-width: 120px;
  border-width: 3px;
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}
.wp-block-table tr:last-child td {
  border-bottom: 0;
}

.form-style a {
  color: #066;
}
.form-style a:hover {
  color: #87e0b0;
}
.form-style fieldset {
  border: none;
  margin: 0 0 40px;
  padding: 0;
}
.form-style .gfield,
.form-style .hs-form-field {
  margin-bottom: 40px;
}
.form-style .gfield .gfield_label,
.form-style .gfield .hs-form-field label,
.form-style .hs-form-field .gfield_label,
.form-style .hs-form-field .hs-form-field label {
  padding: 0 0 10px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.3;
  color: #002e2e;
}
@media only screen and (max-width: 599px) {
  .form-style .gfield .gfield_label,
  .form-style .gfield .hs-form-field label,
  .form-style .hs-form-field .gfield_label,
  .form-style .hs-form-field .hs-form-field label {
    font-weight: 700;
  }
}
.form-style .gfield input[type=text],
.form-style .gfield input[type=number],
.form-style .gfield input[type=email],
.form-style .gfield input[type=tel],
.form-style .gfield textarea,
.form-style .hs-form-field input[type=text],
.form-style .hs-form-field input[type=number],
.form-style .hs-form-field input[type=email],
.form-style .hs-form-field input[type=tel],
.form-style .hs-form-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: none;
  padding: 10px 0;
  font-family: kontrapunkt, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #002e2e;
  background-color: transparent;
}
.form-style .gfield input[type=text]:focus,
.form-style .gfield input[type=number]:focus,
.form-style .gfield input[type=email]:focus,
.form-style .gfield input[type=tel]:focus,
.form-style .gfield textarea:focus,
.form-style .hs-form-field input[type=text]:focus,
.form-style .hs-form-field input[type=number]:focus,
.form-style .hs-form-field input[type=email]:focus,
.form-style .hs-form-field input[type=tel]:focus,
.form-style .hs-form-field textarea:focus {
  outline: none;
}
@media only screen and (max-width: 599px) {
  .form-style .gfield input[type=text],
  .form-style .gfield input[type=number],
  .form-style .gfield input[type=email],
  .form-style .gfield input[type=tel],
  .form-style .gfield textarea,
  .form-style .hs-form-field input[type=text],
  .form-style .hs-form-field input[type=number],
  .form-style .hs-form-field input[type=email],
  .form-style .hs-form-field input[type=tel],
  .form-style .hs-form-field textarea {
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 400;
  }
}
.form-style .gfield input[type=text],
.form-style .gfield input[type=number],
.form-style .gfield input[type=email],
.form-style .gfield input[type=tel],
.form-style .gfield input,
.form-style .gfield textarea,
.form-style .hs-form-field input[type=text],
.form-style .hs-form-field input[type=number],
.form-style .hs-form-field input[type=email],
.form-style .hs-form-field input[type=tel],
.form-style .hs-form-field input,
.form-style .hs-form-field textarea {
  border-bottom: 1px solid rgba(0, 102, 102, 0.2);
  transition: border-color 150ms;
}
.form-style .gfield input[type=text]:focus,
.form-style .gfield input[type=number]:focus,
.form-style .gfield input[type=email]:focus,
.form-style .gfield input[type=tel]:focus,
.form-style .gfield input:focus,
.form-style .gfield textarea:focus,
.form-style .hs-form-field input[type=text]:focus,
.form-style .hs-form-field input[type=number]:focus,
.form-style .hs-form-field input[type=email]:focus,
.form-style .hs-form-field input[type=tel]:focus,
.form-style .hs-form-field input:focus,
.form-style .hs-form-field textarea:focus {
  border-bottom-color: #066;
}
.form-style .gfield textarea,
.form-style .hs-form-field textarea {
  min-height: 180px;
}
.form-style .gfield_validation_message,
.form-style .hs-error-msg {
  font-size: 0.9375rem;
  letter-spacing: 0.03125rem;
  color: red;
}
.form-style .gform_confirmation_message,
.form-style .submitted-message {
  padding: 10px;
  color: #fff;
  background-color: #066;
}
.form-style .btn--primary {
  text-transform: uppercase;
}
.form-style .btn--primary::after {
  bottom: 14px;
}
@media only screen and (max-width: 599px) {
  .form-style .btn--primary {
    padding-bottom: 10px;
    font-size: 0.875rem;
    text-transform: none;
  }
  .form-style .btn--primary::after {
    bottom: 10px;
  }
}
.form-style .gfield--type-captcha {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.site-footer {
  position: relative;
  padding-top: 85px;
  color: #fff;
  background-color: #002e2e;
}
@media only screen and (max-width: 599px) {
  .site-footer {
    padding-top: 30px;
  }
}
.site-footer__heading {
  border-bottom: 2px solid #87e0b0;
  margin: 0 0 25px;
  padding-bottom: 15px;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.site-footer .site-footer-top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .site-footer .site-footer-top {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-bottom: 70px;
  }
  .site-footer .site-footer-top .site-footer-top__social-links,
  .site-footer .site-footer-top .site-footer-top__form {
    grid-column: 1;
  }
}
.site-footer .site-footer-top .site-footer__heading {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .site-footer .site-footer-top .site-footer__heading {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 599px) {
  .site-footer .site-footer-top .site-footer__heading {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .site-footer .site-footer-top .site-footer__heading {
    margin-bottom: 20px;
  }
}
.site-footer .site-footer-top__social-links {
  grid-column: 1/3;
  margin-right: 30px;
}
.site-footer .site-footer-top__social-links ul {
  margin: 0;
  padding: 0;
}
.site-footer .site-footer-top__social-links li {
  display: inline-block;
  margin-right: 60px;
  padding: 0;
}
.site-footer .site-footer-top__social-links li:last-child {
  margin-right: 0;
}
.site-footer .site-footer-top__social-links a {
  display: block;
  font-size: 2.3125rem;
  color: #c3a86b;
}
.site-footer .site-footer-top__social-links a:hover {
  opacity: 0.7;
}
.site-footer .site-footer-top__social-links .fa {
  display: block;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .site-footer .site-footer-top__social-links li {
    margin-right: 30px;
  }
  .site-footer .site-footer-top__social-links a {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .site-footer .site-footer-top__social-links li {
    margin-right: 30px;
  }
  .site-footer .site-footer-top__social-links a {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer .site-footer-top__social-links {
    margin-right: 0;
  }
  .site-footer .site-footer-top__social-links li {
    margin-right: 35px;
  }
  .site-footer .site-footer-top__social-links a {
    font-size: 1.875rem;
  }
}
.site-footer .site-footer-top__form {
  grid-column: 3/7;
}
.site-footer .site-footer-top__form-title {
  margin-bottom: 50px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .site-footer .site-footer-top__form-title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .site-footer .site-footer-top__form-title {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 599px) {
  .site-footer .site-footer-top__form-title {
    font-size: 1.25rem;
  }
}
.site-footer .site-footer-top .form-style .gform_fields {
  display: grid;
  grid-template-columns: auto 108px;
  grid-column-gap: 17px;
  grid-template-areas: "input submit" "checkbox .";
}
.site-footer .site-footer-top .form-style .gform_fields .gfield:nth-child(1) {
  grid-area: input;
}
.site-footer .site-footer-top .form-style .gform_fields .gfield:nth-child(2) {
  grid-area: checkbox;
}
.site-footer .site-footer-top .form-style .gform_fields .gfield:nth-child(3) {
  grid-area: submit;
}
.site-footer .site-footer-top .form-style .gfield_label {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .site-footer-top .form-style .gfield {
  margin-bottom: 25px;
}
.site-footer .site-footer-top .form-style .gfield input {
  border-bottom-color: #fff;
  border-radius: 0;
  padding: 15px 0 16px;
  font-size: 1.125rem;
  color: #fff;
}
.site-footer .site-footer-top .form-style .gfield input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.6;
}
.site-footer .site-footer-top .form-style .gfield input:-moz-placeholder {
  color: #fff;
  opacity: 0.6;
}
.site-footer .site-footer-top .form-style .gfield input::-moz-placeholder {
  color: #fff;
  opacity: 0.6;
}
.site-footer .site-footer-top .form-style .gfield input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}
.site-footer .site-footer-top .form-style .gfield.checkbox legend {
  display: none;
}
.site-footer .site-footer-top .form-style .gfield .gfield_checkbox label {
  color: #fff;
}
.site-footer .site-footer-top .form-style .gfield .gfield_checkbox label::before {
  border-color: #fff;
}
.site-footer .site-footer-top .form-style .gfield .gfield_checkbox label::after {
  border-bottom-color: #002e2e;
  border-right-color: #002e2e;
}
.site-footer .site-footer-top .form-style .gfield .gfield_checkbox input:checked + label::before {
  background-color: #fff;
}
.site-footer .site-footer-top .form-style .gfield .gfield_checkbox a {
  color: #87e0b0;
}
.site-footer .site-footer-top .form-style .gfield.submit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: start;
  justify-content: flex-end;
  margin-top: 43px;
  margin-bottom: 0;
}
.site-footer .site-footer-top .form-style .gfield.submit .btn--primary {
  width: 100%;
  max-width: none;
  text-transform: none;
  color: #87e0b0;
}
.site-footer .site-footer-top .form-style .gfield.submit .btn--primary::before {
  border-bottom-color: #87e0b0;
}
.site-footer .site-footer-top .form-style .gfield.submit .gform_ajax_spinner {
  position: absolute;
  bottom: -25px;
  width: 20px;
  height: 20px;
}
.site-footer .site-footer-top .form-style .gform_submission_error,
.site-footer .site-footer-top .form-style .gfield_validation_message {
  color: #e73131;
}
.site-footer .site-footer-top .form-style .gfield_validation_message {
  font-weight: 700;
}
@media only screen and (max-width: 599px) {
  .site-footer .site-footer-top .form-style .gform_fields {
    grid-template-columns: 1fr;
    grid-template-areas: "input" "checkbox" "submit";
  }
  .site-footer .site-footer-top .form-style .gfield_label {
    font-size: 1rem;
  }
  .site-footer .site-footer-top .form-style .gfield.submit {
    align-items: flex-end;
    margin-top: 0;
  }
  .site-footer .site-footer-top .form-style .gfield.submit .btn--primary {
    display: inline-block;
    width: auto;
    max-width: none;
    padding-right: 24px;
  }
}
.site-footer .site-footer-top .form-style--hubspot .hbspt-form .hs-form-booleancheckbox label > span {
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
}
.site-footer .site-footer-top .form-style--hubspot .hbspt-form .hs-form-booleancheckbox label > span::before {
  border-color: #fff;
}
.site-footer .site-footer-top .form-style--hubspot .hs-form-booleancheckbox label input:checked + span::before,
.site-footer .site-footer-top .form-style--hubspot .hs-form-checkbox label input:checked + span::before {
  background-color: transparent;
}
.site-footer .site-footer-top .form-style--hubspot .hs-form-field input {
  border-bottom-color: #fff;
  border-radius: 0;
  color: #fff;
}
.site-footer .site-footer-top .form-style--hubspot .hs-submit .btn {
  color: #87e0b0;
}
.site-footer .site-footer-top .form-style--hubspot .hs-submit .btn::before {
  border-bottom-color: #87e0b0;
}
.site-footer .site-footer-bottom .footer-links {
  border-top: 2px solid #87e0b0;
  padding: 10px 0 13px;
}
.site-footer .site-footer-bottom .footer-links > div {
  display: flex;
  justify-content: space-between;
}
.site-footer .site-footer-bottom .footer-links ul {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}
.site-footer .site-footer-bottom .footer-links ul li {
  line-height: 1;
}
.site-footer .site-footer-bottom .footer-links .footer-copyright,
.site-footer .site-footer-bottom .footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
}
.site-footer .site-footer-bottom .footer-links a {
  text-decoration: none;
  color: #fff;
  transition: color 300ms;
}
.site-footer .site-footer-bottom .footer-links a:hover {
  color: #b0ffd9;
}
.site-footer .site-footer-bottom .footer-links .footer-corner-logo {
  display: none;
}
@media only screen and (max-width: 767px) {
  .site-footer .site-footer-bottom .footer-links {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: none;
    gap: 30px;
  }
  .site-footer .site-footer-bottom .footer-links > div {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .site-footer .site-footer-bottom .footer-links ul {
    justify-content: flex-start;
    gap: 10px;
  }
  .site-footer .site-footer-bottom .footer-links .footer-corner-logo {
    display: block;
  }
  .site-footer .site-footer-bottom .footer-links .footer-corner-logo svg {
    width: 44px;
    height: 44px;
  }
}
@media only screen and (max-width: 599px) {
  .site-footer .site-footer-bottom .footer-links .footer-corner-logo svg {
    width: 70px;
    height: 70px;
  }
}
.site-footer__grid-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 160px;
  margin-bottom: 100px;
}
.site-footer__grid-menu > div:first-child {
  grid-column: 1/3;
}
.site-footer__grid-menu > div:last-child {
  grid-column: 3/4;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .site-footer__grid-menu {
    grid-column-gap: 80px;
  }
}
@media only screen and (max-width: 599px) {
  .site-footer__grid-menu {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .site-footer__grid-menu > div:first-child, .site-footer__grid-menu > div:last-child {
    grid-column: 1;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .site-footer__grid-menu {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .site-footer__grid-menu > div:first-child, .site-footer__grid-menu > div:last-child {
    grid-column: 1;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer__grid-menu {
    margin-bottom: 40px;
  }
}
.site-footer__corner-logo {
  margin-top: 190px;
  text-align: right;
}
.site-footer__corner-logo svg {
  width: 234px;
  height: 234px;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .site-footer__corner-logo {
    margin-top: 90px;
  }
  .site-footer__corner-logo svg {
    width: 180px;
    height: 180px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .site-footer__corner-logo {
    margin-top: 40px;
  }
  .site-footer__corner-logo svg {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer__corner-logo {
    display: none;
  }
}

.footer-menu {
  display: grid;
  grid-row-gap: 50px;
}
.footer-menu,
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu__label {
  display: block;
  border-bottom: 2px solid #87e0b0;
  margin-bottom: 26px;
  padding-bottom: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  -webkit-user-select: none;
          user-select: none;
}
.footer-menu .footer-menu-item > a {
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  transition: color 300ms;
}
.footer-menu .footer-menu-item > a:hover {
  color: #87e0b0;
}
.footer-menu .footer-menu-item--simple > .footer-menu__submenu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px;
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="1"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="1"] > .footer-menu-item > a {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="2"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 17px;
  gap: 30px 50px;
}
@media only screen and (max-width: 1279px) {
  .footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="2"] {
    gap: 30px;
  }
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="3"] {
  margin-top: 5px;
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="3"] > .footer-menu-item > a {
  position: relative;
  font-size: 0.75rem;
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="3"] > .footer-menu-item > a::before {
  content: "";
  position: relative;
  top: 13px;
  display: inline-block;
  vertical-align: top;
  width: 6px;
  height: 1px;
  margin-right: 5px;
  background-color: #fff;
  transition: background-color 300ms;
}
.footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="3"] > .footer-menu-item > a:hover::before {
  background-color: #87e0b0;
}
.footer-menu .footer-menu-item--mega.has-shallow-tree .footer-menu__submenu[data-depth="1"] {
  grid-template-columns: repeat(4, 1fr);
}
.footer-menu .footer-menu-item--mega.has-shallow-tree .footer-menu__submenu[data-depth="2"] {
  grid-template-columns: 1fr;
  gap: 10px 40px;
}
@media only screen and (max-width: 767px) {
  .footer-menu > .footer-menu-item > .footer-menu__submenu {
    margin-bottom: 20px;
  }
  .footer-menu .footer-menu-item--mega .footer-menu__submenu[data-depth="1"] {
    gap: 20px;
  }
  .footer-menu .footer-menu__submenu {
    grid-template-columns: 1fr !important;
  }
}

.footer-menu--side {
  display: block;
}
.footer-menu--side > .footer-menu-item {
  margin-bottom: 50px;
}
.footer-menu--side > .footer-menu-item:last-child {
  margin-bottom: 0;
}
.footer-menu--side > .footer-menu-item .footer-menu__submenu {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .footer-menu--side {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-menu--side > .footer-menu-item:first-child {
    border-top: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .footer-menu,
  .footer-menu--side {
    grid-row-gap: 0;
    margin-top: 0;
  }
  .footer-menu > .footer-menu-item,
  .footer-menu--side > .footer-menu-item {
    height: 56px;
    overflow: hidden;
    margin-bottom: 0;
  }
  .footer-menu > .footer-menu-item:first-child,
  .footer-menu--side > .footer-menu-item:first-child {
    border-top: 2px solid #87e0b0;
  }
  .footer-menu > .footer-menu-item .footer-menu__label,
  .footer-menu--side > .footer-menu-item .footer-menu__label {
    position: relative;
    display: block;
    margin: 0;
    padding: 12px 30px 16px 0;
    font-size: 1rem;
    cursor: pointer;
  }
  .footer-menu > .footer-menu-item .footer-menu__label::after,
  .footer-menu--side > .footer-menu-item .footer-menu__label::after {
    content: "\f078";
    display: inline-block;
    /* stylelint-disable font-family-no-missing-generic-family-keyword */
    font-family: "Font Awesome 6 Pro";
    /* stylelint-enable font-family-no-missing-generic-family-keyword */
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 1;
  }
  .footer-menu > .footer-menu-item.expand,
  .footer-menu--side > .footer-menu-item.expand {
    height: auto;
    border-bottom: 2px solid #87e0b0;
    margin-bottom: 10px;
  }
  .footer-menu > .footer-menu-item.expand .footer-menu__label,
  .footer-menu--side > .footer-menu-item.expand .footer-menu__label {
    border-bottom: none;
    padding-bottom: 20px;
  }
  .footer-menu > .footer-menu-item.expand .footer-menu__label::after,
  .footer-menu--side > .footer-menu-item.expand .footer-menu__label::after {
    transform: rotate(-180deg);
  }
}

.footer-cta {
  position: relative;
  padding-top: 80px;
  padding-bottom: 140px;
  background-color: #87e0b0;
}
@media only screen and (max-width: 1439px) {
  .footer-cta {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-cta {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 599px) {
  .footer-cta {
    padding-top: 35px;
    padding-bottom: 10px;
  }
}
.footer-cta .svg-icon--logo-cut-out {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 162px;
  height: 203px;
}
@media only screen and (max-width: 1439px) {
  .footer-cta .svg-icon--logo-cut-out {
    bottom: 38px;
    width: 100px;
    height: 123px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .footer-cta .svg-icon--logo-cut-out {
    bottom: 26px;
    width: 70px;
    height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-cta .svg-icon--logo-cut-out {
    bottom: 20px;
    width: 50px;
    height: 64px;
  }
}
@media only screen and (max-width: 599px) {
  .footer-cta .svg-icon--logo-cut-out {
    bottom: 6px;
    width: 35px;
    height: 45px;
  }
}
.footer-cta__title {
  font-size: 7.8125rem;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .footer-cta__title {
    font-size: 7.1875rem;
  }
}
@media only screen and (max-width: 1439px) {
  .footer-cta__title {
    font-size: 5.3125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .footer-cta__title {
    font-size: 3.75rem;
  }
}
@media only screen and (max-width: 599px) {
  .footer-cta__title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
.footer-cta__content {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 75px;
  padding: 0 17%;
  gap: 160px;
}
.footer-cta__content div,
.footer-cta__content .btn--impact {
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 395px;
}
.footer-cta__content div {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
}
.footer-cta__content .btn--impact {
  padding-top: 3px;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.footer-cta__content .btn--impact .arrow-container {
  margin-top: 1px;
}
.footer-cta__content .svg-icon--logo-outline {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 74px;
  height: 74px;
}
.footer-cta__content .svg-icon--logo-outline path {
  fill: #fff;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .footer-cta__content {
    gap: 130px;
  }
}
@media only screen and (max-width: 1439px) {
  .footer-cta__content {
    padding: 0 12%;
    gap: 70px;
  }
  .footer-cta__content div {
    font-size: 1.875rem;
  }
  .footer-cta__content .btn--impact {
    font-size: 1.125rem;
  }
  .footer-cta__content .btn--impact .arrow-container {
    width: 40px;
    height: 40px;
  }
  .footer-cta__content .btn--impact .arrow-container::before, .footer-cta__content .btn--impact .arrow-container::after {
    font-size: 2.75rem;
  }
  .footer-cta__content .svg-icon--logo-outline {
    bottom: 0;
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .footer-cta__content {
    margin-top: 60px;
    padding: 0 10%;
    gap: 40px;
  }
  .footer-cta__content div,
  .footer-cta__content .btn--impact {
    max-width: 300px;
  }
  .footer-cta__content div {
    font-size: 1.625rem;
    line-height: 1.3;
  }
  .footer-cta__content .btn--impact {
    font-size: 1rem;
  }
  .footer-cta__content .btn--impact .arrow-container::before, .footer-cta__content .btn--impact .arrow-container::after {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-cta__content div,
  .footer-cta__content .btn--impact {
    max-width: 240px;
  }
  .footer-cta__content div {
    font-size: 1.375rem;
  }
  .footer-cta__content .btn--impact {
    font-size: 0.9375rem;
  }
  .footer-cta__content .btn--impact .arrow-container::before, .footer-cta__content .btn--impact .arrow-container::after {
    font-size: 2.25rem;
  }
  .footer-cta__content .svg-icon--logo-outline {
    bottom: 7px;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .footer-cta__content {
    display: block;
    margin-top: 35px;
    padding: 0;
  }
  .footer-cta__content div {
    font-size: 1rem;
    line-height: 1.5;
  }
  .footer-cta__content .btn--impact {
    margin-top: 22px;
    margin-left: 44px;
    padding-bottom: 14px;
    font-size: 0.875rem;
  }
  .footer-cta__content .btn--impact .arrow-container::before, .footer-cta__content .btn--impact .arrow-container::after {
    font-size: 1.875rem;
  }
  .footer-cta__content .svg-icon--logo-outline {
    bottom: 17px;
    width: 65px;
    height: 65px;
  }
}
.theme--green-dark .footer-cta .btn--impact {
  color: #066 !important;
}
.theme--green-dark .footer-cta .btn--impact:hover {
  color: #001414 !important;
}

.image-overlay-colour {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.error404 .basic-header-sec .rapper h1 {
  font-size: 4.875rem;
  line-height: 4.875rem;
}
@media only screen and (max-width: 1439px) {
  .error404 .basic-header-sec .rapper h1 {
    font-size: 4.375rem;
    line-height: 4.375rem;
  }
}
@media only screen and (max-width: 1439px) {
  .error404 .basic-header-sec .rapper h1 {
    font-size: 4.375rem;
    line-height: 4.375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .error404 .basic-header-sec .rapper h1 {
    font-size: 3.125rem;
    line-height: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .error404 .basic-header-sec .rapper h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
.error404 .basic-header-sec .editor h3 {
  font-size: 2.8125rem;
  line-height: 3.3125rem;
}
@media only screen and (max-width: 1439px) {
  .error404 .basic-header-sec .editor h3 {
    font-size: 2.5rem;
    line-height: 2.9375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .error404 .basic-header-sec .editor h3 {
    font-size: 1.875rem;
    line-height: 2.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .error404 .basic-header-sec .editor h3 {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}

.redirect-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 20, 20, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.redirect-modal--active {
  display: flex;
}
.redirect-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  padding: 7px;
  background: #002e2e;
  cursor: pointer;
}
.redirect-modal__close:hover {
  background: #87e0b0;
}
.redirect-modal__close::before, .redirect-modal__close::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 70%;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  pointer-events: none;
}
.redirect-modal__close::before {
  transform: rotate(45deg);
}
.redirect-modal__close::after {
  transform: rotate(315deg);
}
.redirect-modal__container {
  position: relative;
  width: 100%;
  max-width: 495px;
  max-height: 80vh;
  overflow: auto;
  padding: 36px 46px;
  background-color: #87e0b0;
}
.redirect-modal__title {
  margin: 0 0 5px;
  font-family: kontrapunkt, sans-serif;
  font-size: 2.1875rem;
  line-height: 2.1875rem;
  color: #002e2e;
}
.redirect-modal__subtitle {
  margin: 0 0 15px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #002e2e;
}
.redirect-modal__image {
  width: 100%;
}
.redirect-modal__image img {
  display: block;
  width: 100%;
}
.redirect-modal__content {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #002e2e;
}

/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.btn-fill {
  border: 1px solid #c3a86b;
  border-radius: 50px;
  padding: 17px 32px 22px;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 2rem;
  color: #001414;
  background-color: #c3a86b;
  transition: all 0.5s;
}
@media only screen and (max-width: 1600px) {
  .btn-fill {
    padding: 11px 30px 14px;
    font-size: 1.4375rem;
    line-height: 1.3;
  }
}
.btn-fill:hover {
  border-color: #c3a86b;
  color: #c3a86b;
  background-color: transparent;
}
.btn-fill.outline {
  border-color: #c3a86b;
  color: #c3a86b;
  background-color: transparent;
}
.btn-fill.outline:hover {
  border-color: #c3a86b;
  color: #001414;
  background-color: #c3a86b;
}
.btn-fill.btn-green {
  border-color: #002e2e;
  color: #b59c63;
  background-color: #002e2e;
}
.btn-fill.btn-green:hover {
  border-color: #b59c63;
  color: #002e2e;
  background-color: #b59c63;
}

.wp-block-columns {
  gap: 160px;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .wp-block-columns .wp-block-column > h1:first-child,
  .wp-block-columns .wp-block-column > h2:first-child,
  .wp-block-columns .wp-block-column > h3:first-child,
  .wp-block-columns .wp-block-column > h4:first-child,
  .wp-block-columns .wp-block-column > h5:first-child,
  .wp-block-columns .wp-block-column > h6:first-child,
  .wp-block-columns .wp-block-column > p:first-child {
    margin-top: -14px;
  }
}
@media only screen and (min-width: 1920px) {
  .wp-block-columns .wp-block-column > h1:first-child,
  .wp-block-columns .wp-block-column > h2:first-child,
  .wp-block-columns .wp-block-column > h3:first-child,
  .wp-block-columns .wp-block-column > h4:first-child,
  .wp-block-columns .wp-block-column > h5:first-child,
  .wp-block-columns .wp-block-column > h6:first-child,
  .wp-block-columns .wp-block-column > p:first-child {
    margin-top: -14px;
  }
}
@media only screen and (max-width: 599px) {
  .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 40px;
  }
  .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 40px;
  }
  .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    flex-grow: 1;
  }
}
@media only screen and (max-width: 599px) {
  .wp-block-columns {
    gap: 20px;
  }
}

.block {
  margin-bottom: 60px;
}
.block.remove-spacing {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.header-nav--transparent + main > *:first-child:not(.hero-carousel, .image-background-header)::before {
  content: "";
  display: block;
  padding-top: 110px;
}
@media only screen and (max-width: 599px) {
  .header-nav--transparent + main > *:first-child:not(.hero-carousel, .image-background-header)::before {
    padding-top: 80px;
  }
}

.hero-carousel-placeholder {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-carousel-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #002e2e;
}

.container-block {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.two-col .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
}
@media only screen and (max-width: 599px) {
  .two-col .grid {
    display: block;
  }
  .two-col .grid > div {
    margin-bottom: 40px;
  }
  .two-col .grid > div:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .two-col .grid {
    display: block;
  }
  .two-col .grid > div {
    margin-bottom: 40px;
  }
  .two-col .grid > div:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 599px) {
  .two-col .grid {
    margin-top: 0;
  }
  .two-col .grid > div {
    margin-bottom: 20px;
  }
}
.two-col .wysiwyg h1,
.two-col .wysiwyg h2,
.two-col .wysiwyg h3,
.two-col .wysiwyg h4,
.two-col .wysiwyg h5,
.two-col .wysiwyg h6 {
  margin: 2rem 0 1rem;
}
.two-col .wysiwyg h1:first-child,
.two-col .wysiwyg h2:first-child,
.two-col .wysiwyg h3:first-child,
.two-col .wysiwyg h4:first-child,
.two-col .wysiwyg h5:first-child,
.two-col .wysiwyg h6:first-child {
  margin-top: 0;
}
.two-col .wysiwyg h3 {
  font-weight: 700;
}
.two-col .wysiwyg .two-col__title {
  margin-bottom: 85px;
}
.two-col .wysiwyg .two-col__title:first-child {
  margin-top: 50px;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .two-col .wysiwyg .two-col__title {
    margin-bottom: 65px;
  }
  .two-col .wysiwyg .two-col__title:first-child {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 599px) {
  .two-col .wysiwyg .two-col__title {
    margin-bottom: 30px;
  }
  .two-col .wysiwyg .two-col__title:first-child {
    margin-top: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .two-col .wysiwyg .two-col__title {
    margin-bottom: 30px;
  }
  .two-col .wysiwyg .two-col__title:first-child {
    margin-top: 0;
  }
}
.two-col .wysiwyg li {
  margin-bottom: 12px;
}
.two-col .wysiwyg li:last-child {
  margin-bottom: 0;
}
.two-col .wysiwyg .btn {
  max-width: none;
}
.two-col .two-col-text-and-button__text-left-col p,
.two-col .two-col-text-and-logos__text-left-col p {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .two-col .two-col-text-and-button__text-left-col p,
  .two-col .two-col-text-and-logos__text-left-col p {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 599px) {
  .two-col .two-col-text-and-button__text-left-col p,
  .two-col .two-col-text-and-logos__text-left-col p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.two-col .two-col-text-and-button__text-left-col a,
.two-col .two-col-text-and-logos__text-left-col a {
  color: #066;
  transition: color 300ms;
}
.two-col .two-col-text-and-button__text-left-col a:hover,
.two-col .two-col-text-and-logos__text-left-col a:hover {
  color: #87e0b0;
}

.two-col-text-and-button__text-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.two-col-text-and-button__text-left-col p {
  margin: 0;
}
.two-col-text-and-button__text-left-col p + p {
  margin-top: 35px;
}
@media only screen and (max-width: 599px) {
  .two-col-text-and-button__text-left-col p + p {
    margin-top: 20px;
  }
}
.two-col-text-and-button__text-left-col img {
  display: block;
  align-self: start;
  width: auto;
  max-width: 100px;
  margin-top: 60px;
}
@media only screen and (max-width: 599px) {
  .two-col-text-and-button__text-left-col img {
    margin-top: 1rem;
  }
}
.two-col-text-and-button__text-left-col > *:last-child {
  margin-bottom: 0;
}
.two-col-text-and-button__text-right-col .btn {
  margin-top: 20px;
}

.two-col-text-and-logos .grid {
  grid-template-areas: "col1 col2" "logos col2";
}
.two-col-text-and-logos .grid .two-col-text-and-logos__text-left-col {
  grid-area: col1;
}
.two-col-text-and-logos .grid .two-col-text-and-logos__text-right-col {
  grid-area: col2;
}
.two-col-text-and-logos .grid .two-col-text-and-logos__logos {
  grid-area: logos;
}
@media only screen and (max-width: 599px) {
  .two-col-text-and-logos .grid .two-col-text-and-logos__logos {
    transform: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .two-col-text-and-logos .grid .two-col-text-and-logos__logos {
    transform: none;
  }
}
.two-col-text-and-logos__text-left-col p:last-child {
  margin-bottom: 30px;
}
@media only screen and (max-width: 599px) {
  .two-col-text-and-logos__text-left-col p:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .two-col-text-and-logos__text-left-col p:last-child {
    margin-bottom: 0;
  }
}
.two-col-text-and-logos__text-right-col .btn {
  margin-top: 20px;
}
.two-col-text-and-logos__logos {
  display: flex;
  align-items: flex-end;
}
.two-col-text-and-logos__logos ul {
  display: flex;
  width: 100%;
  max-width: 530px;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 60px;
}
@media only screen and (max-width: 1439px) {
  .two-col-text-and-logos__logos ul {
    max-width: 380px;
    gap: 40px;
  }
}
.two-col-text-and-logos__logos li {
  position: relative;
  display: flex;
  align-items: center;
  width: 33.33%;
  height: 45px;
  margin: 0;
  padding: 0;
}
.two-col-text-and-logos__logos li::before {
  display: none;
}
.two-col-text-and-logos__logos li img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;"; /* stylelint-disable-line */
  position: absolute;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 599px) {
  .two-col-text-and-logos__logos {
    display: block;
    margin-top: 20px;
    padding: 25px 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .two-col-text-and-logos__logos {
    display: block;
    margin-top: 20px;
    padding: 25px 0;
  }
}
@media only screen and (max-width: 599px) {
  .two-col-text-and-logos__logos ul {
    justify-content: space-between;
    gap: 30px;
    max-width: none;
  }
  .two-col-text-and-logos__logos li {
    height: 30px;
  }
}

.basic-header-sec {
  padding: 110px 0;
  padding-bottom: 75px;
  background-color: #fff;
}
@media only screen and (max-width: 1279px) {
  .basic-header-sec {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header-sec {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header-sec .container {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 599px) {
  .basic-header-sec .container {
    padding: 0 18px;
  }
}
.basic-header-sec .editor {
  max-width: 890px;
  margin-top: 90px;
}
@media only screen and (max-width: 1023px) {
  .basic-header-sec .editor {
    max-width: 560px;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header-sec .editor {
    margin-top: 50px;
  }
}
.basic-header-sec .editor h3 {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 4.375rem;
  color: #002e2e;
}
@media only screen and (max-width: 1439px) {
  .basic-header-sec .editor h3 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media only screen and (max-width: 1023px) {
  .basic-header-sec .editor h3 {
    margin-bottom: 30px;
    font-size: 1.875rem;
    line-height: 2.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header-sec .editor h3 {
    margin-bottom: 30px;
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.basic-header-sec .editor h3:last-child {
  margin-bottom: 0;
}
.basic-header-sec .rapper h6 {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.00938rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #c3a86b;
}
@media only screen and (max-width: 1024px) {
  .basic-header-sec .rapper h6 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header-sec .rapper h6 {
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}
.basic-header-sec .rapper h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: #002e2e;
}
@media only screen and (max-width: 1439px) {
  .basic-header-sec .rapper h1 {
    font-size: 3.4375rem;
    line-height: 4.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  .basic-header-sec .rapper h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
.theme--green-dark .basic-header-sec {
  background-color: #002e2e;
}
.theme--green-dark .basic-header-sec .rapper h1 {
  color: #87e0b0;
}

.secondary-nav-items {
  opacity: 0;
}
.secondary-nav-items[data-init="1"] {
  opacity: 1;
}
.secondary-nav-items__full-width {
  display: flex;
  align-items: flex-end;
}
.secondary-nav-items__title, .secondary-nav-items__current-item,
.secondary-nav-items a {
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
}
.secondary-nav-items__title {
  position: relative;
  bottom: 16px;
  height: 25px;
  border-right: 2px solid #000;
  margin-right: 5%;
  padding-right: 5%;
  line-height: 1;
}
.secondary-nav-items__list {
  display: flex;
  gap: 15%;
  margin: 0;
  padding: 38px 0 0;
  list-style: none;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .secondary-nav-items__list {
    gap: 7%;
    padding-top: 28px;
  }
  .secondary-nav-items__list a {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1439px) {
  .secondary-nav-items__list {
    gap: 5%;
    padding-top: 24px;
  }
  .secondary-nav-items__list a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1279px) {
  .secondary-nav-items__list a {
    font-size: 0.875rem;
  }
}
.secondary-nav-items a {
  position: relative;
  display: block;
  padding: 10px 0 20px;
  text-decoration: none;
}
.secondary-nav-items a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 4px solid #87e0b0;
  transition: width 400ms;
}
.secondary-nav-items a:hover::after, .secondary-nav-items a.active::after {
  width: 100%;
}
.secondary-nav-items a:hover .counter, .secondary-nav-items a.active .counter {
  opacity: 1;
}
.secondary-nav-items .counter {
  position: absolute;
  top: -12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity 300ms;
}
.secondary-nav-items__current-item {
  position: relative;
  display: none;
}
.secondary-nav-items__current-item::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 25px;
  width: calc(100% - 25px);
  border-bottom: 4px solid #87e0b0;
}
.secondary-nav-items__current-item .counter {
  position: absolute;
}
.secondary-nav-items__current-item.default::after {
  left: 0;
  width: 100%;
}
.secondary-nav-items__dropdown-button {
  display: none;
  width: 100%;
  max-width: none;
  padding: 50px 0 25px;
}
.secondary-nav-items__dropdown-button i {
  transition: transform 300ms;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .secondary-nav-items__dropdown-button {
    padding: 28px 0 20px;
  }
}
@media only screen and (max-width: 1439px) {
  .secondary-nav-items__dropdown-button {
    padding: 24px 0 20px;
  }
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__dropdown-button {
  display: flex;
  justify-content: space-between;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__full-width {
  display: block;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__full-width .secondary-nav-items__title {
  display: none;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__title {
  bottom: auto;
  height: auto;
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__list {
  position: absolute;
  left: 0;
  display: none;
  width: 100%;
  max-width: 500px;
  padding: 50px 80px 50px 7.1875vw;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__list a {
  display: inline-block;
  padding-top: 0;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__list .counter {
  top: -18px;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__list li {
  margin-bottom: 30px;
}
.secondary-nav-items.dropdown-enabled .secondary-nav-items__list li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__list {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__list {
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 35px;
  }
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__list .counter {
    top: auto;
  }
}
.secondary-nav-items.dropdown-enabled.expanded .secondary-nav-items__dropdown-button i {
  transform: rotate(-180deg);
}
.secondary-nav-items.dropdown-enabled.expanded .secondary-nav-items__list {
  display: block;
}
@media only screen and (max-width: 599px) {
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__title {
    display: none;
  }
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__dropdown-button {
    padding: 27px 0 25px;
  }
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__current-item {
    display: block;
  }
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__current-item .counter {
    margin-right: 0;
  }
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__list {
    max-width: 600px;
    padding-top: 30px;
  }
  .secondary-nav-items.dropdown-enabled .secondary-nav-items__list li {
    margin-bottom: 30px;
  }
  .secondary-nav-items.dropdown-enabled a::after {
    left: 25px;
  }
  .secondary-nav-items.dropdown-enabled a:hover::after {
    width: calc(100% - 25px);
  }
  .secondary-nav-items.dropdown-enabled .counter {
    position: relative;
    top: auto;
    margin-right: 5px;
    opacity: 1;
  }
}

.headroom--pinned ~ .secondary-nav,
.headroom--pinned ~ .page-content .secondary-nav,
.headroom--pinned ~ main .secondary-nav,
.headroom--pinned ~ main .page-content .secondary-nav,
.headroom--pinned ~ .basic-header-secondary-nav,
.headroom--pinned ~ .page-content .basic-header-secondary-nav,
.headroom--pinned ~ main .basic-header-secondary-nav,
.headroom--pinned ~ main .page-content .basic-header-secondary-nav {
  top: 110px;
}
#wpadminbar {
  position: fixed;
}

.admin-bar .headroom--pinned ~ .secondary-nav,
.admin-bar .headroom--pinned ~ .page-content .secondary-nav,
.admin-bar .headroom--pinned ~ main .secondary-nav,
.admin-bar .headroom--pinned ~ main .page-content .secondary-nav,
.admin-bar .headroom--pinned ~ .basic-header-secondary-nav,
.admin-bar .headroom--pinned ~ .page-content .basic-header-secondary-nav,
.admin-bar .headroom--pinned ~ main .basic-header-secondary-nav,
.admin-bar .headroom--pinned ~ main .page-content .basic-header-secondary-nav {
  top: 141px;
}
@media (max-width: 782px) {
  .admin-bar .headroom--pinned ~ .secondary-nav,
  .admin-bar .headroom--pinned ~ .page-content .secondary-nav,
  .admin-bar .headroom--pinned ~ main .secondary-nav,
  .admin-bar .headroom--pinned ~ main .page-content .secondary-nav,
  .admin-bar .headroom--pinned ~ .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ .page-content .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ main .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ main .page-content .basic-header-secondary-nav {
    top: 155px;
  }
}
@media only screen and (max-width: 599px) {
  .headroom--pinned ~ .secondary-nav,
  .headroom--pinned ~ .page-content .secondary-nav,
  .headroom--pinned ~ main .secondary-nav,
  .headroom--pinned ~ main .page-content .secondary-nav,
  .headroom--pinned ~ .basic-header-secondary-nav,
  .headroom--pinned ~ .page-content .basic-header-secondary-nav,
  .headroom--pinned ~ main .basic-header-secondary-nav,
  .headroom--pinned ~ main .page-content .basic-header-secondary-nav {
    top: 80px;
  }
  #wpadminbar {
    position: fixed;
  }
  .admin-bar .headroom--pinned ~ .secondary-nav,
  .admin-bar .headroom--pinned ~ .page-content .secondary-nav,
  .admin-bar .headroom--pinned ~ main .secondary-nav,
  .admin-bar .headroom--pinned ~ main .page-content .secondary-nav,
  .admin-bar .headroom--pinned ~ .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ .page-content .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ main .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ main .page-content .basic-header-secondary-nav {
    top: 111px;
  }
}
@media only screen and (max-width: 599px) and (max-width: 782px) {
  .admin-bar .headroom--pinned ~ .secondary-nav,
  .admin-bar .headroom--pinned ~ .page-content .secondary-nav,
  .admin-bar .headroom--pinned ~ main .secondary-nav,
  .admin-bar .headroom--pinned ~ main .page-content .secondary-nav,
  .admin-bar .headroom--pinned ~ .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ .page-content .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ main .basic-header-secondary-nav,
  .admin-bar .headroom--pinned ~ main .page-content .basic-header-secondary-nav {
    top: 125px;
  }
}

.basic-header-with-nav__content-grid {
  display: flex;
  padding: 126px 0;
  gap: 120px;
}
.basic-header-with-nav__content-grid > div:first-child {
  flex-grow: 1;
}
.basic-header-with-nav__content-grid > div:last-child {
  flex-basis: 530px;
  flex-grow: 1;
  max-width: 540px;
  padding-top: 35px;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .basic-header-with-nav__content-grid {
    gap: 80px;
  }
}
@media only screen and (max-width: 599px) {
  .basic-header-with-nav__content-grid {
    display: block;
    padding: 50px 0;
  }
  .basic-header-with-nav__content-grid > div:last-child {
    max-width: 530px;
    padding-top: 15px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .basic-header-with-nav__content-grid {
    display: block;
    padding: 50px 0;
  }
  .basic-header-with-nav__content-grid > div:last-child {
    max-width: 530px;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 599px) {
  .basic-header-with-nav__content-grid {
    padding: 56px 0;
  }
}
.basic-header-with-nav .border-bottom {
  border-bottom: 3px solid #87e0b0;
}
.basic-header-with-nav h1,
.basic-header-with-nav h5 {
  margin: 0;
}
.basic-header-with-nav h5 {
  font-size: 1.125rem;
  text-transform: uppercase;
}
.basic-header-with-nav__text {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .basic-header-with-nav h1 {
    font-size: 4.75rem;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .basic-header-with-nav h1 {
    font-size: 3.75rem;
    line-height: 1.1;
  }
  .basic-header-with-nav__text {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 599px) {
  .basic-header-with-nav h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .basic-header-with-nav h5 {
    font-size: 1rem;
  }
  .basic-header-with-nav__text {
    font-size: 1.375rem;
  }
}
.basic-header-with-nav.colour-grey {
  background-color: #dbe1e5;
}
.basic-header-with-nav.colour-grey h5 {
  color: #c3a86b;
}
.basic-header-with-nav.colour-grey h1,
.basic-header-with-nav.colour-grey .basic-header-with-nav__text {
  color: #002e2e;
}
.basic-header-with-nav.colour-green {
  background-color: #066;
}
.basic-header-with-nav.colour-green h5 {
  color: #c3a86b;
}
.basic-header-with-nav.colour-green h1,
.basic-header-with-nav.colour-green .basic-header-with-nav__text {
  color: #f2f5f0;
}

.basic-header-secondary-nav {
  position: sticky;
  top: 0;
  z-index: 98;
  margin-top: -1px;
  transition: top 300ms;
}
#wpadminbar {
  position: fixed;
}

.admin-bar .basic-header-secondary-nav {
  top: 31px;
}
@media (max-width: 782px) {
  .admin-bar .basic-header-secondary-nav {
    top: 45px;
  }
}
.basic-header-secondary-nav.colour-grey,
.basic-header-secondary-nav.colour-grey .secondary-nav-items__list {
  background-color: #dbe1e5;
}
.basic-header-secondary-nav.colour-grey .secondary-nav-items__title,
.basic-header-secondary-nav.colour-grey .secondary-nav-items__current-item,
.basic-header-secondary-nav.colour-grey .secondary-nav-items__dropdown-button,
.basic-header-secondary-nav.colour-grey a {
  color: #066;
}
.basic-header-secondary-nav.colour-grey a .counter {
  color: #066;
}
.basic-header-secondary-nav.colour-grey a:hover, .basic-header-secondary-nav.colour-grey a.active {
  color: #0a2e2e;
}
.basic-header-secondary-nav.colour-grey a:hover .counter, .basic-header-secondary-nav.colour-grey a.active .counter {
  color: #0a2e2e;
}
.basic-header-secondary-nav.colour-green,
.basic-header-secondary-nav.colour-green .secondary-nav-items__list {
  background-color: #066;
}
.basic-header-secondary-nav.colour-green .secondary-nav-items__title,
.basic-header-secondary-nav.colour-green .secondary-nav-items__current-item,
.basic-header-secondary-nav.colour-green .secondary-nav-items__dropdown-button,
.basic-header-secondary-nav.colour-green a {
  color: #f2f5f0;
}
.basic-header-secondary-nav.colour-green a .counter {
  color: #f2f5f0;
}
.basic-header-secondary-nav.colour-green a:hover, .basic-header-secondary-nav.colour-green a.active {
  color: #fff;
}
.basic-header-secondary-nav.colour-green a:hover .counter, .basic-header-secondary-nav.colour-green a.active .counter {
  color: #fff;
}

.full-width-image .container {
  max-width: 100%;
  padding: 0;
}
.full-width-image figure {
  margin: 0;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .full-width-image figure {
    position: relative;
    height: 650px;
    overflow: hidden;
  }
  .full-width-image figure img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /* stylelint-disable-line */
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 1920px) {
  .full-width-image figure {
    position: relative;
    height: 650px;
    overflow: hidden;
  }
  .full-width-image figure img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /* stylelint-disable-line */
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-image figure .desktop {
    display: none;
  }
}
.full-width-image figure .mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .full-width-image figure .mobile {
    display: block;
  }
}
.full-width-image figure img {
  display: block;
  width: 100%;
}

/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.image-background-header .main-rapper {
  position: relative;
  min-height: 825px;
  padding: 250px 0 50px;
}
@media only screen and (max-width: 1439px) {
  .image-background-header .main-rapper {
    min-height: 590px;
    padding: 200px 0 50px;
  }
}
@media only screen and (max-width: 1023px) {
  .image-background-header .main-rapper {
    min-height: 440px;
    padding: 150px 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .image-background-header .main-rapper {
    display: flex;
    align-items: center;
    min-height: 433px;
    padding: 50px 0;
  }
}
.image-background-header .bg-desktop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.image-background-header .bg-desktop img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .image-background-header .bg-desktop {
    display: none;
  }
}
.image-background-header .bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
}
.image-background-header .bg-mobile img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .image-background-header .bg-mobile {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .image-background-header .container {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 599px) {
  .image-background-header .container {
    padding: 0 18px;
  }
}
.image-background-header .rapper {
  position: relative;
  z-index: 2;
}
.image-background-header .rapper h6 {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.00938rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #c3a86b;
}
@media only screen and (max-width: 767px) {
  .image-background-header .rapper h6 {
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}
.image-background-header .rapper h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
}
@media only screen and (max-width: 1439px) {
  .image-background-header .rapper h1 {
    font-size: 3.4375rem;
    line-height: 4.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  .image-background-header .rapper h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

.icon-header-sec {
  padding: 110px 0;
  background-color: #f2f5f0;
}
@media only screen and (max-width: 1279px) {
  .icon-header-sec {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .icon-header-sec {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .container {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 599px) {
  .icon-header-sec .container {
    padding: 0 18px;
  }
}
.icon-header-sec .content {
  display: flex;
  flex-wrap: wrap;
}
.icon-header-sec .content .left {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .left {
    width: 100%;
  }
}
.icon-header-sec .content .left .rapper {
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .left .rapper {
    margin-right: 0;
  }
}
.icon-header-sec .content .left .rapper p {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.00938rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #c3a86b;
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .left .rapper p {
    margin-bottom: 10px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.icon-header-sec .content .left .rapper h1 {
  margin-top: 0;
  margin-bottom: 93px;
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 6.25rem;
  color: #002e2e;
}
@media only screen and (max-width: 1439px) {
  .icon-header-sec .content .left .rapper h1 {
    margin-bottom: 50px;
    font-size: 4.375rem;
    line-height: 4.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .left .rapper h1 {
    margin-bottom: 36px;
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
.icon-header-sec .content .left .rapper figure {
  display: none;
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .left .rapper figure {
    display: block;
    max-width: 84px;
    margin: 0 auto 40px;
  }
}
.icon-header-sec .content .left .rapper figure img {
  width: 100%;
}
.icon-header-sec .content .left .rapper h3 {
  margin-bottom: 0;
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 4.375rem;
  color: #002e2e;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .icon-header-sec .content .left .rapper h3 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .icon-header-sec .content .left .rapper h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .left .rapper h3 {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.icon-header-sec .content .right {
  display: flex;
  align-items: flex-end;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .right {
    width: 100%;
  }
}
.icon-header-sec .content .right figure {
  max-width: 352px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 1439px) {
  .icon-header-sec .content .right figure {
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .icon-header-sec .content .right figure {
    display: none;
  }
}
.icon-header-sec .content .right figure img {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.theme--green-dark .icon-header-sec {
  background-color: #002e2e;
}
.theme--green-dark .icon-header-sec .content .left .rapper h1 {
  color: #f2f5f0;
}
.theme--green-dark .icon-header-sec .content .left .rapper h3 {
  color: #f2f5f0;
}

.link-collection-one {
  overflow: hidden;
  padding: 110px 0;
  background-color: #f2f5f0;
}
@media only screen and (max-width: 1279px) {
  .link-collection-one {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .container {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 599px) {
  .link-collection-one .container {
    padding: 0 18px;
  }
}
.link-collection-one .content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -69px;
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content {
    margin: 0 -35px;
  }
}
.link-collection-one .content .item {
  width: calc(50% - 138px);
  margin: 0 69px 100px;
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content .item {
    width: calc(50% - 70px);
    margin: 0 35px 70px;
  }
}
@media only screen and (max-width: 1023px) {
  .link-collection-one .content .item {
    margin: 0 35px 90px;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item {
    width: 100%;
    margin: 0 35px 52px;
  }
}
.link-collection-one .content .item:nth-last-child(2) {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item:nth-last-child(2) {
    margin-bottom: 52px;
  }
}
.link-collection-one .content .item:last-child {
  margin-bottom: 0;
}
.link-collection-one .content .item .rapper hr {
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item .rapper hr {
    margin-bottom: 15px;
  }
}
.link-collection-one .content .item .rapper h2 {
  margin-top: 0;
  margin-bottom: 99px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.375rem;
  color: #002e2e;
}
.link-collection-one .content .item .rapper h2 a {
  text-decoration: none;
  color: #002e2e;
  transition: 0.5s ease all;
}
.link-collection-one .content .item .rapper h2 a:hover {
  color: #87e0b0;
}
@media only screen and (max-width: 1919px) {
  .link-collection-one .content .item .rapper h2 {
    margin-bottom: 70px;
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content .item .rapper h2 {
    margin-bottom: 50px;
    font-size: 2.1875rem;
    line-height: 2.8125rem;
  }
}
@media only screen and (max-width: 1023px) {
  .link-collection-one .content .item .rapper h2 {
    margin-bottom: 30px;
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item .rapper h2 {
    margin-bottom: 25px;
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.link-collection-one .content .item .rapper .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.link-collection-one .content .item .rapper .inner p {
  width: 100%;
  max-width: 530px;
  margin-bottom: 0;
  margin-right: 30px;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 2.6875rem;
  color: #002e2e;
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content .item .rapper .inner p {
    max-width: 360px;
    font-size: 1.5625rem;
    line-height: 2.1875rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item .rapper .inner p {
    margin-right: 20px;
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.link-collection-one .content .item .rapper .inner .btn--impact {
  margin-top: 0;
}
.link-collection-one .content .item .rapper .inner .btn--impact .arrow-container {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content .item .rapper .inner .btn--impact .arrow-container {
    height: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item .rapper .inner .btn--impact .arrow-container {
    height: 31px;
    font-size: 2.1875rem;
  }
}
.link-collection-one .content .item .rapper .inner .btn--impact .arrow-container::before {
  color: #d6bc86;
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content .item .rapper .inner .btn--impact .arrow-container::before {
    font-size: 2.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item .rapper .inner .btn--impact .arrow-container::before {
    font-size: 2.1875rem;
  }
}
.link-collection-one .content .item .rapper .inner .btn--impact .arrow-container::after {
  color: #a8925d;
}
@media only screen and (max-width: 1439px) {
  .link-collection-one .content .item .rapper .inner .btn--impact .arrow-container::after {
    font-size: 2.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-one .content .item .rapper .inner .btn--impact .arrow-container::after {
    font-size: 2.1875rem;
  }
}
.theme--green-dark .link-collection-one {
  background-color: #002e2e;
}
.theme--green-dark .link-collection-one .content .item .rapper h2 a {
  text-decoration: none;
  color: #002e2e;
}
.theme--green-dark .link-collection-one .content .item .rapper h2 a:hover {
  color: #87e0b0 !important;
}
.theme--green-dark .link-collection-one .content .item .rapper * {
  color: #f2f5f0 !important;
}

.link-collection-two {
  padding: 110px 0;
  background-color: #fff;
}
@media only screen and (max-width: 1279px) {
  .link-collection-two {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-two {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-two .container {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 599px) {
  .link-collection-two .container {
    padding: 0 18px;
  }
}
.link-collection-two h2 {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: #002e2e;
}
@media only screen and (max-width: 767px) {
  .link-collection-two h2 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.link-collection-two .rapper {
  margin-top: -8px;
}
@media only screen and (max-width: 767px) {
  .link-collection-two .rapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
  }
}
.link-collection-two .rapper .row:first-child ul li:first-child {
  color: #a6b5bd;
}
.link-collection-two .rapper .row:first-child ul li:first-child a {
  color: #a6b5bd;
}
.link-collection-two .rapper .row:first-child ul li:first-child a:hover {
  color: #066;
}
@media only screen and (max-width: 767px) {
  .link-collection-two .rapper .row {
    width: 100%;
    margin-bottom: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-two .rapper .row:last-child {
    margin-bottom: 0;
  }
}
.link-collection-two .rapper .row ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin: 30px 0 0;
  padding: 0;
  list-style-type: none;
}
@media only screen and (max-width: 767px) {
  .link-collection-two .rapper .row ul {
    grid-template-columns: 1fr;
  }
}
.link-collection-two .rapper .row ul li {
  width: 100%;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.6875rem;
  color: #066;
}
@media only screen and (max-width: 1439px) {
  .link-collection-two .rapper .row ul li {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-two .rapper .row ul li {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.link-collection-two .rapper .row ul li a {
  display: block;
  max-width: max-content;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.6875rem;
  text-decoration: none;
  color: #066;
  transition: 0.5s ease all;
}
@media only screen and (max-width: 1439px) {
  .link-collection-two .rapper .row ul li a {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .link-collection-two .rapper .row ul li a {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.link-collection-two .rapper .row ul li a:hover {
  color: #a6b5bd;
}

.link-collection-two.grey-mode {
  background-color: #f2f5f0;
}

.link-collection-two.dark-mode {
  background-color: #066;
}
.link-collection-two.dark-mode h2 {
  color: #a6b5bd;
}
.link-collection-two.dark-mode .rapper .row:first-child ul li:first-child {
  color: #f2f5f0;
}
.link-collection-two.dark-mode .rapper .row:first-child ul li:first-child a {
  color: #f2f5f0;
}
.link-collection-two.dark-mode .rapper .row:first-child ul li:first-child a:hover {
  color: #b1dad6;
}
.link-collection-two.dark-mode .rapper .row ul li {
  color: #b1dad6;
}
.link-collection-two.dark-mode .rapper .row ul li a {
  color: #b1dad6;
}
.link-collection-two.dark-mode .rapper .row ul li a:hover {
  color: #f2f5f0;
}

.description-header-sec {
  padding: 110px 0;
  background-color: #fff;
}
@media only screen and (max-width: 1279px) {
  .description-header-sec {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .description-header-sec {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .description-header-sec .container {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 599px) {
  .description-header-sec .container {
    padding: 0 18px;
  }
}
.description-header-sec .rapper {
  max-width: 1130px;
}
@media only screen and (max-width: 767px) {
  .description-header-sec .rapper {
    max-width: 100%;
  }
}
.description-header-sec .rapper h6 {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.00938rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #c3a86b;
}
@media only screen and (max-width: 767px) {
  .description-header-sec .rapper h6 {
    margin-bottom: 10px;
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}
.description-header-sec .rapper h1 {
  margin-top: 0;
  margin-bottom: 93px;
  color: #002e2e;
}
@media only screen and (max-width: 1439px) {
  .description-header-sec .rapper h1 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .description-header-sec .rapper h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
.description-header-sec .rapper h3 {
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1.875rem;
  color: #002e2e;
}
.theme--green-dark .description-header-sec {
  background-color: #002e2e;
}
.theme--green-dark .description-header-sec .rapper h1 {
  color: #f2f5f0;
}
.theme--green-dark .description-header-sec .rapper h3 {
  color: #f2f5f0;
}

.header-post .basic-header {
  padding-bottom: 83px;
}
@media only screen and (max-width: 1279px) {
  .header-post .basic-header {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .header-post .basic-header {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .header-post__logo--desktop {
    display: none;
  }
}
.header-post__logo--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header-post__logo--mobile {
    display: block;
  }
}
.header-post__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 80px;
}
@media only screen and (max-width: 1279px) {
  .header-post__grid {
    grid-column-gap: 40px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .header-post__grid {
    grid-column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .header-post__grid {
    grid-template-columns: 1fr;
  }
}
.header-post__grid > div:first-child {
  grid-column: 1/5;
}
.header-post__grid > div:last-child {
  grid-column: 5/7;
}
@media only screen and (max-width: 767px) {
  .header-post__grid > div:first-child, .header-post__grid > div:last-child {
    grid-column: 1;
  }
}
.header-post img {
  max-width: 100%;
}
.header-post__intro-text {
  position: relative;
  z-index: 1;
  width: 80%;
  margin-top: -110px;
  margin-left: 20%;
  padding: 50px 60px 70px;
  background-color: #fff;
}
.header-post__intro-text p {
  margin-top: 0;
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.1;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .header-post__intro-text p {
    font-size: 2.8125rem;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 1279px) {
  .header-post__intro-text {
    padding: 40px 50px 60px;
  }
  .header-post__intro-text p {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .header-post__intro-text {
    padding: 30px 40px 50px;
  }
  .header-post__intro-text p {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-post__intro-text {
    width: auto;
    margin-top: -50px;
    margin-left: 16px;
    padding: 30px 20px;
  }
  .header-post__intro-text p {
    font-size: 1.625rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 599px) {
  .header-post__intro-text .header-post__logo {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .header-post.context-post .header-post__grid > div:last-child {
    grid-row: 1;
  }
}
.header-post.context-post .header-post__details {
  padding-bottom: 110px;
}
.header-post.context-post .header-post__details div {
  border-top: 2px solid #87e0b0;
  padding: 17px 0 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}
.header-post.context-post .header-post__details div:last-child {
  border-bottom: 2px solid #87e0b0;
}
.header-post.context-post .header-post__details span {
  margin-right: 10px;
  font-size: 0.875rem;
}
.header-post.context-post .header-post__details .header-post__authors {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}
@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  .header-post.context-post .header-post__details div {
    padding: 12px 0;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1279px) {
  .header-post.context-post .header-post__details {
    padding-bottom: 70px;
  }
  .header-post.context-post .header-post__details div {
    padding: 8px 0;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .header-post.context-post .header-post__details {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .header-post.context-post .header-post__details {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 599px) {
  .header-post.context-post .header-post__details {
    display: flex;
    flex-flow: row wrap;
  }
  .header-post.context-post .header-post__details div {
    width: 100%;
    padding: 4px 0;
    font-size: 0.875rem;
  }
  .header-post.context-post .header-post__details div.header-post__social-links {
    padding: 10px 0;
  }
  .header-post.context-post .header-post__details div:nth-child(1) {
    width: 50%;
  }
  .header-post.context-post .header-post__details div:nth-child(2) {
    width: 50%;
    text-align: right;
  }
  .header-post.context-post .header-post__details span {
    font-size: 0.625rem;
  }
}
.header-post.context-post .header-post__social-links {
  display: flex;
  align-items: center;
  line-height: 1;
}
.header-post.context-post .header-post__social-links span {
  margin-right: 24px;
  line-height: 1;
}
.header-post.context-post .header-post__social-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-post.context-post .header-post__social-links li {
  display: inline-block;
  margin-right: 16px;
  padding: 0;
  line-height: 1;
}
.header-post.context-post .header-post__social-links li:last-child {
  margin-right: 0;
}
.header-post.context-post .header-post__social-links i {
  font-size: 2.0625rem;
  color: #066;
  transition: color 300ms;
}
.header-post.context-post .header-post__social-links i:hover {
  color: #002e2e;
}
@media only screen and (max-width: 1279px) {
  .header-post.context-post .header-post__social-links li {
    margin-right: 10px;
  }
  .header-post.context-post .header-post__social-links i {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .header-post.context-post .header-post__social-links {
    display: block;
  }
  .header-post.context-post .header-post__social-links ul {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .header-post.context-post .header-post__social-links {
    display: flex;
    margin-bottom: 40px;
  }
  .header-post.context-post .header-post__social-links ul {
    margin-top: 0;
  }
}
@media only screen and (max-width: 599px) {
  .header-post.context-post .header-post__social-links {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1279px) {
  .header-post.context-post .header-post__intro-text {
    margin-top: -70px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .header-post.context-post .header-post__intro-text {
    margin-top: -40px;
  }
}
@media only screen and (max-width: 599px) {
  .header-post.context-post .header-post__intro-text {
    margin-top: -50px;
  }
}
.header-post.context-case-study .header-post__logo {
  max-width: 150px;
}
@media only screen and (max-width: 767px) {
  .header-post.context-case-study .header-post__logo {
    display: none;
  }
}
.header-post.context-case-study .header-post__intro-text p:first-of-type {
  margin-top: 0;
}
.header-post.context-case-study .header-post__intro-text .header-post__logo {
  display: none;
  width: 20%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .header-post.context-case-study .header-post__intro-text .header-post__logo {
    display: block;
  }
}

.otgs-development-site-front-end {
  display: none;
}

.icon-header-sec,
.link-collection-two,
.links-with-images {
  margin-bottom: 0;
}

.icon-blocks-sec,
.post-carousel-sec,
.text-and-carousel,
.link-collection-one,
.icons-and-descriptions {
  overflow: hidden;
}

.dev--on {
  position: fixed;
  top: -1px;
  bottom: -1px;
  left: 50%;
  z-index: 9999;
  height: calc(100% + 2px);
  transform: translateX(-50%);
  pointer-events: none;
}
.dev--on::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #87e0b0;
  background-color: rgba(135, 224, 176, 0.1);
}

.debug-intersection-area {
  position: fixed;
  top: 30%;
  bottom: 65%;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 0, 0, 0.1);
}

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