@charset "UTF-8";
/**
 * Site variables
 */
/**
 * Colors
 */
/*
$content-builder-padding-top: 120px;
$content-builder-padding-bottom: 120px;
$content-builder-tablet-padding-top: 80px;
$content-builder-tablet-padding-bottom: 80px;
$content-builder-mobile-padding-top: 50px;
$content-builder-mobile-padding-bottom: 50px;
*/
/**
 * Content builder padding (DEFUNCT)

 * NOTE: Don't use this, use specific .component-pad-top & .component-pad-bottom instead
 */
/**
 * Site variables
 */
/**
 * Colors
 */
/*
$content-builder-padding-top: 120px;
$content-builder-padding-bottom: 120px;
$content-builder-tablet-padding-top: 80px;
$content-builder-tablet-padding-bottom: 80px;
$content-builder-mobile-padding-top: 50px;
$content-builder-mobile-padding-bottom: 50px;
*/
/**
 * Content builder padding (DEFUNCT)

 * NOTE: Don't use this, use specific .component-pad-top & .component-pad-bottom instead
 */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 7px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFF;
}

.hamburger-box {
  width: 26px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: #FFF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
@import "types/3dx";
@import "types/3dx-r";
@import "types/3dy";
@import "types/3dy-r";
@import "types/3dxy";
@import "types/3dxy-r";
@import "types/arrow";
@import "types/arrow-r";
@import "types/arrowalt";
@import "types/arrowalt-r";
@import "types/arrowturn";
@import "types/arrowturn-r";
@import "types/boring";
@import "types/collapse";
@import "types/collapse-r";
@import "types/elastic";
@import "types/elastic-r";
@import "types/emphatic";
@import "types/emphatic-r";
@import "types/minus";
@import "types/slider";
@import "types/slider-r";


@import "types/spin";
@import "types/spin-r";
@import "types/spring";
@import "types/spring-r";
@import "types/stand";
@import "types/stand-r";
@import "types/vortex";
@import "types/vortex-r";
*/
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/**
 * CSS Grid
 */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .grid {
    grid-gap: 20px;
  }
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

/**
 * Tablet Grid
 */
@media (max-width: 1024px) {
  .col-1-tablet {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .col-2-tablet {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .col-3-tablet {
    grid-column: span 3;
  }
}

@media (max-width: 1024px) {
  .col-4-tablet {
    grid-column: span 4;
  }
}

@media (max-width: 1024px) {
  .col-5-tablet {
    grid-column: span 5;
  }
}

@media (max-width: 1024px) {
  .col-6-tablet {
    grid-column: span 6;
  }
}

@media (max-width: 1024px) {
  .col-7-tablet {
    grid-column: span 7;
  }
}

@media (max-width: 1024px) {
  .col-8-tablet {
    grid-column: span 8;
  }
}

@media (max-width: 1024px) {
  .col-9-tablet {
    grid-column: span 9;
  }
}

@media (max-width: 1024px) {
  .col-10-tablet {
    grid-column: span 10;
  }
}

@media (max-width: 1024px) {
  .col-11-tablet {
    grid-column: span 11;
  }
}

/**
 * Mobile Grid
 */
@media (max-width: 767px) {
  .col-1-mobile {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .col-2-mobile {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .col-3-mobile {
    grid-column: span 3;
  }
}

@media (max-width: 767px) {
  .col-4-mobile {
    grid-column: span 4;
  }
}

@media (max-width: 767px) {
  .col-5-mobile {
    grid-column: span 5;
  }
}

@media (max-width: 767px) {
  .col-6-mobile {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .col-7-mobile {
    grid-column: span 7;
  }
}

@media (max-width: 767px) {
  .col-8-mobile {
    grid-column: span 8;
  }
}

@media (max-width: 767px) {
  .col-9-mobile {
    grid-column: span 9;
  }
}

@media (max-width: 767px) {
  .col-10-mobile {
    grid-column: span 10;
  }
}

@media (max-width: 767px) {
  .col-11-mobile {
    grid-column: span 11;
  }
}

@media (max-width: 767px) {
  .col-12-mobile {
    grid-column: span 12;
  }
}

/**
 * Mobile small grid
 */
@media (max-width: 600px) {
  .col-1-mobile-small {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .col-2-mobile-small {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .col-3-mobile-small {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  .col-4-mobile-small {
    grid-column: span 4;
  }
}

@media (max-width: 600px) {
  .col-5-mobile-small {
    grid-column: span 5;
  }
}

@media (max-width: 600px) {
  .col-6-mobile-small {
    grid-column: span 6;
  }
}

@media (max-width: 600px) {
  .col-7-mobile-small {
    grid-column: span 7;
  }
}

@media (max-width: 600px) {
  .col-8-mobile-small {
    grid-column: span 8;
  }
}

@media (max-width: 600px) {
  .col-9-mobile-small {
    grid-column: span 9;
  }
}

@media (max-width: 600px) {
  .col-10-mobile-small {
    grid-column: span 10;
  }
}

@media (max-width: 600px) {
  .col-11-mobile-small {
    grid-column: span 11;
  }
}

@media (max-width: 600px) {
  .col-12-mobile-small {
    grid-column: span 12;
  }
}

/**
 * General layout stuff here...
 *
 * Ideally only stuff that's not specifically used in blocks should go in here...
 * Anything needed in blocks should go in their own css files in their block folder & any shared stuff should go in _shared.scss
 */
/**
 * General stuff
 */
body {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background: var(--color-text-light);
  line-height: 1.75em;
  font-family: var(--font-body), sans-serif;
  font-size: var(--body-primary-font-size);
  font-weight: var(--body-weight);
  color: #333;
}
@media (max-width: 767px) {
  body {
    font-size: var(--body-primary-font-size-mobile);
  }
}
body .larger {
  font-size: var(--body-featured-font-size);
}
@media (max-width: 767px) {
  body .larger {
    font-size: var(--body-featured-font-size-mobile);
  }
}
body small {
  font-size: var(--body-small-font-size);
}
@media (max-width: 767px) {
  body small {
    font-size: var(--body-small-font-size-mobile);
  }
}

html {
  background-color: var(--footer-background-colour);
}

#site-outer {
  background: var(--color-text-light);
  /*
  margin-top: $nav-height-desktop;

  @media (max-width: $tablet-width) {
      margin-top: $nav-height-mobile;
  }

  &.nav-open {
      margin-top: $nav-height-desktop + $sub-nav-height-desktop;

      @media (max-width: $tablet-width) {
          margin-top: $nav-height-mobile;
      }
  }
   */
}

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

* {
  outline: none;
}

.container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 140px;
  padding-right: 140px;
}
@media (max-width: 1440px) {
  .container {
    padding-left: 112px;
  }
}
@media (max-width: 1280px) {
  .container {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 24px;
  }
}
@media (max-width: 1440px) {
  .container {
    padding-right: 112px;
  }
}
@media (max-width: 1280px) {
  .container {
    padding-right: 80px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-right: 24px;
  }
}

#wrapper {
  position: relative;
}

#main-container {
  overflow-x: hidden;
}

a {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  color: #0D171A;
}
pre {
  font-size: 12px;
  background: #EEE;
  border: 1px solid #CCC;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  height: 74px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1024px) {
  #header {
    height: 60px;
  }
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}
#header #branding #site-title {
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#header #branding #site-title h1 {
  font-size: 30px;
  color: var(--color-text-light);
}
@media (max-width: 767px) {
  #header #branding #site-title h1 {
    font-size: 20px;
  }
}
#header #branding #site-title a {
  text-decoration: none;
  color: inherit;
}
#header #branding #site-title img {
  max-width: 100%;
  height: auto;
}
#header .nav-stuff {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #header .nav-stuff #menu {
    display: none;
    position: fixed;
    width: 100%;
    top: 60px;
    left: 0;
    z-index: 11;
    display: none;
  }
}
@media (max-width: 1024px) {
  #header .nav-stuff #menu .menu,
#header .nav-stuff #menu .menu-main-menu-container {
    padding-left: 0;
    width: 100%;
    max-height: 100vh;
    overflow-x: auto;
    background: var(--color-highlight);
  }
}
#header .nav-stuff #menu .menu > ul,
#header .nav-stuff #menu .menu-main-menu-container > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 74px;
}
@media (max-width: 1024px) {
  #header .nav-stuff #menu .menu > ul,
#header .nav-stuff #menu .menu-main-menu-container > ul {
    display: block;
    height: auto;
  }
}
#header .nav-stuff #menu .menu > ul li,
#header .nav-stuff #menu .menu-main-menu-container > ul li {
  margin: 0 1em;
  height: inherit;
}
#header .nav-stuff #menu .menu > ul li a,
#header .nav-stuff #menu .menu-main-menu-container > ul li a {
  color: var(--color-text-light);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#header .nav-stuff #menu .menu > ul li a:hover,
#header .nav-stuff #menu .menu-main-menu-container > ul li a:hover {
  color: var(--color-highlight);
}
#header .nav-stuff #menu .menu > ul li a:active, #header .nav-stuff #menu .menu > ul li a.active,
#header .nav-stuff #menu .menu-main-menu-container > ul li a:active,
#header .nav-stuff #menu .menu-main-menu-container > ul li a.active {
  color: var(--color-highlight);
}
#header .nav-stuff #menu .menu > ul li .sub-menu,
#header .nav-stuff #menu .menu-main-menu-container > ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1em;
  min-width: 200px;
}
#header .nav-stuff #menu .menu > ul li .sub-menu li,
#header .nav-stuff #menu .menu-main-menu-container > ul li .sub-menu li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
#header .nav-stuff #menu .menu > ul li .sub-menu li a,
#header .nav-stuff #menu .menu-main-menu-container > ul li .sub-menu li a {
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
}
#header .nav-stuff #menu .menu > ul li .sub-menu li a:hover,
#header .nav-stuff #menu .menu-main-menu-container > ul li .sub-menu li a:hover {
  color: var(--color-highlight);
}
#header .nav-stuff #menu .menu > ul li .sub-menu li a:active, #header .nav-stuff #menu .menu > ul li .sub-menu li a.active,
#header .nav-stuff #menu .menu-main-menu-container > ul li .sub-menu li a:active,
#header .nav-stuff #menu .menu-main-menu-container > ul li .sub-menu li a.active {
  color: var(--color-highlight);
}
#header .nav-stuff #menu .menu > ul li.menu-item-has-children,
#header .nav-stuff #menu .menu-main-menu-container > ul li.menu-item-has-children {
  position: relative;
}
#header .nav-stuff #menu .menu > ul li.menu-item-has-children:hover .sub-menu,
#header .nav-stuff #menu .menu-main-menu-container > ul li.menu-item-has-children:hover .sub-menu {
  display: block;
}
#header .nav-stuff .hamburger {
  display: none;
  margin-left: 20px;
  padding: 0;
  margin-top: 2px;
  background: none !important;
}
@media (max-width: 1024px) {
  #header .nav-stuff .hamburger {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #header .nav-stuff .hamburger {
    margin-left: 10px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--headings-weight);
  line-height: 1.1em;
  margin-top: 0;
  margin-bottom: 0.6em;
  font-family: var(--font-headings), serif;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
    display: none;
  }
}

h1.hero {
  font-size: var(--h1-hero-font-size);
}
@media (max-width: 767px) {
  h1.hero {
    font-size: var(--h1-hero-font-size-mobile);
  }
}

h1,
.h1 {
  font-size: var(--h1-font-size);
}
@media (max-width: 767px) {
  h1,
.h1 {
    font-size: var(--h1-font-size-mobile);
  }
}

h2,
.h2 {
  font-size: var(--h2-font-size);
}
@media (max-width: 767px) {
  h2,
.h2 {
    font-size: var(--h2-font-size-mobile);
  }
}

h3,
.h3 {
  font-size: var(--h3-font-size);
}
@media (max-width: 767px) {
  h3,
.h3 {
    font-size: var(--h3-font-size-mobile);
  }
}

h4,
.h4 {
  font-size: var(--h4-font-size);
}
@media (max-width: 767px) {
  h4,
.h4 {
    font-size: var(--h4-font-size-mobile);
  }
}

h5,
.h5 {
  font-size: var(--h5-font-size);
}
@media (max-width: 767px) {
  h5,
.h5 {
    font-size: var(--h5-font-size-mobile);
  }
}

h6,
.h6 {
  font-size: var(--h6-font-size);
}
@media (max-width: 767px) {
  h6,
.h6 {
    font-size: var(--h6-font-size-mobile);
  }
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  color: var(--color-tertiary);
}

.wysiwyg {
  line-height: 1.75em;
}
@media (max-width: 1024px) {
  .wysiwyg {
    line-height: 1.5em;
  }
}
@media (max-width: 767px) {
  .wysiwyg {
    line-height: 1.5em;
  }
}
.wysiwyg ul, .wysiwyg ol {
  padding-left: 2em;
  margin-top: 1rem;
}
.wysiwyg ul:last-child, .wysiwyg ol:last-child {
  margin-bottom: 0;
}
.wysiwyg ul {
  list-style: none;
}
.wysiwyg ul li:before {
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--color-highlight);
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1.75em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1.75em;
  /* Also needed for space (tweak if needed) */
  top: -0.05em;
  position: relative;
}
.wysiwyg ol {
  padding-left: 1.2em;
}
.wysiwyg ol li {
  padding-left: 0.8em;
}
.wysiwyg a {
  color: var(--color-highlight);
}
.wysiwyg p {
  margin-bottom: 1em;
  margin-block-start: 0;
  margin-top: 0;
}
.wysiwyg p:last-child {
  margin-bottom: 0;
}
.wysiwyg p.empty {
  overflow: hidden;
}
.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h4, .wysiwyg h6 {
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  line-height: 1.4em;
}
.wysiwyg h2:first-child, .wysiwyg h3:first-child, .wysiwyg h4:first-child, .wysiwyg h4:first-child, .wysiwyg h6:first-child {
  margin-top: 0;
}
.wysiwyg blockquote {
  padding: 3em;
  margin: 3em;
  border-radius: 8px;
  position: relative;
}
.wysiwyg blockquote:before {
  content: "“";
  font-size: 2em;
  font-weight: bold;
  position: absolute;
  left: 1em;
  top: 1em;
  opacity: 0.5;
}
.wysiwyg blockquote:after {
  content: "”";
  font-size: 2em;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  right: 1em;
  bottom: 0.5em;
  opacity: 0.5;
}

.component-pad-top {
  padding-top: var(--block-padding-top);
}
@media (max-width: 1024px) {
  .component-pad-top {
    padding-top: var(--block-padding-top-tablet);
  }
}
@media (max-width: 767px) {
  .component-pad-top {
    padding-top: var(--block-padding-top-mobile);
  }
}

.component-pad-bottom {
  padding-bottom: var(--block-padding-bottom);
}
@media (max-width: 1024px) {
  .component-pad-bottom {
    padding-bottom: var(--block-padding-bottom-tablet);
  }
}
@media (max-width: 767px) {
  .component-pad-bottom {
    padding-bottom: var(--block-padding-bottom-mobile);
  }
}

.component-margin-top {
  margin-top: var(--block-padding-top);
}
@media (max-width: 1024px) {
  .component-margin-top {
    margin-top: var(--block-padding-top-tablet);
  }
}
@media (max-width: 767px) {
  .component-margin-top {
    margin-top: var(--block-padding-top-mobile);
  }
}

.component-margin-bottom {
  margin-bottom: var(--block-padding-bottom);
}
@media (max-width: 1024px) {
  .component-margin-bottom {
    margin-bottom: var(--block-padding-bottom-tablet);
  }
}
@media (max-width: 767px) {
  .component-margin-bottom {
    margin-bottom: var(--block-padding-bottom-mobile);
  }
}

.admin-bar {
  /*
  #header {
      top: 32px;

      @media(max-width: $mobile-admin-bar) {
          top: 46px;
      }
      @media (max-width: 600px) {
          top: 0;
      }
  }

  .nav-stuff {
      #menu {
          @media (max-width: $tablet-width) {
              top: calc($nav-height-mobile + 32px) !important;
          }
          @media(max-width: $mobile-admin-bar) {
              top: calc($nav-height-mobile + 46px) !important;
          }

          @media (max-width: 600px) {
              top: $nav-height-mobile !important;
          }
      }
  }
   */
}
@media (max-width: 600px) {
  .admin-bar #wpadminbar {
    display: none;
  }
}
@media (max-width: 600px) {
  .admin-bar {
    margin-top: -46px;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text-colour);
  background-color: var(--footer-background-colour);
}
footer a {
  color: var(--footer-text-colour);
}
footer a:hover {
  color: var(--footer-text-hover-colour);
}
footer .container {
  padding-top: 64px;
  padding-bottom: 48px;
}
@media (max-width: 767px) {
  footer .container {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
footer .container .wysiwyg {
  line-height: 1.75em;
}
@media (max-width: 1024px) {
  footer .container .wysiwyg {
    line-height: 1.5em;
  }
}
@media (max-width: 767px) {
  footer .container .wysiwyg {
    line-height: 1.5em;
  }
}
footer .container .wysiwyg ul, footer .container .wysiwyg ol {
  padding-left: 2em;
  margin-top: 1rem;
}
footer .container .wysiwyg ul:last-child, footer .container .wysiwyg ol:last-child {
  margin-bottom: 0;
}
footer .container .wysiwyg ul {
  list-style: none;
}
footer .container .wysiwyg ul li:before {
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--color-highlight);
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1.75em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1.75em;
  /* Also needed for space (tweak if needed) */
  top: -0.05em;
  position: relative;
}
footer .container .wysiwyg ol {
  padding-left: 1.2em;
}
footer .container .wysiwyg ol li {
  padding-left: 0.8em;
}
footer .container .wysiwyg a {
  color: var(--color-highlight);
}
footer .container .wysiwyg p {
  margin-bottom: 1em;
  margin-block-start: 0;
  margin-top: 0;
}
footer .container .wysiwyg p:last-child {
  margin-bottom: 0;
}
footer .container .wysiwyg p.empty {
  overflow: hidden;
}
footer .container .wysiwyg h2, footer .container .wysiwyg h3, footer .container .wysiwyg h4, footer .container .wysiwyg h4, footer .container .wysiwyg h6 {
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  line-height: 1.4em;
}
footer .container .wysiwyg h2:first-child, footer .container .wysiwyg h3:first-child, footer .container .wysiwyg h4:first-child, footer .container .wysiwyg h4:first-child, footer .container .wysiwyg h6:first-child {
  margin-top: 0;
}
footer .container .wysiwyg blockquote {
  padding: 3em;
  margin: 3em;
  border-radius: 8px;
  position: relative;
}
footer .container .wysiwyg blockquote:before {
  content: "“";
  font-size: 2em;
  font-weight: bold;
  position: absolute;
  left: 1em;
  top: 1em;
  opacity: 0.5;
}
footer .container .wysiwyg blockquote:after {
  content: "”";
  font-size: 2em;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  right: 1em;
  bottom: 0.5em;
  opacity: 0.5;
}
footer .container p {
  margin-top: 0;
}
footer .container .grid {
  padding-top: 0.7em;
}
@media (max-width: 767px) {
  footer .container .grid {
    display: block;
    padding-top: 1em;
    text-align: left;
  }
}
footer .container .footer-logo {
  max-width: 300px;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  footer .container .footer-logo {
    max-width: 200px;
    padding-bottom: 1em;
  }
}
footer .container ul.menu,
footer .container .menu ul {
  display: flex;
  justify-content: left;
  list-style: none;
  padding-left: 0;
  gap: calc(var(--item-spacing-between-horizontal) / 3) var(--item-spacing-between-horizontal);
  flex-wrap: wrap;
  margin: 0;
  padding-bottom: calc(var(--item-spacing-between-horizontal) * 2);
  font-weight: var(--headings-weight);
}
@media (max-width: 767px) {
  footer .container ul.menu,
footer .container .menu ul {
    padding-bottom: 3em;
  }
}
@media (max-width: 600px) {
  footer .container ul.menu,
footer .container .menu ul {
    flex-direction: column;
  }
}
footer .container ul.menu li a,
footer .container .menu ul li a {
  text-decoration: none;
  color: var(--footer-text-colour);
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
footer .container ul.menu li a:hover,
footer .container .menu ul li a:hover {
  color: var(--footer-text-hover-colour);
}
footer .right {
  text-align: right;
}
@media (max-width: 767px) {
  footer .right {
    text-align: left;
  }
}
footer .copyright {
  opacity: 0.3;
  font-size: 0.7em;
  border-top: 1px solid var(--footer-text-colour);
}
@media (max-width: 767px) {
  footer .copyright {
    line-height: 1.6em;
  }
}
footer .copyright a {
  color: var(--footer-text-colour);
}
@media (max-width: 767px) {
  footer .copyright p {
    margin-bottom: 0.5em;
  }
}
footer .site-by a {
  text-decoration: none;
}
footer .site-by .cav-logo {
  width: auto;
}
footer .site-by .cav-logo img {
  transform: translateY(2px);
}

/**
 * Forms
 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-internal-autofill-selected,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
textarea:-internal-autofill-selected {
  background-color: var(--color-text-light) !important;
  background: var(--color-text-light) !important;
  color: #0D171A !important;
  -webkit-box-shadow: 0 0 0 1000px var(--color-text-light) inset !important;
  -webkit-text-fill-color: #0D171A !important;
  outline: none;
}

:focus-visible {
  outline: none !important;
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -99999999px;
  top: auto !important;
  z-index: 0;
}

input[type=checkbox] + label:before,
.woocommerce-form__label-for-checkbox input[type=checkbox] + span:not(.required):before,
input[type=radio] + label:before,
.woocommerce-form__label-for-radio input[type=radio] + span:not(.required):before {
  display: inline-flex;
  content: "";
  border: 1px solid #0D171A;
  border-radius: 6px;
  background: var(--color-text-light);
  height: 24px;
  width: 24px;
  text-align: center;
  position: absolute;
  line-height: 1em;
  font-size: 0.9em;
  z-index: 1;
  margin-left: -36px;
  margin-top: -2px;
  box-sizing: border-box;
  font-family: val(--body-font);
}
input[type=radio] + label:before {
  border-radius: 50%;
}

input[type=checkbox]:checked + label:before,
.woocommerce-form__label-for-checkbox input[type=checkbox]:checked + span:not(.required):before {
  content: "\e06c";
  font-family: "Lucide";
  font-weight: 600;
  font-size: 1.2em;
  justify-content: center;
  align-items: center;
  padding-top: 0.05em;
}

input[type=radio]:checked + label:before,
.woocommerce-form__label-for-radio input[type=radio]:checked + span:not(.required):before {
  content: "\f111";
  color: var(--color-highlight);
  font-weight: 900;
  /* Make sure the solid weight is applied for Font Awesome */
  font-size: 0.9em;
  justify-content: center;
  align-items: center;
  font-size: 0.6em;
}

.gform-theme--framework .gfield--type-choice .gfield_radio,
body .gform-theme--framework .gfield--type-choice .gfield_radio {
  flex-direction: row;
  flex-wrap: wrap;
}
.gform-theme--framework .gfield--type-choice .gfield_radio .gchoice,
body .gform-theme--framework .gfield--type-choice .gfield_radio .gchoice {
  width: calc(33% - var(--gf-field-choice-gap));
}
@media (max-width: 1024px) {
  .gform-theme--framework .gfield--type-choice .gfield_radio .gchoice,
body .gform-theme--framework .gfield--type-choice .gfield_radio .gchoice {
    width: calc(50% - var(--gf-field-choice-gap));
  }
}
@media (max-width: 600px) {
  .gform-theme--framework .gfield--type-choice .gfield_radio .gchoice,
body .gform-theme--framework .gfield--type-choice .gfield_radio .gchoice {
    width: 100%;
  }
}

input[type=radio]:checked + label:before {
  border-radius: 50%;
  background-image: url("/wp-content/themes/cavbusinesspackage/images/orange-circle.svg");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

.checkbox-row {
  clear: both;
  margin-bottom: 1.5em;
  border: 1px solid transparent;
}
.checkbox-row:last-child {
  margin-bottom: 0;
}

#card-element,
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  color: #0D171A;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  padding: 0.6em 0.9em;
  line-height: 1.5em;
  width: 100%;
  height: 44px;
  box-shadow: none;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
#card-element:active, #card-element:focus, #card-element:hover,
input[type=color]:active,
input[type=color]:focus,
input[type=color]:hover,
input[type=date]:active,
input[type=date]:focus,
input[type=date]:hover,
input[type=datetime-local]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:hover,
input[type=datetime]:active,
input[type=datetime]:focus,
input[type=datetime]:hover,
input[type=email]:active,
input[type=email]:focus,
input[type=email]:hover,
input[type=month]:active,
input[type=month]:focus,
input[type=month]:hover,
input[type=number]:active,
input[type=number]:focus,
input[type=number]:hover,
input[type=password]:active,
input[type=password]:focus,
input[type=password]:hover,
input[type=search]:active,
input[type=search]:focus,
input[type=search]:hover,
input[type=tel]:active,
input[type=tel]:focus,
input[type=tel]:hover,
input[type=text]:active,
input[type=text]:focus,
input[type=text]:hover,
input[type=time]:active,
input[type=time]:focus,
input[type=time]:hover,
input[type=url]:active,
input[type=url]:focus,
input[type=url]:hover,
input[type=week]:active,
input[type=week]:focus,
input[type=week]:hover,
select:active,
select:focus,
select:hover,
textarea:active,
textarea:focus,
textarea:hover {
  outline: none !important;
  box-shadow: none;
}
#card-element::placeholder,
input[type=color]::placeholder,
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
input[type=datetime]::placeholder,
input[type=email]::placeholder,
input[type=month]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=time]::placeholder,
input[type=url]::placeholder,
input[type=week]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #717680;
}

.gfield_consent_label {
  padding-left: 24px;
}
.gfield_consent_label::before {
  border-radius: 8px;
  border: 1px solid #BDC0BF;
}

#contact-form #card-element,
#contact-form input[type=color],
#contact-form input[type=date],
#contact-form input[type=datetime-local],
#contact-form input[type=datetime],
#contact-form input[type=email],
#contact-form input[type=month],
#contact-form input[type=number],
#contact-form input[type=password],
#contact-form input[type=search],
#contact-form input[type=tel],
#contact-form input[type=text],
#contact-form input[type=time],
#contact-form input[type=url],
#contact-form input[type=week],
#contact-form select,
#contact-form textarea {
  height: 50px;
  border: 1px solid #0D171A;
  font-family: var(--font-body);
}
#contact-form #card-element:focus, #contact-form #card-element:active,
#contact-form input[type=color]:focus,
#contact-form input[type=color]:active,
#contact-form input[type=date]:focus,
#contact-form input[type=date]:active,
#contact-form input[type=datetime-local]:focus,
#contact-form input[type=datetime-local]:active,
#contact-form input[type=datetime]:focus,
#contact-form input[type=datetime]:active,
#contact-form input[type=email]:focus,
#contact-form input[type=email]:active,
#contact-form input[type=month]:focus,
#contact-form input[type=month]:active,
#contact-form input[type=number]:focus,
#contact-form input[type=number]:active,
#contact-form input[type=password]:focus,
#contact-form input[type=password]:active,
#contact-form input[type=search]:focus,
#contact-form input[type=search]:active,
#contact-form input[type=tel]:focus,
#contact-form input[type=tel]:active,
#contact-form input[type=text]:focus,
#contact-form input[type=text]:active,
#contact-form input[type=time]:focus,
#contact-form input[type=time]:active,
#contact-form input[type=url]:focus,
#contact-form input[type=url]:active,
#contact-form input[type=week]:focus,
#contact-form input[type=week]:active,
#contact-form select:focus,
#contact-form select:active,
#contact-form textarea:focus,
#contact-form textarea:active {
  border-color: var(--color-highlight);
}
#contact-form textarea {
  min-block-size: 185px;
}

/**
 * Gravity forms
 */
.gform_wrapper,
body .gform_wrapper,
.form-styles {
  /*
  input[type=submit],
  button {
      border: none;
      padding-top: 7px;
      padding-bottom: 7px;

      @include transitionCav();

      @media (max-width: $mobile-width) {
          width: 100%;
          padding: 13px 20px;
      }
  }

   */
}
.gform_wrapper .form-row,
body .gform_wrapper .form-row,
.form-styles .form-row {
  margin-bottom: 20px;
}
.gform_wrapper .gfield_label,
.gform_wrapper .gform-field-label,
body .gform_wrapper .gfield_label,
body .gform_wrapper .gform-field-label,
.form-styles .gfield_label,
.form-styles .gform-field-label {
  font-family: var(--font-body);
  font-size: calc(var(--body-primary-font-size) * 0.83);
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .gform_wrapper .gfield_label,
.gform_wrapper .gform-field-label,
body .gform_wrapper .gfield_label,
body .gform_wrapper .gform-field-label,
.form-styles .gfield_label,
.form-styles .gform-field-label {
    margin-block: 3px;
  }
}
.gform_wrapper .ginput_counter,
body .gform_wrapper .ginput_counter,
.form-styles .ginput_counter {
  display: none;
}
.gform_wrapper .gform_validation_errors,
body .gform_wrapper .gform_validation_errors,
.form-styles .gform_validation_errors {
  box-shadow: none;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.5em;
}
.gform_wrapper .gform_validation_errors h2,
body .gform_wrapper .gform_validation_errors h2,
.form-styles .gform_validation_errors h2 {
  font-size: inherit !important;
  margin-bottom: 0 !important;
  line-height: 1.1em;
  padding-bottom: 0 !important;
  align-items: flex-start;
}
.gform_wrapper .gform_validation_errors ol,
body .gform_wrapper .gform_validation_errors ol,
.form-styles .gform_validation_errors ol {
  display: none;
}
.gform_wrapper .gform_validation_errors:focus,
body .gform_wrapper .gform_validation_errors:focus,
.form-styles .gform_validation_errors:focus {
  border: none;
  outline: none;
}
.gform_wrapper .gfield_required_text,
body .gform_wrapper .gfield_required_text,
.form-styles .gfield_required_text {
  display: none !important;
}
.gform_wrapper .gfield_description.validation_message.gfield_validation_message,
body .gform_wrapper .gfield_description.validation_message.gfield_validation_message,
.form-styles .gfield_description.validation_message.gfield_validation_message {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.gform_wrapper .gfield_error input[type=color],
.gform_wrapper .gfield_error input[type=date],
.gform_wrapper .gfield_error input[type=datetime-local],
.gform_wrapper .gfield_error input[type=datetime],
.gform_wrapper .gfield_error input[type=email],
.gform_wrapper .gfield_error input[type=month],
.gform_wrapper .gfield_error input[type=number],
.gform_wrapper .gfield_error input[type=password],
.gform_wrapper .gfield_error input[type=search],
.gform_wrapper .gfield_error input[type=tel],
.gform_wrapper .gfield_error input[type=text],
.gform_wrapper .gfield_error input[type=time],
.gform_wrapper .gfield_error input[type=url],
.gform_wrapper .gfield_error input[type=week],
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea,
body .gform_wrapper .gfield_error input[type=color],
body .gform_wrapper .gfield_error input[type=date],
body .gform_wrapper .gfield_error input[type=datetime-local],
body .gform_wrapper .gfield_error input[type=datetime],
body .gform_wrapper .gfield_error input[type=email],
body .gform_wrapper .gfield_error input[type=month],
body .gform_wrapper .gfield_error input[type=number],
body .gform_wrapper .gfield_error input[type=password],
body .gform_wrapper .gfield_error input[type=search],
body .gform_wrapper .gfield_error input[type=tel],
body .gform_wrapper .gfield_error input[type=text],
body .gform_wrapper .gfield_error input[type=time],
body .gform_wrapper .gfield_error input[type=url],
body .gform_wrapper .gfield_error input[type=week],
body .gform_wrapper .gfield_error select,
body .gform_wrapper .gfield_error textarea,
.form-styles .gfield_error input[type=color],
.form-styles .gfield_error input[type=date],
.form-styles .gfield_error input[type=datetime-local],
.form-styles .gfield_error input[type=datetime],
.form-styles .gfield_error input[type=email],
.form-styles .gfield_error input[type=month],
.form-styles .gfield_error input[type=number],
.form-styles .gfield_error input[type=password],
.form-styles .gfield_error input[type=search],
.form-styles .gfield_error input[type=tel],
.form-styles .gfield_error input[type=text],
.form-styles .gfield_error input[type=time],
.form-styles .gfield_error input[type=url],
.form-styles .gfield_error input[type=week],
.form-styles .gfield_error select,
.form-styles .gfield_error textarea {
  border-color: #DB4536;
}
.gform_wrapper .gfield_error label,
body .gform_wrapper .gfield_error label,
.form-styles .gfield_error label {
  color: #DB4536;
}
.gform_wrapper .gfield--input-type-captcha,
body .gform_wrapper .gfield--input-type-captcha,
.form-styles .gfield--input-type-captcha {
  margin-bottom: 35px;
}
.gform_wrapper #card-element,
.gform_wrapper input[type=color],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=email],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=url],
.gform_wrapper input[type=week],
.gform_wrapper select,
.gform_wrapper textarea,
body .gform_wrapper #card-element,
body .gform_wrapper input[type=color],
body .gform_wrapper input[type=date],
body .gform_wrapper input[type=datetime-local],
body .gform_wrapper input[type=datetime],
body .gform_wrapper input[type=email],
body .gform_wrapper input[type=month],
body .gform_wrapper input[type=number],
body .gform_wrapper input[type=password],
body .gform_wrapper input[type=search],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=text],
body .gform_wrapper input[type=time],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=week],
body .gform_wrapper select,
body .gform_wrapper textarea,
.form-styles #card-element,
.form-styles input[type=color],
.form-styles input[type=date],
.form-styles input[type=datetime-local],
.form-styles input[type=datetime],
.form-styles input[type=email],
.form-styles input[type=month],
.form-styles input[type=number],
.form-styles input[type=password],
.form-styles input[type=search],
.form-styles input[type=tel],
.form-styles input[type=text],
.form-styles input[type=time],
.form-styles input[type=url],
.form-styles input[type=week],
.form-styles select,
.form-styles textarea {
  color: #0D171A;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  padding: 0.6em 0.9em;
  line-height: 1.5em;
  width: 100%;
  height: 44px;
  box-shadow: none;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
.gform_wrapper #card-element:active, .gform_wrapper #card-element:focus, .gform_wrapper #card-element:hover,
.gform_wrapper input[type=color]:active,
.gform_wrapper input[type=color]:focus,
.gform_wrapper input[type=color]:hover,
.gform_wrapper input[type=date]:active,
.gform_wrapper input[type=date]:focus,
.gform_wrapper input[type=date]:hover,
.gform_wrapper input[type=datetime-local]:active,
.gform_wrapper input[type=datetime-local]:focus,
.gform_wrapper input[type=datetime-local]:hover,
.gform_wrapper input[type=datetime]:active,
.gform_wrapper input[type=datetime]:focus,
.gform_wrapper input[type=datetime]:hover,
.gform_wrapper input[type=email]:active,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=email]:hover,
.gform_wrapper input[type=month]:active,
.gform_wrapper input[type=month]:focus,
.gform_wrapper input[type=month]:hover,
.gform_wrapper input[type=number]:active,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=number]:hover,
.gform_wrapper input[type=password]:active,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=password]:hover,
.gform_wrapper input[type=search]:active,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=search]:hover,
.gform_wrapper input[type=tel]:active,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=tel]:hover,
.gform_wrapper input[type=text]:active,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=text]:hover,
.gform_wrapper input[type=time]:active,
.gform_wrapper input[type=time]:focus,
.gform_wrapper input[type=time]:hover,
.gform_wrapper input[type=url]:active,
.gform_wrapper input[type=url]:focus,
.gform_wrapper input[type=url]:hover,
.gform_wrapper input[type=week]:active,
.gform_wrapper input[type=week]:focus,
.gform_wrapper input[type=week]:hover,
.gform_wrapper select:active,
.gform_wrapper select:focus,
.gform_wrapper select:hover,
.gform_wrapper textarea:active,
.gform_wrapper textarea:focus,
.gform_wrapper textarea:hover,
body .gform_wrapper #card-element:active,
body .gform_wrapper #card-element:focus,
body .gform_wrapper #card-element:hover,
body .gform_wrapper input[type=color]:active,
body .gform_wrapper input[type=color]:focus,
body .gform_wrapper input[type=color]:hover,
body .gform_wrapper input[type=date]:active,
body .gform_wrapper input[type=date]:focus,
body .gform_wrapper input[type=date]:hover,
body .gform_wrapper input[type=datetime-local]:active,
body .gform_wrapper input[type=datetime-local]:focus,
body .gform_wrapper input[type=datetime-local]:hover,
body .gform_wrapper input[type=datetime]:active,
body .gform_wrapper input[type=datetime]:focus,
body .gform_wrapper input[type=datetime]:hover,
body .gform_wrapper input[type=email]:active,
body .gform_wrapper input[type=email]:focus,
body .gform_wrapper input[type=email]:hover,
body .gform_wrapper input[type=month]:active,
body .gform_wrapper input[type=month]:focus,
body .gform_wrapper input[type=month]:hover,
body .gform_wrapper input[type=number]:active,
body .gform_wrapper input[type=number]:focus,
body .gform_wrapper input[type=number]:hover,
body .gform_wrapper input[type=password]:active,
body .gform_wrapper input[type=password]:focus,
body .gform_wrapper input[type=password]:hover,
body .gform_wrapper input[type=search]:active,
body .gform_wrapper input[type=search]:focus,
body .gform_wrapper input[type=search]:hover,
body .gform_wrapper input[type=tel]:active,
body .gform_wrapper input[type=tel]:focus,
body .gform_wrapper input[type=tel]:hover,
body .gform_wrapper input[type=text]:active,
body .gform_wrapper input[type=text]:focus,
body .gform_wrapper input[type=text]:hover,
body .gform_wrapper input[type=time]:active,
body .gform_wrapper input[type=time]:focus,
body .gform_wrapper input[type=time]:hover,
body .gform_wrapper input[type=url]:active,
body .gform_wrapper input[type=url]:focus,
body .gform_wrapper input[type=url]:hover,
body .gform_wrapper input[type=week]:active,
body .gform_wrapper input[type=week]:focus,
body .gform_wrapper input[type=week]:hover,
body .gform_wrapper select:active,
body .gform_wrapper select:focus,
body .gform_wrapper select:hover,
body .gform_wrapper textarea:active,
body .gform_wrapper textarea:focus,
body .gform_wrapper textarea:hover,
.form-styles #card-element:active,
.form-styles #card-element:focus,
.form-styles #card-element:hover,
.form-styles input[type=color]:active,
.form-styles input[type=color]:focus,
.form-styles input[type=color]:hover,
.form-styles input[type=date]:active,
.form-styles input[type=date]:focus,
.form-styles input[type=date]:hover,
.form-styles input[type=datetime-local]:active,
.form-styles input[type=datetime-local]:focus,
.form-styles input[type=datetime-local]:hover,
.form-styles input[type=datetime]:active,
.form-styles input[type=datetime]:focus,
.form-styles input[type=datetime]:hover,
.form-styles input[type=email]:active,
.form-styles input[type=email]:focus,
.form-styles input[type=email]:hover,
.form-styles input[type=month]:active,
.form-styles input[type=month]:focus,
.form-styles input[type=month]:hover,
.form-styles input[type=number]:active,
.form-styles input[type=number]:focus,
.form-styles input[type=number]:hover,
.form-styles input[type=password]:active,
.form-styles input[type=password]:focus,
.form-styles input[type=password]:hover,
.form-styles input[type=search]:active,
.form-styles input[type=search]:focus,
.form-styles input[type=search]:hover,
.form-styles input[type=tel]:active,
.form-styles input[type=tel]:focus,
.form-styles input[type=tel]:hover,
.form-styles input[type=text]:active,
.form-styles input[type=text]:focus,
.form-styles input[type=text]:hover,
.form-styles input[type=time]:active,
.form-styles input[type=time]:focus,
.form-styles input[type=time]:hover,
.form-styles input[type=url]:active,
.form-styles input[type=url]:focus,
.form-styles input[type=url]:hover,
.form-styles input[type=week]:active,
.form-styles input[type=week]:focus,
.form-styles input[type=week]:hover,
.form-styles select:active,
.form-styles select:focus,
.form-styles select:hover,
.form-styles textarea:active,
.form-styles textarea:focus,
.form-styles textarea:hover {
  outline: none !important;
  box-shadow: none;
}
.gform_wrapper #card-element::placeholder,
.gform_wrapper input[type=color]::placeholder,
.gform_wrapper input[type=date]::placeholder,
.gform_wrapper input[type=datetime-local]::placeholder,
.gform_wrapper input[type=datetime]::placeholder,
.gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=month]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper input[type=search]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=time]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper input[type=week]::placeholder,
.gform_wrapper select::placeholder,
.gform_wrapper textarea::placeholder,
body .gform_wrapper #card-element::placeholder,
body .gform_wrapper input[type=color]::placeholder,
body .gform_wrapper input[type=date]::placeholder,
body .gform_wrapper input[type=datetime-local]::placeholder,
body .gform_wrapper input[type=datetime]::placeholder,
body .gform_wrapper input[type=email]::placeholder,
body .gform_wrapper input[type=month]::placeholder,
body .gform_wrapper input[type=number]::placeholder,
body .gform_wrapper input[type=password]::placeholder,
body .gform_wrapper input[type=search]::placeholder,
body .gform_wrapper input[type=tel]::placeholder,
body .gform_wrapper input[type=text]::placeholder,
body .gform_wrapper input[type=time]::placeholder,
body .gform_wrapper input[type=url]::placeholder,
body .gform_wrapper input[type=week]::placeholder,
body .gform_wrapper select::placeholder,
body .gform_wrapper textarea::placeholder,
.form-styles #card-element::placeholder,
.form-styles input[type=color]::placeholder,
.form-styles input[type=date]::placeholder,
.form-styles input[type=datetime-local]::placeholder,
.form-styles input[type=datetime]::placeholder,
.form-styles input[type=email]::placeholder,
.form-styles input[type=month]::placeholder,
.form-styles input[type=number]::placeholder,
.form-styles input[type=password]::placeholder,
.form-styles input[type=search]::placeholder,
.form-styles input[type=tel]::placeholder,
.form-styles input[type=text]::placeholder,
.form-styles input[type=time]::placeholder,
.form-styles input[type=url]::placeholder,
.form-styles input[type=week]::placeholder,
.form-styles select::placeholder,
.form-styles textarea::placeholder {
  color: #717680;
}
.gform_wrapper .gfield_consent_label,
body .gform_wrapper .gfield_consent_label,
.form-styles .gfield_consent_label {
  padding-left: 24px;
}
.gform_wrapper .gfield_consent_label::before,
body .gform_wrapper .gfield_consent_label::before,
.form-styles .gfield_consent_label::before {
  border-radius: 8px;
  border: 1px solid #BDC0BF;
}
.gform_wrapper textarea,
body .gform_wrapper textarea,
.form-styles textarea {
  height: 100px;
}
.gform_wrapper textarea.large,
body .gform_wrapper textarea.large,
.form-styles textarea.large {
  height: 170px;
}
.gform_wrapper .gform-grid-row,
body .gform_wrapper .gform-grid-row,
.form-styles .gform-grid-row {
  gap: 32px;
}
@media (max-width: 767px) {
  .gform_wrapper .gform-grid-row,
body .gform_wrapper .gform-grid-row,
.form-styles .gform-grid-row {
    gap: var(--gf-field-gap-y);
  }
}
.gform_wrapper .gform_footer,
.gform_wrapper .gform-footer,
body .gform_wrapper .gform_footer,
body .gform_wrapper .gform-footer,
.form-styles .gform_footer,
.form-styles .gform-footer {
  margin-top: 0;
  padding: 0;
  padding-top: 32px;
}
.gform_wrapper .gform_footer #gform_submit_button_1,
.gform_wrapper .gform-footer #gform_submit_button_1,
body .gform_wrapper .gform_footer #gform_submit_button_1,
body .gform_wrapper .gform-footer #gform_submit_button_1,
.form-styles .gform_footer #gform_submit_button_1,
.form-styles .gform-footer #gform_submit_button_1 {
  background-color: var(--color-primary);
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px !important;
  border-radius: 8px;
  padding: 12px 18px;
}
.gform_wrapper .gform_footer #gform_submit_button_1:hover,
.gform_wrapper .gform-footer #gform_submit_button_1:hover,
body .gform_wrapper .gform_footer #gform_submit_button_1:hover,
body .gform_wrapper .gform-footer #gform_submit_button_1:hover,
.form-styles .gform_footer #gform_submit_button_1:hover,
.form-styles .gform-footer #gform_submit_button_1:hover {
  background-color: var(--color-highlight);
}
.gform_wrapper .gform_fields,
body .gform_wrapper .gform_fields,
.form-styles .gform_fields {
  grid-column-gap: 28px;
  grid-row-gap: 24px;
}
@media (max-width: 767px) {
  .gform_wrapper .gform_fields,
body .gform_wrapper .gform_fields,
.form-styles .gform_fields {
    grid-column-gap: 18px;
    grid-row-gap: 14px;
  }
}
.gform_wrapper .gfield_required .gfield_required_text,
body .gform_wrapper .gfield_required .gfield_required_text,
.form-styles .gfield_required .gfield_required_text {
  display: none;
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label,
body .gform_wrapper .gfield_checkbox label,
body .gform_wrapper .gfield_radio label,
.form-styles .gfield_checkbox label,
.form-styles .gfield_radio label {
  display: block;
  float: left;
  font-weight: normal !important;
  padding-left: 36px;
  color: #0D171A;
  position: relative;
  margin-left: 0;
}
.gform_wrapper .gfield_checkbox label:hover,
.gform_wrapper .gfield_radio label:hover,
body .gform_wrapper .gfield_checkbox label:hover,
body .gform_wrapper .gfield_radio label:hover,
.form-styles .gfield_checkbox label:hover,
.form-styles .gfield_radio label:hover {
  cursor: pointer;
}
.gform_wrapper .gfield_radio label,
body .gform_wrapper .gfield_radio label,
.form-styles .gfield_radio label {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .gform_wrapper .gfield_radio label,
body .gform_wrapper .gfield_radio label,
.form-styles .gfield_radio label {
    margin-bottom: 0;
  }
}
.gform_wrapper .inline-checkbox .gfield_checkbox label,
.gform_wrapper .inline-checkbox .gfield_radio label,
body .gform_wrapper .inline-checkbox .gfield_checkbox label,
body .gform_wrapper .inline-checkbox .gfield_radio label,
.form-styles .inline-checkbox .gfield_checkbox label,
.form-styles .inline-checkbox .gfield_radio label {
  display: inline-block;
  padding-right: 28px;
}
@media (max-width: 767px) {
  .gform_wrapper .inline-checkbox .gfield_checkbox label,
.gform_wrapper .inline-checkbox .gfield_radio label,
body .gform_wrapper .inline-checkbox .gfield_checkbox label,
body .gform_wrapper .inline-checkbox .gfield_radio label,
.form-styles .inline-checkbox .gfield_checkbox label,
.form-styles .inline-checkbox .gfield_radio label {
    margin-bottom: 5px;
  }
}
.gform_wrapper .inline-checkbox .gfield_checkbox label:hover,
.gform_wrapper .inline-checkbox .gfield_radio label:hover,
body .gform_wrapper .inline-checkbox .gfield_checkbox label:hover,
body .gform_wrapper .inline-checkbox .gfield_radio label:hover,
.form-styles .inline-checkbox .gfield_checkbox label:hover,
.form-styles .inline-checkbox .gfield_radio label:hover {
  cursor: pointer;
}

.gform_wrapper.gravity-theme .gfield textarea.large,
body .gform_wrapper.gravity-theme .gfield textarea.large {
  height: 100px;
}

.gform-theme--framework .gform_validation_errors .gform-icon,
body .gform-theme--framework .gform_validation_errors .gform-icon {
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

@media only screen and (max-width: 641px) {
  .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]),
body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: 1.1em;
    min-height: unset;
  }
}
.gform-theme--framework .gform_validation_errors .gform-icon,
body .gform-theme--framework .gform_validation_errors .gform-icon {
  background: transparent;
  border: none;
}

.gform-theme--framework .gform_validation_errors .gform-icon::before,
body .gform-theme--framework .gform_validation_errors .gform-icon::before {
  font-family: "Lucide";
  content: "\e193";
  color: #DB4536;
  margin-top: 0.35em;
}

/**
 * Select 2
 */
body .select2-container.select2,
.block-editor-block-list__block .select2-container.select2 {
  position: relative;
  padding: 0 0 0;
  line-height: 1.5;
  height: 50px;
  width: 100% !important;
  font-size: 0.8em;
  /*Some sibling magic happens */
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
body .select2-container.select2:focus + .separator, body .select2-container.select2:active + .separator, body .select2-container.select2:hover + .separator,
.block-editor-block-list__block .select2-container.select2:focus + .separator,
.block-editor-block-list__block .select2-container.select2:active + .separator,
.block-editor-block-list__block .select2-container.select2:hover + .separator {
  transform: scaleX(1) translateY(-0.5px);
  opacity: 1;
}
body .select2-container.select2:focus + .separator, body .select2-container.select2:active + .separator,
.block-editor-block-list__block .select2-container.select2:focus + .separator,
.block-editor-block-list__block .select2-container.select2:active + .separator {
  background: var(--color-text-light);
}
body .select2-container.select2 > .selection,
.block-editor-block-list__block .select2-container.select2 > .selection {
  height: inherit;
}
body .select2-container--default .select2-selection--single,
.block-editor-block-list__block .select2-container--default .select2-selection--single {
  background: white;
  padding: 9px 12px;
  height: 45px;
  border-radius: 6px;
  border: 1px solid #A8DAB5;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
body .gfield_error .select2-container--default .select2-selection--single,
.block-editor-block-list__block .gfield_error .select2-container--default .select2-selection--single {
  border-color: #DB4536;
}
body .select2-container--default.select2-container--open:not(.select2-container--above) .select2-selection--single,
.block-editor-block-list__block .select2-container--default.select2-container--open:not(.select2-container--above) .select2-selection--single {
  border-bottom: none;
}
body .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.block-editor-block-list__block .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered,
.block-editor-block-list__block .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
}
body .select2-container .select2-selection--single .select2-selection__rendered,
.block-editor-block-list__block .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered,
.block-editor-block-list__block .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #0D171A;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow,
.block-editor-block-list__block .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: inherit;
  width: 48px;
  top: -1px;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b,
.block-editor-block-list__block .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  width: 12px;
  height: 6px;
  font-size: 17px;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b:after,
.block-editor-block-list__block .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  content: "\f078";
  font-family: "Lucide";
  font-weight: 400;
  position: absolute;
  top: -9px;
  left: 0;
}
body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after,
.block-editor-block-list__block .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
  transform: rotateX(-180deg);
}
body .select2-dropdown,
.block-editor-block-list__block .select2-dropdown {
  background: var(--color-text-light);
  border: 1px solid #A8DAB5;
  border-radius: 6px;
  border-top: none;
  font-size: 0.8em;
  overflow: hidden;
  /*
  margin-top: 30px;
  @media (min-width: $desktop-width) {
      margin-top: 22px;
  }

  &.select2-dropdown--above {
      margin-top: 34px;

      @media (min-width: $desktop-width) {
          margin-top: 27px;
      }
  }*/
}
body .select2-results__option,
.block-editor-block-list__block .select2-results__option {
  padding: 6px 12px;
}
body .select2-container--default .select2-results__option--highlighted[aria-selected],
.block-editor-block-list__block .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--color-highlight);
  color: #0D171A;
}
body .select2-container--default .select2-results__option[aria-selected=true],
.block-editor-block-list__block .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--color-highlight);
  color: var(--color-text-light);
}
body .select2-container--default .select2-results > .select2-results__options,
.block-editor-block-list__block .select2-container--default .select2-results > .select2-results__options {
  max-height: 300px;
}
body.admin-bar .select2-dropdown,
.block-editor-block-list__block.admin-bar .select2-dropdown {
  margin-top: 30px;
}
@media (min-width: 1440px) {
  body.admin-bar .select2-dropdown,
.block-editor-block-list__block.admin-bar .select2-dropdown {
    margin-top: 22px;
  }
}
@media (max-width: 782px) {
  body.admin-bar .select2-dropdown,
.block-editor-block-list__block.admin-bar .select2-dropdown {
    margin-top: 41px;
  }
}
body.admin-bar .select2-dropdown.select2-dropdown--above,
.block-editor-block-list__block.admin-bar .select2-dropdown.select2-dropdown--above {
  margin-top: 34px;
}
@media (max-width: 782px) {
  body.admin-bar .select2-dropdown.select2-dropdown--above,
.block-editor-block-list__block.admin-bar .select2-dropdown.select2-dropdown--above {
    margin-top: 49px;
  }
}

.admin-bar #logo-and-nav.sticky-nav {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar #logo-and-nav.sticky-nav {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar #logo-and-nav.sticky-nav {
    top: 0;
  }
}
.admin-bar header.page-header.screen-height {
  height: calc(100vh - 32px);
}
@media (max-width: 782px) {
  .admin-bar header.page-header.screen-height {
    height: calc(100vh - 46px);
  }
}
@media (max-width: 600px) {
  .admin-bar header.page-header.screen-height {
    height: 100vh;
  }
}
@media (max-width: 600px) {
  .admin-bar #wpadminbar {
    display: none;
  }
}

#logo-and-nav {
  height: 80px;
  position: relative;
  transition: background-color 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media (max-width: 1024px) {
  #logo-and-nav {
    height: 64px;
  }
}
#logo-and-nav.sticky-nav {
  position: fixed;
}
#logo-and-nav.scrolled {
  background-color: var(--header-background-colour);
}
#logo-and-nav .inner-max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  container-type: inline-size;
  container-name: nav-container;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  #logo-and-nav .inner-max-width {
    position: relative;
  }
}
#logo-and-nav .inner-max-width.align-items-end {
  justify-content: flex-end;
}
#logo-and-nav .two-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#logo-and-nav #branding {
  margin-right: 64px;
}
#logo-and-nav #branding img {
  height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 1024px) {
  #logo-and-nav #branding img {
    height: 40px;
  }
}
#logo-and-nav #branding a {
  display: block;
}
@media (max-width: 1150px) {
  #logo-and-nav #branding {
    margin-right: 0;
  }
}
#logo-and-nav #branding .site-title {
  position: absolute;
  left: -100%;
}
#logo-and-nav .hamburger {
  display: none;
}
@media (max-width: 1024px) {
  #logo-and-nav .hamburger {
    display: block;
  }
}
#logo-and-nav.nav-open {
  background-color: var(--header-background-colour);
}

/**
 * Main menu styles
 *
 * I appologise for the unholy mess that this is. It's grown organically over a 
 * few sites & is now basically straight up spaghetti - Deej (Cheff)
*/
#main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#main-menu nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  #main-menu nav {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 1000;
    left: 0;
    right: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: var(--header-background-colour);
    text-align: left;
    padding-left: 140px;
    padding-right: 140px;
  }
}
@media (max-width: 1024px) and (max-width: 1440px) {
  #main-menu nav {
    padding-left: 112px;
  }
}
@media (max-width: 1024px) and (max-width: 1280px) {
  #main-menu nav {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #main-menu nav {
    padding-left: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  #main-menu nav {
    padding-left: 24px;
  }
}
@media (max-width: 1024px) and (max-width: 1440px) {
  #main-menu nav {
    padding-right: 112px;
  }
}
@media (max-width: 1024px) and (max-width: 1280px) {
  #main-menu nav {
    padding-right: 80px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #main-menu nav {
    padding-right: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  #main-menu nav {
    padding-right: 24px;
  }
}
@media (max-width: 1024px) {
  #main-menu nav .menu-main-menu-container {
    width: 100%;
  }
}
#main-menu nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
@media (max-width: 1150px) {
  #main-menu nav ul {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  #main-menu nav ul {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  #main-menu nav ul li {
    width: 100%;
  }
}
#main-menu nav ul li a:not(.btn) {
  color: var(--nav-font-text-colour);
  font-size: var(--nav-font-size);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  text-decoration: none;
  position: relative;
  padding: 12px 0;
  display: inline-flex;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  /*@media (max-width: $nav-smalled-width) {
      font-size: var(--Font-size-text-md, 16px);
      line-height: var(--Line-height-text-md, 24px);
  }*/
}
@media (max-width: 1024px) {
  #main-menu nav ul li a:not(.btn) {
    width: 100%;
    display: inline-block;
  }
}
#main-menu nav ul li a:not(.btn):hover, #main-menu nav ul li a:not(.btn):active, #main-menu nav ul li a:not(.btn).active {
  color: var(--nav-font-text-hover-colour);
}
#main-menu nav ul li a:not(.btn):active, #main-menu nav ul li a:not(.btn).active {
  transform: scale(1);
}
#main-menu nav ul li a:not(.btn):active > span, #main-menu nav ul li a:not(.btn).active > span {
  transform: scale(1);
}
#main-menu nav > div > ul > li.menu-item-has-children {
  position: relative;
}
@media (min-width: 1023px) {
  #main-menu nav > div > ul > li.menu-item-has-children:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
    pointer-events: auto;
    height: auto;
  }
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.open-sub > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    height: auto;
  }
  #main-menu nav > div > ul > li.menu-item-has-children.open-sub > a .icon-chevron-down:before {
    transform: rotate(180deg);
  }
}
#main-menu nav > div > ul > li.menu-item-has-children > a:not(.btn) .icon-chevron-down {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  padding-left: 0.5em;
  top: 0;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children > a:not(.btn) .icon-chevron-down {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.7em 1em 0.7em 0;
    width: 3em;
    z-index: 10;
    text-align: right;
    right: -1em;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children > a:not(.btn) .icon-chevron-down:before {
  transition: transform 0.2s ease;
  display: inline-block;
  width: 1em;
}
@media (min-width: 1023px) {
  #main-menu nav > div > ul > li.menu-item-has-children:hover > a .icon-chevron-down:before {
    transform: rotate(180deg);
  }
}
#main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, top 0.2s ease, visibility 0.2s ease;
  top: 90%;
  pointer-events: none;
  position: absolute;
  padding: 0;
  margin: 0;
  z-index: 1000;
  box-sizing: border-box;
  width: max-content;
  max-width: 336px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 15px;
  align-self: stretch;
  border-radius: var(--radius-2xl, 12px);
  background: var(--nav-dropdown-background-colour);
  border: 1px solid var(--nav-dropdown-border-colour);
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    width: calc(100% + 80px);
    margin-left: -40px;
    padding: 5px 40px;
    border-radius: 0;
    max-width: unset;
    /*background: $green;*/
    border: none;
    gap: 0;
    visibility: visible;
    top: 100%;
    height: unset;
    overflow: hidden;
    opacity: 1;
    display: none;
  }
}
@media (max-width: 767px) {
  #main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu {
    width: calc(100% + 48px);
    margin-left: -24px;
    padding: 5px 24px;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
#main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg, 12px);
  align-self: stretch;
  align-items: flex-start;
  font-size: 0.942em;
  box-sizing: border-box;
  color: var(--nav-dropdown-text-colour);
  padding: 0;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a {
    font-size: var(--nav-font-size);
    padding: 12px 0;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a:hover {
  opacity: 1;
  /*background: $lighter-yellow;*/
  color: var(--nav-dropdown-text-hover-colour);
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a:hover {
    /*background: $green-hover;*/
  }
}
#main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a:active, #main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a.active {
  opacity: 0.8;
}
#main-menu nav > div > ul > li.menu-item-has-children > ul.sub-menu li a img {
  width: 1.333333em;
  height: 1.33333em;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu {
    position: static;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu {
  flex-direction: row;
  padding: 30px 40px 40px 40px;
  gap: 40px;
  width: max-content;
  max-width: 1220px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1025px) and (max-width: 1280px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu {
    transform: none;
    left: 0;
    right: 0;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu {
    flex-direction: column;
    gap: 0;
    width: calc(100% + 80px);
    padding: 0;
    margin-left: -40px;
    max-width: unset;
    border: none;
    left: 0;
    transform: none;
  }
}
@media (max-width: 767px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu > li {
  width: var(--nav-megamenu-column-width);
  max-width: var(--nav-megamenu-column-width);
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu > li {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu > li > a {
    background-color: var(--nav-megamenu-mobile-title-background);
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu > li.open-sub .sub-menu {
  display: flex;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu > li.open-sub .sub-menu {
    display: none;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu > li.open-sub .icon-chevron-down:before {
  transform: rotate(180deg);
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a {
  padding: 0;
  width: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a {
    padding: 12px 40px;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a {
    padding: 12px 24px;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a .icon-chevron-down {
  display: none;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a .icon-chevron-down {
    display: inline-block;
    color: var(--nav-megamenu-title-colour);
    opacity: 0.6;
    width: 1em;
    height: 1em;
    font-size: inherit;
    position: absolute;
    right: 40px;
    top: 0;
    right: 0;
    padding: 0.7em 40px 0.7em 0;
    width: 3em;
    z-index: 10;
    text-align: right;
  }
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a .icon-chevron-down:before {
    transition: transform 0.2s ease;
    display: inline-block;
    width: 1em;
  }
}
@media (max-width: 767px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a .icon-chevron-down {
    padding-right: 24px;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title {
  font-size: 1.41em;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--nav-dropdown-text-colour);
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  align-items: flex-start;
  color: var(--nav-megamenu-title-colour);
  position: relative;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title {
    font-size: var(--nav-font-size);
    flex-direction: row;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title .icon {
  color: var(--nav-megamenu-icon-colour);
  border: 1px solid var(--nav-megamenu-icon-border-colour);
  box-shadow: 0 0 0 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(10, 13, 18, 0.18)) inset, 0 -2px 0 0 var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(10, 13, 18, 0.05)) inset, 0 1px 2px 0 var(--Colors-Effects-Shadows-shadow-xs, rgba(10, 13, 18, 0.05));
  border-radius: 12px;
  padding: 8px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: relative;
  width: 1.3em;
  height: 1.3em;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title .icon {
    border: none;
    box-shadow: none;
    padding: 0;
    width: unset;
    height: unset;
    color: var(--nav-megamenu-icon-mobile-colour);
    font-size: 1.4em;
    top: 0.08em;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title .icon:before {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title:hover {
  color: var(--nav-dropdown-text-hover-colour);
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu a.mega-title:hover .icon {
  color: var(--nav-dropdown-text-hover-colour);
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu {
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu {
    padding: 5px 0;
    gap: 0;
    display: none;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu a {
  padding: 0;
  gap: 8px;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu a {
    padding: 12px 40px;
    gap: 0;
  }
}
@media (max-width: 767px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu a {
    padding: 12px 24px;
  }
}
#main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu a:before {
  content: "\e049";
  font-family: "Lucide";
  display: inline-block;
}
@media (max-width: 1024px) {
  #main-menu nav > div > ul > li.menu-item-has-children.has-mega-menu > ul.sub-menu ul.sub-menu a:before {
    display: none;
  }
}
@media (max-width: 1024px) {
  #main-menu .btn {
    margin-top: 1em;
  }
}

header.page-header {
  background-color: var(--header-background-colour);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-sizing: border-box;
  position: relative;
  padding-top: 80px;
}
header.page-header.centred {
  background-position: center center;
}
header.page-header.top-centre {
  background-position: top center;
}
header.page-header.top-left {
  background-position: left top;
}
header.page-header.top-right {
  background-position: right top;
}
header.page-header.left-centre {
  background-position: left center;
}
header.page-header.right-centre {
  background-position: right center;
}
header.page-header.bottom-centre {
  background-position: center bottom;
}
header.page-header.bottom-left {
  background-position: left bottom;
}
header.page-header.bottom-right {
  background-position: right bottom;
}
header.page-header .header-title-colour {
  color: var(--header-title-colour);
}
header.page-header .header-text-colour {
  color: var(--header-text-colour);
}
@media (max-width: 1024px) {
  header.page-header {
    padding-top: 64px;
  }
}
header.page-header .header-inner {
  min-height: 200px;
  z-index: 2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  header.page-header .header-inner {
    min-height: 150px;
  }
}
header.page-header .header-inner.has-intro {
  min-height: 300px;
}
@media (max-width: 767px) {
  header.page-header .header-inner.has-intro {
    min-height: 250px;
  }
}
header.page-header .header-inner.has-image {
  min-height: 520px;
}
@media (max-width: 767px) {
  header.page-header .header-inner.has-image {
    min-height: 270px;
  }
  header.page-header .header-inner.has-image .two-col {
    justify-content: center;
  }
}
header.page-header.with-gradient:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80%;
  z-index: 1;
}
header.page-header.screen-height {
  height: 100vh;
}
header.page-header.screen-height .header-inner {
  display: flex;
  justify-content: center;
  height: 100%;
  padding-bottom: 74px;
}
@media (max-width: 1024px) {
  header.page-header.screen-height .header-inner {
    padding-bottom: 60px;
  }
}
header.page-header.screen-height.align-top .header-inner {
  align-items: flex-start;
  padding-top: 74px;
}
@media (max-width: 1024px) {
  header.page-header.screen-height.align-top .header-inner {
    padding-top: 60px;
  }
}
header.page-header.screen-height.align-center .header-inner {
  align-items: center;
}
header.page-header.screen-height.align-bottom .header-inner {
  align-items: flex-end;
}
header.page-header .header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
header.page-header .logo-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
header.page-header .logo-container .container {
  padding-top: 16px;
}
header.page-header .logo-container .header-logo {
  max-width: 252px;
  text-align: left;
}
@media (max-width: 767px) {
  header.page-header .logo-container .header-logo {
    max-width: 200px;
  }
}
header.page-header .icon-outer-box {
  background-color: var(--header-icon-background-colour);
  height: 4.3em;
  width: 4.3em;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  header.page-header .icon-outer-box {
    margin-left: auto;
    margin-right: auto;
  }
}
header.page-header .icon-outer-box i {
  color: var(--header-icon-colour);
  font-size: 2.5em;
}
header.page-header .container {
  /*@include contentBuilderPadding();*/
  z-index: 2;
}
header.page-header .container h1,
header.page-header .container h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}
@media (max-width: 600px) {
  header.page-header .container h1,
header.page-header .container h2 {
    text-align: left;
  }
}
@media (max-width: 1024px) {
  header.page-header .container h1 br,
header.page-header .container h2 br {
    display: none;
  }
}
header.page-header .container h1 a,
header.page-header .container h2 a {
  color: var(--header-title-colour);
  text-decoration: none;
}
header.page-header .container img {
  width: 336px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  header.page-header .container img {
    width: 400px;
  }
}
@media (max-width: 767px) {
  header.page-header .container img {
    width: 300px;
  }
}
@media (max-width: 600px) {
  header.page-header .container img {
    width: 250px;
  }
}
header.page-header .container #header-logo {
  margin-bottom: 3em;
}
header.page-header .container .intro {
  color: var(--header-text-colour);
  font-size: var(--header-intro-text-font-size);
  width: 550px;
  max-width: 100%;
  padding-top: 1.5em;
  margin: 0;
  font-weight: 600;
  line-height: 1.6em;
}
@media (max-width: 600px) {
  header.page-header .container .intro {
    font-size: var(--header-intro-text-font-size-mobile);
    margin-top: 0;
    line-height: 1.5em;
  }
}
header.page-header .container .intro p:last-child {
  margin-bottom: 0;
}
header.page-header .container .header-buttons {
  margin-top: 3em;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  header.page-header .container .header-buttons {
    flex-direction: column;
    padding-top: 30px;
  }
  header.page-header .container .header-buttons .btn {
    width: 100%;
  }
}
header.page-header.home-page .inner-max-width {
  text-align: center;
}
header.page-header:not(.home-page) .container {
  padding-bottom: 0;
}
header.page-header:not(.home-page).with-gradient:after {
  height: 100%;
}
header.page-header #site-title a {
  display: inline-block;
}
header.page-header .intro {
  font-size: var(--header-intro-text-font-size);
  line-height: 1.45em;
}
@media (max-width: 767px) {
  header.page-header .intro {
    font-size: var(--header-intro-text-font-size-mobile);
  }
}
header.page-header .two-col {
  display: flex;
  width: 100%;
  min-height: inherit;
}
@media (max-width: 767px) {
  header.page-header .two-col {
    flex-direction: column;
  }
}
header.page-header .two-col .left-col {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
  padding-top: calc(var(--item-spacing-between-vertical) * 2);
  padding-bottom: calc(var(--item-spacing-between-vertical) * 2);
  padding-left: 140px;
}
@media (max-width: 1440px) {
  header.page-header .two-col .left-col {
    padding-left: 112px;
  }
}
@media (max-width: 1280px) {
  header.page-header .two-col .left-col {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  header.page-header .two-col .left-col {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  header.page-header .two-col .left-col {
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  header.page-header .two-col .left-col {
    min-height: 250px;
    padding-top: var(--item-spacing-between-vertical);
    padding-bottom: var(--item-spacing-between-vertical);
    width: 100%;
    text-align: center;
    padding-right: calc(var(--item-spacing-between-horizontal) * 0.7);
  }
}
header.page-header .two-col .left-col .inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 610px;
  padding-right: calc(var(--item-spacing-between-horizontal) * 3);
}
@media (max-width: 1024px) {
  header.page-header .two-col .left-col .inner {
    padding-right: calc(var(--item-spacing-between-horizontal) * 1.5);
  }
}
@media (max-width: 767px) {
  header.page-header .two-col .left-col .inner {
    max-width: 100%;
    padding-right: 0;
  }
}
header.page-header .two-col .left-col .intro {
  width: 100%;
}
header.page-header .two-col .right-col {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  header.page-header .two-col .right-col {
    display: none;
  }
}
@media (max-width: 600px) {
  header.page-header .two-col .right-col {
    height: 230px;
  }
}
header.page-header .two-col .right-col.center {
  background-position: center center;
}
header.page-header .two-col .right-col.align-top {
  background-position: top center;
}
header.page-header .two-col .right-col.align-bottom {
  background-position: bottom center;
}
header.page-header .two-col .right-col.align-middle {
  background-position: center center;
}

.acf-block-body #logo-and-nav {
  display: none;
}
.acf-block-body header.page-header.has-sticky-nav {
  padding-top: 0;
}

/**
 * Shared styles for the theme. This is a good place to put things that are used by multiple blocks or the theme itself.
 *
 * Include this in the styles & editor .scss files
 */
.text-featured-size {
  font-size: var(--body-featured-font-size);
}
@media (max-width: 767px) {
  .text-featured-size {
    font-size: var(--body-featured-font-size-mobile);
  }
}

.relative {
  position: relative;
}

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

.no-scroll {
  overflow: hidden !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

p {
  margin-bottom: 1em;
}

.no-pad-top {
  padding-top: 0 !important;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.inner-max-width {
  width: 1220px;
  max-width: 100%;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
}

.bg-white {
  background: #fff;
}
.bg-white + .bg-white {
  padding-top: 0;
}

.bg-grey {
  background: #FAFAFA;
}
.bg-grey + .bg-grey {
  padding-top: 0;
}

.btn,
button:not(.hamburger),
input[type=submit],
input[type=button],
body .gform_wrapper input[type=submit],
body .gform_wrapper button,
body .form-styles input[type=submit],
body .form-styles button {
  display: inline-flex;
  padding: 12px 18px;
  color: var(--color-text-light);
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  line-height: 1.2em;
  font-weight: 600 !important;
  font-size: var(--body-primary-font-size) !important;
  min-height: 2.3em !important;
  margin-top: 0;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
.btn:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
button:not(.hamburger):not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
input[type=submit]:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
input[type=button]:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
body .gform_wrapper input[type=submit]:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
body .gform_wrapper button:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
body .form-styles input[type=submit]:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html),
body .form-styles button:not(.fancybox__button):not(.carousel__button):not(.f-button):not(.f-html) {
  min-width: 6.5em !important;
}
.btn .icon,
button:not(.hamburger) .icon,
input[type=submit] .icon,
input[type=button] .icon,
body .gform_wrapper input[type=submit] .icon,
body .gform_wrapper button .icon,
body .form-styles input[type=submit] .icon,
body .form-styles button .icon {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
.btn:hover, .btn:focus,
button:not(.hamburger):hover,
button:not(.hamburger):focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus,
body .gform_wrapper input[type=submit]:hover,
body .gform_wrapper input[type=submit]:focus,
body .gform_wrapper button:hover,
body .gform_wrapper button:focus,
body .form-styles input[type=submit]:hover,
body .form-styles input[type=submit]:focus,
body .form-styles button:hover,
body .form-styles button:focus {
  background: var(--color-primary_hover);
}
.btn:active,
button:not(.hamburger):active,
input[type=submit]:active,
input[type=button]:active,
body .gform_wrapper input[type=submit]:active,
body .gform_wrapper button:active,
body .form-styles input[type=submit]:active,
body .form-styles button:active {
  box-shadow: 0px 0px 0px rgba(3, 29, 45, 0.05) !important;
  /* Adjusted shadow based on values */
}
.btn.white,
button:not(.hamburger).white,
input[type=submit].white,
input[type=button].white,
body .gform_wrapper input[type=submit].white,
body .gform_wrapper button.white,
body .form-styles input[type=submit].white,
body .form-styles button.white {
  background-color: var(--color-text-light);
  border: 1px solid #D5D7DA;
  color: #0D171A;
}
.btn.white:hover, .btn.white:active, .btn.white.active,
button:not(.hamburger).white:hover,
button:not(.hamburger).white:active,
button:not(.hamburger).white.active,
input[type=submit].white:hover,
input[type=submit].white:active,
input[type=submit].white.active,
input[type=button].white:hover,
input[type=button].white:active,
input[type=button].white.active,
body .gform_wrapper input[type=submit].white:hover,
body .gform_wrapper input[type=submit].white:active,
body .gform_wrapper input[type=submit].white.active,
body .gform_wrapper button.white:hover,
body .gform_wrapper button.white:active,
body .gform_wrapper button.white.active,
body .form-styles input[type=submit].white:hover,
body .form-styles input[type=submit].white:active,
body .form-styles input[type=submit].white.active,
body .form-styles button.white:hover,
body .form-styles button.white:active,
body .form-styles button.white.active {
  background-color: #d1d1d1;
  color: #0D171A;
}
.btn.white:hover .icon, .btn.white:active .icon, .btn.white.active .icon,
button:not(.hamburger).white:hover .icon,
button:not(.hamburger).white:active .icon,
button:not(.hamburger).white.active .icon,
input[type=submit].white:hover .icon,
input[type=submit].white:active .icon,
input[type=submit].white.active .icon,
input[type=button].white:hover .icon,
input[type=button].white:active .icon,
input[type=button].white.active .icon,
body .gform_wrapper input[type=submit].white:hover .icon,
body .gform_wrapper input[type=submit].white:active .icon,
body .gform_wrapper input[type=submit].white.active .icon,
body .gform_wrapper button.white:hover .icon,
body .gform_wrapper button.white:active .icon,
body .gform_wrapper button.white.active .icon,
body .form-styles input[type=submit].white:hover .icon,
body .form-styles input[type=submit].white:active .icon,
body .form-styles input[type=submit].white.active .icon,
body .form-styles button.white:hover .icon,
body .form-styles button.white:active .icon,
body .form-styles button.white.active .icon {
  color: #0D171A;
}
.btn.black,
button:not(.hamburger).black,
input[type=submit].black,
input[type=button].black,
body .gform_wrapper input[type=submit].black,
body .gform_wrapper button.black,
body .form-styles input[type=submit].black,
body .form-styles button.black {
  background-color: #0D171A;
  color: var(--color-text-light);
}
.btn.black:hover, .btn.black:active, .btn.black.active,
button:not(.hamburger).black:hover,
button:not(.hamburger).black:active,
button:not(.hamburger).black.active,
input[type=submit].black:hover,
input[type=submit].black:active,
input[type=submit].black.active,
input[type=button].black:hover,
input[type=button].black:active,
input[type=button].black.active,
body .gform_wrapper input[type=submit].black:hover,
body .gform_wrapper input[type=submit].black:active,
body .gform_wrapper input[type=submit].black.active,
body .gform_wrapper button.black:hover,
body .gform_wrapper button.black:active,
body .gform_wrapper button.black.active,
body .form-styles input[type=submit].black:hover,
body .form-styles input[type=submit].black:active,
body .form-styles input[type=submit].black.active,
body .form-styles button.black:hover,
body .form-styles button.black:active,
body .form-styles button.black.active {
  background-color: #2c2c2c;
}
.btn.primary,
button:not(.hamburger).primary,
input[type=submit].primary,
input[type=button].primary,
body .gform_wrapper input[type=submit].primary,
body .gform_wrapper button.primary,
body .form-styles input[type=submit].primary,
body .form-styles button.primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}
.btn.primary .icon,
button:not(.hamburger).primary .icon,
input[type=submit].primary .icon,
input[type=button].primary .icon,
body .gform_wrapper input[type=submit].primary .icon,
body .gform_wrapper button.primary .icon,
body .form-styles input[type=submit].primary .icon,
body .form-styles button.primary .icon {
  color: var(--color-secondary);
}
.btn.primary:hover, .btn.primary:active, .btn.primary.active,
button:not(.hamburger).primary:hover,
button:not(.hamburger).primary:active,
button:not(.hamburger).primary.active,
input[type=submit].primary:hover,
input[type=submit].primary:active,
input[type=submit].primary.active,
input[type=button].primary:hover,
input[type=button].primary:active,
input[type=button].primary.active,
body .gform_wrapper input[type=submit].primary:hover,
body .gform_wrapper input[type=submit].primary:active,
body .gform_wrapper input[type=submit].primary.active,
body .gform_wrapper button.primary:hover,
body .gform_wrapper button.primary:active,
body .gform_wrapper button.primary.active,
body .form-styles input[type=submit].primary:hover,
body .form-styles input[type=submit].primary:active,
body .form-styles input[type=submit].primary.active,
body .form-styles button.primary:hover,
body .form-styles button.primary:active,
body .form-styles button.primary.active {
  background-color: var(--color-highlight);
}
.btn.secondary,
button:not(.hamburger).secondary,
input[type=submit].secondary,
input[type=button].secondary,
body .gform_wrapper input[type=submit].secondary,
body .gform_wrapper button.secondary,
body .form-styles input[type=submit].secondary,
body .form-styles button.secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
}
.btn.secondary .icon,
button:not(.hamburger).secondary .icon,
input[type=submit].secondary .icon,
input[type=button].secondary .icon,
body .gform_wrapper input[type=submit].secondary .icon,
body .gform_wrapper button.secondary .icon,
body .form-styles input[type=submit].secondary .icon,
body .form-styles button.secondary .icon {
  color: var(--color-text-dark);
}
.btn.secondary:hover, .btn.secondary:active, .btn.secondary.active,
button:not(.hamburger).secondary:hover,
button:not(.hamburger).secondary:active,
button:not(.hamburger).secondary.active,
input[type=submit].secondary:hover,
input[type=submit].secondary:active,
input[type=submit].secondary.active,
input[type=button].secondary:hover,
input[type=button].secondary:active,
input[type=button].secondary.active,
body .gform_wrapper input[type=submit].secondary:hover,
body .gform_wrapper input[type=submit].secondary:active,
body .gform_wrapper input[type=submit].secondary.active,
body .gform_wrapper button.secondary:hover,
body .gform_wrapper button.secondary:active,
body .gform_wrapper button.secondary.active,
body .form-styles input[type=submit].secondary:hover,
body .form-styles input[type=submit].secondary:active,
body .form-styles input[type=submit].secondary.active,
body .form-styles button.secondary:hover,
body .form-styles button.secondary:active,
body .form-styles button.secondary.active {
  background-color: var(--color-secondary_hover);
}
.btn.highlight,
button:not(.hamburger).highlight,
input[type=submit].highlight,
input[type=button].highlight,
body .gform_wrapper input[type=submit].highlight,
body .gform_wrapper button.highlight,
body .form-styles input[type=submit].highlight,
body .form-styles button.highlight {
  background-color: var(--color-highlight);
  color: var(--color-text-light);
}
.btn.highlight .icon,
button:not(.hamburger).highlight .icon,
input[type=submit].highlight .icon,
input[type=button].highlight .icon,
body .gform_wrapper input[type=submit].highlight .icon,
body .gform_wrapper button.highlight .icon,
body .form-styles input[type=submit].highlight .icon,
body .form-styles button.highlight .icon {
  color: var(--color-text-light);
}
.btn.highlight:hover, .btn.highlight:active, .btn.highlight.active,
button:not(.hamburger).highlight:hover,
button:not(.hamburger).highlight:active,
button:not(.hamburger).highlight.active,
input[type=submit].highlight:hover,
input[type=submit].highlight:active,
input[type=submit].highlight.active,
input[type=button].highlight:hover,
input[type=button].highlight:active,
input[type=button].highlight.active,
body .gform_wrapper input[type=submit].highlight:hover,
body .gform_wrapper input[type=submit].highlight:active,
body .gform_wrapper input[type=submit].highlight.active,
body .gform_wrapper button.highlight:hover,
body .gform_wrapper button.highlight:active,
body .gform_wrapper button.highlight.active,
body .form-styles input[type=submit].highlight:hover,
body .form-styles input[type=submit].highlight:active,
body .form-styles input[type=submit].highlight.active,
body .form-styles button.highlight:hover,
body .form-styles button.highlight:active,
body .form-styles button.highlight.active {
  background-color: var(--color-highlight_hover);
  color: var(--color-text-light);
}
.btn.highlight:hover .icon, .btn.highlight:active .icon, .btn.highlight.active .icon,
button:not(.hamburger).highlight:hover .icon,
button:not(.hamburger).highlight:active .icon,
button:not(.hamburger).highlight.active .icon,
input[type=submit].highlight:hover .icon,
input[type=submit].highlight:active .icon,
input[type=submit].highlight.active .icon,
input[type=button].highlight:hover .icon,
input[type=button].highlight:active .icon,
input[type=button].highlight.active .icon,
body .gform_wrapper input[type=submit].highlight:hover .icon,
body .gform_wrapper input[type=submit].highlight:active .icon,
body .gform_wrapper input[type=submit].highlight.active .icon,
body .gform_wrapper button.highlight:hover .icon,
body .gform_wrapper button.highlight:active .icon,
body .gform_wrapper button.highlight.active .icon,
body .form-styles input[type=submit].highlight:hover .icon,
body .form-styles input[type=submit].highlight:active .icon,
body .form-styles input[type=submit].highlight.active .icon,
body .form-styles button.highlight:hover .icon,
body .form-styles button.highlight:active .icon,
body .form-styles button.highlight.active .icon {
  color: var(--color-text-light);
}
.btn.tertiary,
button:not(.hamburger).tertiary,
input[type=submit].tertiary,
input[type=button].tertiary,
body .gform_wrapper input[type=submit].tertiary,
body .gform_wrapper button.tertiary,
body .form-styles input[type=submit].tertiary,
body .form-styles button.tertiary {
  background-color: var(--color-tertiary);
  color: var(--color-text-light);
}
.btn.tertiary .icon,
button:not(.hamburger).tertiary .icon,
input[type=submit].tertiary .icon,
input[type=button].tertiary .icon,
body .gform_wrapper input[type=submit].tertiary .icon,
body .gform_wrapper button.tertiary .icon,
body .form-styles input[type=submit].tertiary .icon,
body .form-styles button.tertiary .icon {
  color: var(--color-text-light);
}
.btn.tertiary:hover, .btn.tertiary:active, .btn.tertiary.active,
button:not(.hamburger).tertiary:hover,
button:not(.hamburger).tertiary:active,
button:not(.hamburger).tertiary.active,
input[type=submit].tertiary:hover,
input[type=submit].tertiary:active,
input[type=submit].tertiary.active,
input[type=button].tertiary:hover,
input[type=button].tertiary:active,
input[type=button].tertiary.active,
body .gform_wrapper input[type=submit].tertiary:hover,
body .gform_wrapper input[type=submit].tertiary:active,
body .gform_wrapper input[type=submit].tertiary.active,
body .gform_wrapper button.tertiary:hover,
body .gform_wrapper button.tertiary:active,
body .gform_wrapper button.tertiary.active,
body .form-styles input[type=submit].tertiary:hover,
body .form-styles input[type=submit].tertiary:active,
body .form-styles input[type=submit].tertiary.active,
body .form-styles button.tertiary:hover,
body .form-styles button.tertiary:active,
body .form-styles button.tertiary.active {
  background-color: var(--color-tertiary_hover);
  color: var(--color-text-light);
}
.btn.tertiary:hover .icon, .btn.tertiary:active .icon, .btn.tertiary.active .icon,
button:not(.hamburger).tertiary:hover .icon,
button:not(.hamburger).tertiary:active .icon,
button:not(.hamburger).tertiary.active .icon,
input[type=submit].tertiary:hover .icon,
input[type=submit].tertiary:active .icon,
input[type=submit].tertiary.active .icon,
input[type=button].tertiary:hover .icon,
input[type=button].tertiary:active .icon,
input[type=button].tertiary.active .icon,
body .gform_wrapper input[type=submit].tertiary:hover .icon,
body .gform_wrapper input[type=submit].tertiary:active .icon,
body .gform_wrapper input[type=submit].tertiary.active .icon,
body .gform_wrapper button.tertiary:hover .icon,
body .gform_wrapper button.tertiary:active .icon,
body .gform_wrapper button.tertiary.active .icon,
body .form-styles input[type=submit].tertiary:hover .icon,
body .form-styles input[type=submit].tertiary:active .icon,
body .form-styles input[type=submit].tertiary.active .icon,
body .form-styles button.tertiary:hover .icon,
body .form-styles button.tertiary:active .icon,
body .form-styles button.tertiary.active .icon {
  color: var(--color-text-light);
}

.f-button:hover, .f-button:focus,
.carousel__button:hover,
.carousel__button:focus,
.fancybox__button:hover,
.fancybox__button:focus {
  background: none !important;
}
.f-button:active,
.carousel__button:active,
.fancybox__button:active {
  box-shadow: none !important;
  /* Adjusted shadow based on values */
}

.f-button.is-next:hover {
  transform: translate(3px, -50%) !important;
}
.f-button.is-prev:hover {
  transform: translate(-3px, -50%) !important;
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--item-spacing-between-horizontal) * 0.5);
}

.paragraph-container {
  display: flex;
  justify-content: center;
  padding-top: var(--block-padding-top);
  padding-bottom: var(--block-padding-bottom);
}
@media (max-width: 1024px) {
  .paragraph-container {
    padding-top: var(--block-padding-top-tablet);
    padding-bottom: var(--block-padding-bottom-tablet);
  }
}
@media (max-width: 767px) {
  .paragraph-container {
    padding-top: var(--block-padding-top-mobile);
    padding-bottom: var(--block-padding-bottom-mobile);
  }
}
.paragraph-container.top-padding {
  padding-bottom: 0;
}
.paragraph-container.bottom-padding {
  padding-top: 0;
}
.paragraph-container.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

/**
 * Other
 */
#is-larger-desktop {
  display: none;
}
@media (min-width: 1440px) {
  #is-larger-desktop {
    display: block;
  }
}

#is-desktop {
  display: none;
}
@media (max-width: 1440px) {
  #is-desktop {
    display: block;
  }
}

#is-tablet {
  display: none;
}
@media (max-width: 1024px) {
  #is-tablet {
    display: block;
  }
}

#is-mobile {
  display: none;
}
@media (max-width: 767px) {
  #is-mobile {
    display: block;
  }
}

@media (min-width: 1441px) {
  .hide-large-desktop {
    display: none;
  }
}

@media (max-width: 1440px) {
  .hide-desktop {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hide-tablet {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

/**
 * Overlay image
 */
.overlay-image {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 70%;
  z-index: 1;
}
.overlay-image.size-tiny {
  height: 30%;
}
@media (max-width: 1024px) {
  .overlay-image.size-tiny {
    height: 15%;
  }
}
@media (max-width: 767px) {
  .overlay-image.size-tiny {
    height: 10%;
  }
}
.overlay-image.size-small {
  height: 50%;
}
@media (max-width: 1024px) {
  .overlay-image.size-small {
    height: 35%;
  }
}
@media (max-width: 767px) {
  .overlay-image.size-small {
    height: 20%;
  }
}
.overlay-image.size-medium {
  height: 70%;
}
@media (max-width: 1024px) {
  .overlay-image.size-medium {
    height: 50%;
  }
}
@media (max-width: 767px) {
  .overlay-image.size-medium {
    height: 35%;
  }
}
.overlay-image.size-large {
  height: 100%;
}
@media (max-width: 1024px) {
  .overlay-image.size-large {
    height: 70%;
  }
}
@media (max-width: 767px) {
  .overlay-image.size-large {
    height: 50%;
  }
}
.overlay-image.bottom-left {
  left: 0;
  bottom: 0;
  background-position: bottom left;
}
.overlay-image.bottom-right {
  right: 0;
  bottom: 0;
  background-position: bottom right;
}
.overlay-image.top-left {
  left: 0;
  top: 0;
  background-position: top left;
}
.overlay-image.top-left.float-animation {
  top: -20px;
}
.overlay-image.top-right {
  right: 0;
  top: 0;
  background-position: top right;
}
.overlay-image.top-right.float-animation {
  top: -20px;
}

.float-animation {
  animation: float 15s infinite 0s;
}
@media (max-width: 1024px) {
  .float-animation {
    animation: float-mobile 15s infinite 0s;
  }
}
@media (max-width: 767px) {
  .float-animation {
    animation: none;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float-mobile {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.icon-outer-box {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.3em;
  height: 3.3em;
}
@media (max-width: 767px) {
  .icon-outer-box {
    width: 2.3em;
    height: 2.3em;
  }
}
.icon-outer-box i,
.icon-outer-box .icon {
  font-size: 1.8em;
}
@media (max-width: 767px) {
  .icon-outer-box i,
.icon-outer-box .icon {
    font-size: 1.4em;
  }
}

.post-preview-image-title-text {
  text-decoration: none;
}
.post-preview-image-title-text .image {
  overflow: hidden;
  margin-bottom: 1em;
}
.post-preview-image-title-text .image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.post-preview-image-title-text h4 {
  margin-bottom: 0;
  padding-right: 1.3em;
  position: relative;
}
.post-preview-image-title-text h4:after {
  position: absolute;
  display: block;
  content: "\e04d";
  font-family: "Lucide";
  opacity: 0.15;
  top: 0.1em;
  right: 0;
  font-size: 1em;
  font-weight: normal;
}
.post-preview-image-title-text h4 span {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.2s;
}
.post-preview-image-title-text .intro {
  margin-top: 0.7em;
  line-height: 1.6em;
}
.post-preview-image-title-text:hover img {
  transform: scale(1.05);
}
.post-preview-image-title-text:hover h4 span {
  background-size: 100% 2px;
}

.swiper-container {
  overflow: hidden;
}

.swiper {
  overflow: visible !important;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 3.3em;
  height: 3.3em;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .swiper .swiper-button-prev,
.swiper .swiper-button-next {
    width: 2.3em;
    height: 2.3em;
  }
}
.swiper .swiper-button-prev-cav,
.swiper .swiper-button-next-cav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  margin-right: var(--item-spacing-between-horizontal);
  margin-top: var(--item-spacing-between-vertical);
  cursor: pointer;
  transition: border-width 0.2s;
  box-sizing: border-box;
  width: 3.3em;
  height: 3.3em;
  border-radius: 50%;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s, fill 0.2s, opacity 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, text-shadow 0.2s, fill 0.2s;
}
@media (max-width: 767px) {
  .swiper .swiper-button-prev-cav,
.swiper .swiper-button-next-cav {
    width: 2.3em;
    height: 2.3em;
    margin-right: calc(var(--item-spacing-between-horizontal) * 0.5);
    margin-top: calc(var(--item-spacing-between-vertical) * 0.5);
  }
}
.swiper .swiper-button-prev-cav:before,
.swiper .swiper-button-next-cav:before {
  content: "\e048";
  font-family: "Lucide";
  font-size: 1.8em;
  font-weight: normal;
  display: block;
}
@media (max-width: 767px) {
  .swiper .swiper-button-prev-cav:before,
.swiper .swiper-button-next-cav:before {
    font-size: 1.4em;
  }
}
.swiper .swiper-button-prev-cav:hover, .swiper .swiper-button-prev-cav:active,
.swiper .swiper-button-next-cav:hover,
.swiper .swiper-button-next-cav:active {
  border-width: 2px;
}
.swiper .swiper-button-prev-cav.swiper-button-disabled,
.swiper .swiper-button-next-cav.swiper-button-disabled {
  opacity: 0.2;
}
.swiper .swiper-button-prev-cav.swiper-button-lock,
.swiper .swiper-button-next-cav.swiper-button-lock {
  display: none;
}
.swiper .swiper-button-next-cav:before {
  content: "\e049";
}

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