@font-face {
  font-family: "Apfel Grotezk";
  src: url("../fonts/ApfelGrotezk-Regular.woff2") format("woff2"), url("../fonts/ApfelGrotezk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Apfel Grotezk";
  src: url("../fonts/ApfelGrotezk-Mittel.woff2") format("woff2"), url("../fonts/ApfelGrotezk-Mittel.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Apfel Grotezk";
  src: url("../fonts/ApfelGrotezk-Fett.woff2") format("woff2"), url("../fonts/ApfelGrotezk-Fett.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
:root {
  --body-family: "Apfel Grotezk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --display-family: "Apfel Grotezk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-size: 1.1rem;
  --font-size-xs: 0.85rem;
  --font-size-sm: 0.95rem;
  --font-size-h1: 2.4rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.8rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.3rem;
  --font-size-h6: 1.1rem;
  --font-weight-light: 100;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-heavy: 900;
  --font-weight-heavy: var(--font-weight-bold);
  --line-height-l: 1.4;
  --line-height: 1.35;
  --line-height-sm: 1.35;
  --line-height-headings: 1.05;
  --color-grey-dark: #454545;
  --color-grey: #D9D9D9;
  --color-grey-light: #F8F8F8;
  --color-primary: #3F8B93;
  --color-secondary: #ECF3F4;
  --color-tertiary: #F4F8FD;
  --color-black: #1D1D1B;
  --color-text-base: #3A3A35;
  --color-text-dark: #3A3A35;
  --color-text-reversed: #fff;
  --color-text-light: #3A3A35;
  --color-text-link: var(--color-primary);
  --color-text-hover: var(--color-primary);
  --color-facebook: #3B5998;
  --color-twitter: #1DA1F2;
  --color-instagram: #262626;
  --color-youtube: #cc181e;
  --color-linkedin: #0077B5;
  --heading-color: #3F8B93;
  --body-background-color: #fff;
  --border-radius: 6px;
  --border-radius-l: 8px;
  --spacing-xxl: 3em;
  --spacing-xl: 2em;
  --spacing-l: 1.5em;
  --spacing: 1em;
  --spacing-s: 0.5em;
  --spacing-xs: 0.25em;
  --block-spacing: 2.5em;
  --grid-gap-sm: 1.5rem;
  --grid-gap: 2rem;
  --grid-gap-l: 4rem;
  --grid-gap-xl: 6rem;
  --container-width-xs: 45rem;
  --container-width-s: 65rem;
  --container-width: 75rem;
  --container-width-l: 100rem;
  --content-width: 50rem;
}
@media (min-width: 50em) {
  :root {
    --font-size: 1.1rem;
    --font-size-sm: 0.95rem;
    --line-height-l: 1.5;
    --line-height: 1.35;
    --line-height-sm: 1.4;
    --block-spacing: 3em;
  }
}
@media (min-width: 70em) {
  :root {
    --font-size: 1.175rem;
    --font-size-h1: 3.5rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.4rem;
    --font-size-h5: 1.5rem;
    --font-size-h6: 1.2rem;
    --block-spacing: 3em;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

html {
  font-size: var(--font-size);
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--body-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  text-rendering: optimizeSpeed;
  color: var(--color-text-base);
  background-color: var(--body-background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.skip-nav {
  background: #eee;
  color: var(--color-text-base);
  border-radius: 8px;
}

hr {
  border: 0;
  background-color: var(--color-grey);
  width: 100%;
  height: 1px;
  margin: var(--spacing-xxl) auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -30px;
  transition: all 0.3s ease;
}

.flex > * {
  box-sizing: border-box;
  flex: 1 1 auto; /* Default for IE10 bug */
  padding-bottom: 0;
  padding-left: 30px;
}

.flex[class*=one] > *, .flex[class*=two] > *, .flex[class*=three] > *, .flex[class*=four] > *, .flex[class*=five] > *, .flex[class*=six] > *, .flex[class*=seven] > *, .flex[class*=eight] > *, .flex[class*=nine] > *, .flex[class*=ten] > *, .flex[class*=eleven] > *, .flex[class*=twelve] > * {
  flex-grow: 0;
}

.flex.grow > * {
  flex-grow: 1;
}

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

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

.justify-left {
  justify-content: flex-start;
}

.align-middle {
  align-items: center;
}

.align-top {
  align-items: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.one > * {
  width: 100%;
}

.two > * {
  width: 50%;
}

.three > * {
  width: 33.33333%;
}

.four > * {
  width: 25%;
}

.five > * {
  width: 20%;
}

.six > * {
  width: 16.66666%;
}

.seven > * {
  width: 14.28571%;
}

.eight > * {
  width: 12.5%;
}

.nine > * {
  width: 11.11111%;
}

.ten > * {
  width: 10%;
}

.eleven > * {
  width: 9.09091%;
}

.twelve > * {
  width: 8.33333%;
}

@media all and (min-width: 400px) {
  .one-400 > * {
    width: 100%;
  }
  .two-400 > * {
    width: 50%;
  }
  .three-400 > * {
    width: 33.33333%;
  }
  .four-400 > * {
    width: 25%;
  }
  .five-400 > * {
    width: 20%;
  }
  .six-400 > * {
    width: 16.66666%;
  }
  .seven-400 > * {
    width: 14.28571%;
  }
  .eight-400 > * {
    width: 12.5%;
  }
  .nine-400 > * {
    width: 11.11111%;
  }
  .ten-400 > * {
    width: 10%;
  }
  .eleven-400 > * {
    width: 9.09091%;
  }
  .twelve-400 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 500px) {
  .one-500 > * {
    width: 100%;
  }
  .two-500 > * {
    width: 50%;
  }
  .three-500 > * {
    width: 33.33333%;
  }
  .four-500 > * {
    width: 25%;
  }
  .five-500 > * {
    width: 20%;
  }
  .six-500 > * {
    width: 16.66666%;
  }
  .seven-500 > * {
    width: 14.28571%;
  }
  .eight-500 > * {
    width: 12.5%;
  }
  .nine-500 > * {
    width: 11.11111%;
  }
  .ten-500 > * {
    width: 10%;
  }
  .eleven-500 > * {
    width: 9.09091%;
  }
  .twelve-500 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 600px) {
  .one-600 > * {
    width: 100%;
  }
  .two-600 > * {
    width: 50%;
  }
  .three-600 > * {
    width: 33.33333%;
  }
  .four-600 > * {
    width: 25%;
  }
  .five-600 > * {
    width: 20%;
  }
  .six-600 > * {
    width: 16.66666%;
  }
  .seven-600 > * {
    width: 14.28571%;
  }
  .eight-600 > * {
    width: 12.5%;
  }
  .nine-600 > * {
    width: 11.11111%;
  }
  .ten-600 > * {
    width: 10%;
  }
  .eleven-600 > * {
    width: 9.09091%;
  }
  .twelve-600 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 700px) {
  .one-700 > * {
    width: 100%;
  }
  .two-700 > * {
    width: 50%;
  }
  .three-700 > * {
    width: 33.33333%;
  }
  .four-700 > * {
    width: 25%;
  }
  .five-700 > * {
    width: 20%;
  }
  .six-700 > * {
    width: 16.66666%;
  }
  .seven-700 > * {
    width: 14.28571%;
  }
  .eight-700 > * {
    width: 12.5%;
  }
  .nine-700 > * {
    width: 11.11111%;
  }
  .ten-700 > * {
    width: 10%;
  }
  .eleven-700 > * {
    width: 9.09091%;
  }
  .twelve-700 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 800px) {
  .one-800 > * {
    width: 100%;
  }
  .two-800 > * {
    width: 50%;
  }
  .three-800 > * {
    width: 33.33333%;
  }
  .four-800 > * {
    width: 25%;
  }
  .five-800 > * {
    width: 20%;
  }
  .six-800 > * {
    width: 16.66666%;
  }
  .seven-800 > * {
    width: 14.28571%;
  }
  .eight-800 > * {
    width: 12.5%;
  }
  .nine-800 > * {
    width: 11.11111%;
  }
  .ten-800 > * {
    width: 10%;
  }
  .eleven-800 > * {
    width: 9.09091%;
  }
  .twelve-800 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 900px) {
  .one-900 > * {
    width: 100%;
  }
  .two-900 > * {
    width: 50%;
  }
  .three-900 > * {
    width: 33.33333%;
  }
  .four-900 > * {
    width: 25%;
  }
  .five-900 > * {
    width: 20%;
  }
  .six-900 > * {
    width: 16.66666%;
  }
  .seven-900 > * {
    width: 14.28571%;
  }
  .eight-900 > * {
    width: 12.5%;
  }
  .nine-900 > * {
    width: 11.11111%;
  }
  .ten-900 > * {
    width: 10%;
  }
  .eleven-900 > * {
    width: 9.09091%;
  }
  .twelve-900 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1000px) {
  .one-1000 > * {
    width: 100%;
  }
  .two-1000 > * {
    width: 50%;
  }
  .three-1000 > * {
    width: 33.33333%;
  }
  .four-1000 > * {
    width: 25%;
  }
  .five-1000 > * {
    width: 20%;
  }
  .six-1000 > * {
    width: 16.66666%;
  }
  .seven-1000 > * {
    width: 14.28571%;
  }
  .eight-1000 > * {
    width: 12.5%;
  }
  .nine-1000 > * {
    width: 11.11111%;
  }
  .ten-1000 > * {
    width: 10%;
  }
  .eleven-1000 > * {
    width: 9.09091%;
  }
  .twelve-1000 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1100px) {
  .one-1100 > * {
    width: 100%;
  }
  .two-1100 > * {
    width: 50%;
  }
  .three-1100 > * {
    width: 33.33333%;
  }
  .four-1100 > * {
    width: 25%;
  }
  .five-1100 > * {
    width: 20%;
  }
  .six-1100 > * {
    width: 16.66666%;
  }
  .seven-1100 > * {
    width: 14.28571%;
  }
  .eight-1100 > * {
    width: 12.5%;
  }
  .nine-1100 > * {
    width: 11.11111%;
  }
  .ten-1100 > * {
    width: 10%;
  }
  .eleven-1100 > * {
    width: 9.09091%;
  }
  .twelve-1100 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1200px) {
  .one-1200 > * {
    width: 100%;
  }
  .two-1200 > * {
    width: 50%;
  }
  .three-1200 > * {
    width: 33.33333%;
  }
  .four-1200 > * {
    width: 25%;
  }
  .five-1200 > * {
    width: 20%;
  }
  .six-1200 > * {
    width: 16.66666%;
  }
  .seven-1200 > * {
    width: 14.28571%;
  }
  .eight-1200 > * {
    width: 12.5%;
  }
  .nine-1200 > * {
    width: 11.11111%;
  }
  .ten-1200 > * {
    width: 10%;
  }
  .eleven-1200 > * {
    width: 9.09091%;
  }
  .twelve-1200 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1300px) {
  .one-1300 > * {
    width: 100%;
  }
  .two-1300 > * {
    width: 50%;
  }
  .three-1300 > * {
    width: 33.33333%;
  }
  .four-1300 > * {
    width: 25%;
  }
  .five-1300 > * {
    width: 20%;
  }
  .six-1300 > * {
    width: 16.66666%;
  }
  .seven-1300 > * {
    width: 14.28571%;
  }
  .eight-1300 > * {
    width: 12.5%;
  }
  .nine-1300 > * {
    width: 11.11111%;
  }
  .ten-1300 > * {
    width: 10%;
  }
  .eleven-1300 > * {
    width: 9.09091%;
  }
  .twelve-1300 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1400px) {
  .one-1400 > * {
    width: 100%;
  }
  .two-1400 > * {
    width: 50%;
  }
  .three-1400 > * {
    width: 33.33333%;
  }
  .four-1400 > * {
    width: 25%;
  }
  .five-1400 > * {
    width: 20%;
  }
  .six-1400 > * {
    width: 16.66666%;
  }
  .seven-1400 > * {
    width: 14.28571%;
  }
  .eight-1400 > * {
    width: 12.5%;
  }
  .nine-1400 > * {
    width: 11.11111%;
  }
  .ten-1400 > * {
    width: 10%;
  }
  .eleven-1400 > * {
    width: 9.09091%;
  }
  .twelve-1400 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1500px) {
  .one-1500 > * {
    width: 100%;
  }
  .two-1500 > * {
    width: 50%;
  }
  .three-1500 > * {
    width: 33.33333%;
  }
  .four-1500 > * {
    width: 25%;
  }
  .five-1500 > * {
    width: 20%;
  }
  .six-1500 > * {
    width: 16.66666%;
  }
  .seven-1500 > * {
    width: 14.28571%;
  }
  .eight-1500 > * {
    width: 12.5%;
  }
  .nine-1500 > * {
    width: 11.11111%;
  }
  .ten-1500 > * {
    width: 10%;
  }
  .eleven-1500 > * {
    width: 9.09091%;
  }
  .twelve-1500 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1600px) {
  .one-1600 > * {
    width: 100%;
  }
  .two-1600 > * {
    width: 50%;
  }
  .three-1600 > * {
    width: 33.33333%;
  }
  .four-1600 > * {
    width: 25%;
  }
  .five-1600 > * {
    width: 20%;
  }
  .six-1600 > * {
    width: 16.66666%;
  }
  .seven-1600 > * {
    width: 14.28571%;
  }
  .eight-1600 > * {
    width: 12.5%;
  }
  .nine-1600 > * {
    width: 11.11111%;
  }
  .ten-1600 > * {
    width: 10%;
  }
  .eleven-1600 > * {
    width: 9.09091%;
  }
  .twelve-1600 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1700px) {
  .one-1700 > * {
    width: 100%;
  }
  .two-1700 > * {
    width: 50%;
  }
  .three-1700 > * {
    width: 33.33333%;
  }
  .four-1700 > * {
    width: 25%;
  }
  .five-1700 > * {
    width: 20%;
  }
  .six-1700 > * {
    width: 16.66666%;
  }
  .seven-1700 > * {
    width: 14.28571%;
  }
  .eight-1700 > * {
    width: 12.5%;
  }
  .nine-1700 > * {
    width: 11.11111%;
  }
  .ten-1700 > * {
    width: 10%;
  }
  .eleven-1700 > * {
    width: 9.09091%;
  }
  .twelve-1700 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1800px) {
  .one-1800 > * {
    width: 100%;
  }
  .two-1800 > * {
    width: 50%;
  }
  .three-1800 > * {
    width: 33.33333%;
  }
  .four-1800 > * {
    width: 25%;
  }
  .five-1800 > * {
    width: 20%;
  }
  .six-1800 > * {
    width: 16.66666%;
  }
  .seven-1800 > * {
    width: 14.28571%;
  }
  .eight-1800 > * {
    width: 12.5%;
  }
  .nine-1800 > * {
    width: 11.11111%;
  }
  .ten-1800 > * {
    width: 10%;
  }
  .eleven-1800 > * {
    width: 9.09091%;
  }
  .twelve-1800 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 1900px) {
  .one-1900 > * {
    width: 100%;
  }
  .two-1900 > * {
    width: 50%;
  }
  .three-1900 > * {
    width: 33.33333%;
  }
  .four-1900 > * {
    width: 25%;
  }
  .five-1900 > * {
    width: 20%;
  }
  .six-1900 > * {
    width: 16.66666%;
  }
  .seven-1900 > * {
    width: 14.28571%;
  }
  .eight-1900 > * {
    width: 12.5%;
  }
  .nine-1900 > * {
    width: 11.11111%;
  }
  .ten-1900 > * {
    width: 10%;
  }
  .eleven-1900 > * {
    width: 9.09091%;
  }
  .twelve-1900 > * {
    width: 8.33333%;
  }
}
@media all and (min-width: 2000px) {
  .one-2000 > * {
    width: 100%;
  }
  .two-2000 > * {
    width: 50%;
  }
  .three-2000 > * {
    width: 33.33333%;
  }
  .four-2000 > * {
    width: 25%;
  }
  .five-2000 > * {
    width: 20%;
  }
  .six-2000 > * {
    width: 16.66666%;
  }
  .seven-2000 > * {
    width: 14.28571%;
  }
  .eight-2000 > * {
    width: 12.5%;
  }
  .nine-2000 > * {
    width: 11.11111%;
  }
  .ten-2000 > * {
    width: 10%;
  }
  .eleven-2000 > * {
    width: 9.09091%;
  }
  .twelve-2000 > * {
    width: 8.33333%;
  }
}
.full {
  width: 100%;
}

.half {
  width: 50%;
}

.third {
  width: 33.33333%;
}

.two-third {
  width: 66.66666%;
}

.fourth {
  width: 25%;
}

.three-fourth {
  width: 75%;
}

.fifth {
  width: 20%;
}

.two-fifth {
  width: 40%;
}

.three-fifth {
  width: 60%;
}

.four-fifth {
  width: 80%;
}

.sixth {
  width: 16.66666%;
}

.five-sixth {
  width: 83.33333334%;
}

.tenth {
  width: 10%;
}

.none {
  display: none;
}

@media all and (min-width: 400px) {
  .full-400 {
    display: block;
    width: 100%;
  }
  .half-400 {
    display: block;
    width: 50%;
  }
  .third-400 {
    display: block;
    width: 33.33333%;
  }
  .two-third-400 {
    display: block;
    width: 66.66666%;
  }
  .fourth-400 {
    display: block;
    width: 25%;
  }
  .three-fourth-400 {
    display: block;
    width: 75%;
  }
  .fifth-400 {
    display: block;
    width: 20%;
  }
  .two-fifth-400 {
    display: block;
    width: 40%;
  }
  .three-fifth-400 {
    display: block;
    width: 60%;
  }
  .four-fifth-400 {
    display: block;
    width: 80%;
  }
  .sixth-400 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-400 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-400 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 500px) {
  .full-500 {
    display: block;
    width: 100%;
  }
  .half-500 {
    display: block;
    width: 50%;
  }
  .third-500 {
    display: block;
    width: 33.33333%;
  }
  .two-third-500 {
    display: block;
    width: 66.66666%;
  }
  .fourth-500 {
    display: block;
    width: 25%;
  }
  .three-fourth-500 {
    display: block;
    width: 75%;
  }
  .fifth-500 {
    display: block;
    width: 20%;
  }
  .two-fifth-500 {
    display: block;
    width: 40%;
  }
  .three-fifth-500 {
    display: block;
    width: 60%;
  }
  .four-fifth-500 {
    display: block;
    width: 80%;
  }
  .sixth-500 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-500 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-500 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 600px) {
  .full-600 {
    display: block;
    width: 100%;
  }
  .half-600 {
    display: block;
    width: 50%;
  }
  .third-600 {
    display: block;
    width: 33.33333%;
  }
  .two-third-600 {
    display: block;
    width: 66.66666%;
  }
  .fourth-600 {
    display: block;
    width: 25%;
  }
  .three-fourth-600 {
    display: block;
    width: 75%;
  }
  .fifth-600 {
    display: block;
    width: 20%;
  }
  .two-fifth-600 {
    display: block;
    width: 40%;
  }
  .three-fifth-600 {
    display: block;
    width: 60%;
  }
  .four-fifth-600 {
    display: block;
    width: 80%;
  }
  .sixth-600 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-600 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-600 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 700px) {
  .full-700 {
    display: block;
    width: 100%;
  }
  .half-700 {
    display: block;
    width: 50%;
  }
  .third-700 {
    display: block;
    width: 33.33333%;
  }
  .two-third-700 {
    display: block;
    width: 66.66666%;
  }
  .fourth-700 {
    display: block;
    width: 25%;
  }
  .three-fourth-700 {
    display: block;
    width: 75%;
  }
  .fifth-700 {
    display: block;
    width: 20%;
  }
  .two-fifth-700 {
    display: block;
    width: 40%;
  }
  .three-fifth-700 {
    display: block;
    width: 60%;
  }
  .four-fifth-700 {
    display: block;
    width: 80%;
  }
  .sixth-700 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-700 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-700 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 800px) {
  .full-800 {
    display: block;
    width: 100%;
  }
  .half-800 {
    display: block;
    width: 50%;
  }
  .third-800 {
    display: block;
    width: 33.33333%;
  }
  .two-third-800 {
    display: block;
    width: 66.66666%;
  }
  .fourth-800 {
    display: block;
    width: 25%;
  }
  .three-fourth-800 {
    display: block;
    width: 75%;
  }
  .fifth-800 {
    display: block;
    width: 20%;
  }
  .two-fifth-800 {
    display: block;
    width: 40%;
  }
  .three-fifth-800 {
    display: block;
    width: 60%;
  }
  .four-fifth-800 {
    display: block;
    width: 80%;
  }
  .sixth-800 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-800 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-800 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 900px) {
  .full-900 {
    display: block;
    width: 100%;
  }
  .half-900 {
    display: block;
    width: 50%;
  }
  .third-900 {
    display: block;
    width: 33.33333%;
  }
  .two-third-900 {
    display: block;
    width: 66.66666%;
  }
  .fourth-900 {
    display: block;
    width: 25%;
  }
  .three-fourth-900 {
    display: block;
    width: 75%;
  }
  .fifth-900 {
    display: block;
    width: 20%;
  }
  .two-fifth-900 {
    display: block;
    width: 40%;
  }
  .three-fifth-900 {
    display: block;
    width: 60%;
  }
  .four-fifth-900 {
    display: block;
    width: 80%;
  }
  .sixth-900 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-900 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-900 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1000px) {
  .full-1000 {
    display: block;
    width: 100%;
  }
  .half-1000 {
    display: block;
    width: 50%;
  }
  .third-1000 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1000 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1000 {
    display: block;
    width: 25%;
  }
  .three-fourth-1000 {
    display: block;
    width: 75%;
  }
  .fifth-1000 {
    display: block;
    width: 20%;
  }
  .two-fifth-1000 {
    display: block;
    width: 40%;
  }
  .three-fifth-1000 {
    display: block;
    width: 60%;
  }
  .four-fifth-1000 {
    display: block;
    width: 80%;
  }
  .sixth-1000 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1000 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1000 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1100px) {
  .full-1100 {
    display: block;
    width: 100%;
  }
  .half-1100 {
    display: block;
    width: 50%;
  }
  .third-1100 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1100 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1100 {
    display: block;
    width: 25%;
  }
  .three-fourth-1100 {
    display: block;
    width: 75%;
  }
  .fifth-1100 {
    display: block;
    width: 20%;
  }
  .two-fifth-1100 {
    display: block;
    width: 40%;
  }
  .three-fifth-1100 {
    display: block;
    width: 60%;
  }
  .four-fifth-1100 {
    display: block;
    width: 80%;
  }
  .sixth-1100 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1100 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1100 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1200px) {
  .full-1200 {
    display: block;
    width: 100%;
  }
  .half-1200 {
    display: block;
    width: 50%;
  }
  .third-1200 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1200 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1200 {
    display: block;
    width: 25%;
  }
  .three-fourth-1200 {
    display: block;
    width: 75%;
  }
  .fifth-1200 {
    display: block;
    width: 20%;
  }
  .two-fifth-1200 {
    display: block;
    width: 40%;
  }
  .three-fifth-1200 {
    display: block;
    width: 60%;
  }
  .four-fifth-1200 {
    display: block;
    width: 80%;
  }
  .sixth-1200 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1200 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1200 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1300px) {
  .full-1300 {
    display: block;
    width: 100%;
  }
  .half-1300 {
    display: block;
    width: 50%;
  }
  .third-1300 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1300 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1300 {
    display: block;
    width: 25%;
  }
  .three-fourth-1300 {
    display: block;
    width: 75%;
  }
  .fifth-1300 {
    display: block;
    width: 20%;
  }
  .two-fifth-1300 {
    display: block;
    width: 40%;
  }
  .three-fifth-1300 {
    display: block;
    width: 60%;
  }
  .four-fifth-1300 {
    display: block;
    width: 80%;
  }
  .sixth-1300 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1300 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1300 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1400px) {
  .full-1400 {
    display: block;
    width: 100%;
  }
  .half-1400 {
    display: block;
    width: 50%;
  }
  .third-1400 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1400 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1400 {
    display: block;
    width: 25%;
  }
  .three-fourth-1400 {
    display: block;
    width: 75%;
  }
  .fifth-1400 {
    display: block;
    width: 20%;
  }
  .two-fifth-1400 {
    display: block;
    width: 40%;
  }
  .three-fifth-1400 {
    display: block;
    width: 60%;
  }
  .four-fifth-1400 {
    display: block;
    width: 80%;
  }
  .sixth-1400 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1400 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1400 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1500px) {
  .full-1500 {
    display: block;
    width: 100%;
  }
  .half-1500 {
    display: block;
    width: 50%;
  }
  .third-1500 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1500 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1500 {
    display: block;
    width: 25%;
  }
  .three-fourth-1500 {
    display: block;
    width: 75%;
  }
  .fifth-1500 {
    display: block;
    width: 20%;
  }
  .two-fifth-1500 {
    display: block;
    width: 40%;
  }
  .three-fifth-1500 {
    display: block;
    width: 60%;
  }
  .four-fifth-1500 {
    display: block;
    width: 80%;
  }
  .sixth-1500 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1500 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1500 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1600px) {
  .full-1600 {
    display: block;
    width: 100%;
  }
  .half-1600 {
    display: block;
    width: 50%;
  }
  .third-1600 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1600 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1600 {
    display: block;
    width: 25%;
  }
  .three-fourth-1600 {
    display: block;
    width: 75%;
  }
  .fifth-1600 {
    display: block;
    width: 20%;
  }
  .two-fifth-1600 {
    display: block;
    width: 40%;
  }
  .three-fifth-1600 {
    display: block;
    width: 60%;
  }
  .four-fifth-1600 {
    display: block;
    width: 80%;
  }
  .sixth-1600 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1600 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1600 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1700px) {
  .full-1700 {
    display: block;
    width: 100%;
  }
  .half-1700 {
    display: block;
    width: 50%;
  }
  .third-1700 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1700 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1700 {
    display: block;
    width: 25%;
  }
  .three-fourth-1700 {
    display: block;
    width: 75%;
  }
  .fifth-1700 {
    display: block;
    width: 20%;
  }
  .two-fifth-1700 {
    display: block;
    width: 40%;
  }
  .three-fifth-1700 {
    display: block;
    width: 60%;
  }
  .four-fifth-1700 {
    display: block;
    width: 80%;
  }
  .sixth-1700 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1700 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1700 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1800px) {
  .full-1800 {
    display: block;
    width: 100%;
  }
  .half-1800 {
    display: block;
    width: 50%;
  }
  .third-1800 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1800 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1800 {
    display: block;
    width: 25%;
  }
  .three-fourth-1800 {
    display: block;
    width: 75%;
  }
  .fifth-1800 {
    display: block;
    width: 20%;
  }
  .two-fifth-1800 {
    display: block;
    width: 40%;
  }
  .three-fifth-1800 {
    display: block;
    width: 60%;
  }
  .four-fifth-1800 {
    display: block;
    width: 80%;
  }
  .sixth-1800 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1800 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1800 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 1900px) {
  .full-1900 {
    display: block;
    width: 100%;
  }
  .half-1900 {
    display: block;
    width: 50%;
  }
  .third-1900 {
    display: block;
    width: 33.33333%;
  }
  .two-third-1900 {
    display: block;
    width: 66.66666%;
  }
  .fourth-1900 {
    display: block;
    width: 25%;
  }
  .three-fourth-1900 {
    display: block;
    width: 75%;
  }
  .fifth-1900 {
    display: block;
    width: 20%;
  }
  .two-fifth-1900 {
    display: block;
    width: 40%;
  }
  .three-fifth-1900 {
    display: block;
    width: 60%;
  }
  .four-fifth-1900 {
    display: block;
    width: 80%;
  }
  .sixth-1900 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-1900 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-1900 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 2000px) {
  .full-2000 {
    display: block;
    width: 100%;
  }
  .half-2000 {
    display: block;
    width: 50%;
  }
  .third-2000 {
    display: block;
    width: 33.33333%;
  }
  .two-third-2000 {
    display: block;
    width: 66.66666%;
  }
  .fourth-2000 {
    display: block;
    width: 25%;
  }
  .three-fourth-2000 {
    display: block;
    width: 75%;
  }
  .fifth-2000 {
    display: block;
    width: 20%;
  }
  .two-fifth-2000 {
    display: block;
    width: 40%;
  }
  .three-fifth-2000 {
    display: block;
    width: 60%;
  }
  .four-fifth-2000 {
    display: block;
    width: 80%;
  }
  .sixth-2000 {
    display: block;
    width: 16.66666%;
  }
  .five-sixth-2000 {
    display: block;
    width: 83.33333334%;
  }
  .tenth-2000 {
    display: block;
    width: 10%;
  }
}
@media all and (min-width: 400px) {
  .none-400 {
    display: none;
  }
}
@media all and (min-width: 500px) {
  .none-500 {
    display: none;
  }
}
@media all and (min-width: 600px) {
  .none-600 {
    display: none;
  }
}
@media all and (min-width: 700px) {
  .none-700 {
    display: none;
  }
}
@media all and (min-width: 800px) {
  .none-800 {
    display: none;
  }
}
@media all and (min-width: 900px) {
  .none-900 {
    display: none;
  }
}
@media all and (min-width: 1000px) {
  .none-1000 {
    display: none;
  }
}
@media all and (min-width: 1100px) {
  .none-1100 {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  .none-1200 {
    display: none;
  }
}
@media all and (min-width: 1300px) {
  .none-1300 {
    display: none;
  }
}
@media all and (min-width: 1400px) {
  .none-1400 {
    display: none;
  }
}
@media all and (min-width: 1500px) {
  .none-1500 {
    display: none;
  }
}
@media all and (min-width: 1600px) {
  .none-1600 {
    display: none;
  }
}
@media all and (min-width: 1700px) {
  .none-1700 {
    display: none;
  }
}
@media all and (min-width: 1800px) {
  .none-1800 {
    display: none;
  }
}
@media all and (min-width: 1900px) {
  .none-1900 {
    display: none;
  }
}
@media all and (min-width: 2000px) {
  .none-2000 {
    display: none;
  }
}
.off-none {
  margin-left: 0;
}

.off-half {
  margin-left: 50%;
}

.off-third {
  margin-left: 33.33333%;
}

.off-two-third {
  margin-left: 66.66666%;
}

.off-fourth {
  margin-left: 25%;
}

.off-three-fourth {
  margin-left: 75%;
}

.off-fifth {
  margin-left: 20%;
}

.off-two-fifth {
  margin-left: 40%;
}

.off-three-fifth {
  margin-left: 60%;
}

.off-four-fifth {
  margin-left: 80%;
}

.off-sixth {
  margin-left: 16.66666%;
}

.off-tenth {
  margin-left: 10%;
}

.off-twelth {
  margin-left: 8.3333333333%;
}

@media all and (min-width: 400px) {
  .off-none-400 {
    margin-left: 0;
  }
  .off-half-400 {
    margin-left: 50%;
  }
  .off-third-400 {
    margin-left: 33.33333%;
  }
  .off-two-third-400 {
    margin-left: 66.66666%;
  }
  .off-fourth-400 {
    margin-left: 25%;
  }
  .off-three-fourth-400 {
    margin-left: 75%;
  }
  .off-fifth-400 {
    margin-left: 20%;
  }
  .off-two-fifth-400 {
    margin-left: 40%;
  }
  .off-three-fifth-400 {
    margin-left: 60%;
  }
  .off-four-fifth-400 {
    margin-left: 80%;
  }
  .off-sixth-400 {
    margin-left: 16.66666%;
  }
  .off-tenth-400 {
    margin-left: 10%;
  }
  .off-twelth-400 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 500px) {
  .off-none-500 {
    margin-left: 0;
  }
  .off-half-500 {
    margin-left: 50%;
  }
  .off-third-500 {
    margin-left: 33.33333%;
  }
  .off-two-third-500 {
    margin-left: 66.66666%;
  }
  .off-fourth-500 {
    margin-left: 25%;
  }
  .off-three-fourth-500 {
    margin-left: 75%;
  }
  .off-fifth-500 {
    margin-left: 20%;
  }
  .off-two-fifth-500 {
    margin-left: 40%;
  }
  .off-three-fifth-500 {
    margin-left: 60%;
  }
  .off-four-fifth-500 {
    margin-left: 80%;
  }
  .off-sixth-500 {
    margin-left: 16.66666%;
  }
  .off-tenth-500 {
    margin-left: 10%;
  }
  .off-twelth-500 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 600px) {
  .off-none-600 {
    margin-left: 0;
  }
  .off-half-600 {
    margin-left: 50%;
  }
  .off-third-600 {
    margin-left: 33.33333%;
  }
  .off-two-third-600 {
    margin-left: 66.66666%;
  }
  .off-fourth-600 {
    margin-left: 25%;
  }
  .off-three-fourth-600 {
    margin-left: 75%;
  }
  .off-fifth-600 {
    margin-left: 20%;
  }
  .off-two-fifth-600 {
    margin-left: 40%;
  }
  .off-three-fifth-600 {
    margin-left: 60%;
  }
  .off-four-fifth-600 {
    margin-left: 80%;
  }
  .off-sixth-600 {
    margin-left: 16.66666%;
  }
  .off-tenth-600 {
    margin-left: 10%;
  }
  .off-twelth-600 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 700px) {
  .off-none-700 {
    margin-left: 0;
  }
  .off-half-700 {
    margin-left: 50%;
  }
  .off-third-700 {
    margin-left: 33.33333%;
  }
  .off-two-third-700 {
    margin-left: 66.66666%;
  }
  .off-fourth-700 {
    margin-left: 25%;
  }
  .off-three-fourth-700 {
    margin-left: 75%;
  }
  .off-fifth-700 {
    margin-left: 20%;
  }
  .off-two-fifth-700 {
    margin-left: 40%;
  }
  .off-three-fifth-700 {
    margin-left: 60%;
  }
  .off-four-fifth-700 {
    margin-left: 80%;
  }
  .off-sixth-700 {
    margin-left: 16.66666%;
  }
  .off-tenth-700 {
    margin-left: 10%;
  }
  .off-twelth-700 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 800px) {
  .off-none-800 {
    margin-left: 0;
  }
  .off-half-800 {
    margin-left: 50%;
  }
  .off-third-800 {
    margin-left: 33.33333%;
  }
  .off-two-third-800 {
    margin-left: 66.66666%;
  }
  .off-fourth-800 {
    margin-left: 25%;
  }
  .off-three-fourth-800 {
    margin-left: 75%;
  }
  .off-fifth-800 {
    margin-left: 20%;
  }
  .off-two-fifth-800 {
    margin-left: 40%;
  }
  .off-three-fifth-800 {
    margin-left: 60%;
  }
  .off-four-fifth-800 {
    margin-left: 80%;
  }
  .off-sixth-800 {
    margin-left: 16.66666%;
  }
  .off-tenth-800 {
    margin-left: 10%;
  }
  .off-twelth-800 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 900px) {
  .off-none-900 {
    margin-left: 0;
  }
  .off-half-900 {
    margin-left: 50%;
  }
  .off-third-900 {
    margin-left: 33.33333%;
  }
  .off-two-third-900 {
    margin-left: 66.66666%;
  }
  .off-fourth-900 {
    margin-left: 25%;
  }
  .off-three-fourth-900 {
    margin-left: 75%;
  }
  .off-fifth-900 {
    margin-left: 20%;
  }
  .off-two-fifth-900 {
    margin-left: 40%;
  }
  .off-three-fifth-900 {
    margin-left: 60%;
  }
  .off-four-fifth-900 {
    margin-left: 80%;
  }
  .off-sixth-900 {
    margin-left: 16.66666%;
  }
  .off-tenth-900 {
    margin-left: 10%;
  }
  .off-twelth-900 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1000px) {
  .off-none-1000 {
    margin-left: 0;
  }
  .off-half-1000 {
    margin-left: 50%;
  }
  .off-third-1000 {
    margin-left: 33.33333%;
  }
  .off-two-third-1000 {
    margin-left: 66.66666%;
  }
  .off-fourth-1000 {
    margin-left: 25%;
  }
  .off-three-fourth-1000 {
    margin-left: 75%;
  }
  .off-fifth-1000 {
    margin-left: 20%;
  }
  .off-two-fifth-1000 {
    margin-left: 40%;
  }
  .off-three-fifth-1000 {
    margin-left: 60%;
  }
  .off-four-fifth-1000 {
    margin-left: 80%;
  }
  .off-sixth-1000 {
    margin-left: 16.66666%;
  }
  .off-tenth-1000 {
    margin-left: 10%;
  }
  .off-twelth-1000 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1100px) {
  .off-none-1100 {
    margin-left: 0;
  }
  .off-half-1100 {
    margin-left: 50%;
  }
  .off-third-1100 {
    margin-left: 33.33333%;
  }
  .off-two-third-1100 {
    margin-left: 66.66666%;
  }
  .off-fourth-1100 {
    margin-left: 25%;
  }
  .off-three-fourth-1100 {
    margin-left: 75%;
  }
  .off-fifth-1100 {
    margin-left: 20%;
  }
  .off-two-fifth-1100 {
    margin-left: 40%;
  }
  .off-three-fifth-1100 {
    margin-left: 60%;
  }
  .off-four-fifth-1100 {
    margin-left: 80%;
  }
  .off-sixth-1100 {
    margin-left: 16.66666%;
  }
  .off-tenth-1100 {
    margin-left: 10%;
  }
  .off-twelth-1100 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1200px) {
  .off-none-1200 {
    margin-left: 0;
  }
  .off-half-1200 {
    margin-left: 50%;
  }
  .off-third-1200 {
    margin-left: 33.33333%;
  }
  .off-two-third-1200 {
    margin-left: 66.66666%;
  }
  .off-fourth-1200 {
    margin-left: 25%;
  }
  .off-three-fourth-1200 {
    margin-left: 75%;
  }
  .off-fifth-1200 {
    margin-left: 20%;
  }
  .off-two-fifth-1200 {
    margin-left: 40%;
  }
  .off-three-fifth-1200 {
    margin-left: 60%;
  }
  .off-four-fifth-1200 {
    margin-left: 80%;
  }
  .off-sixth-1200 {
    margin-left: 16.66666%;
  }
  .off-tenth-1200 {
    margin-left: 10%;
  }
  .off-twelth-1200 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1300px) {
  .off-none-1300 {
    margin-left: 0;
  }
  .off-half-1300 {
    margin-left: 50%;
  }
  .off-third-1300 {
    margin-left: 33.33333%;
  }
  .off-two-third-1300 {
    margin-left: 66.66666%;
  }
  .off-fourth-1300 {
    margin-left: 25%;
  }
  .off-three-fourth-1300 {
    margin-left: 75%;
  }
  .off-fifth-1300 {
    margin-left: 20%;
  }
  .off-two-fifth-1300 {
    margin-left: 40%;
  }
  .off-three-fifth-1300 {
    margin-left: 60%;
  }
  .off-four-fifth-1300 {
    margin-left: 80%;
  }
  .off-sixth-1300 {
    margin-left: 16.66666%;
  }
  .off-tenth-1300 {
    margin-left: 10%;
  }
  .off-twelth-1300 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1400px) {
  .off-none-1400 {
    margin-left: 0;
  }
  .off-half-1400 {
    margin-left: 50%;
  }
  .off-third-1400 {
    margin-left: 33.33333%;
  }
  .off-two-third-1400 {
    margin-left: 66.66666%;
  }
  .off-fourth-1400 {
    margin-left: 25%;
  }
  .off-three-fourth-1400 {
    margin-left: 75%;
  }
  .off-fifth-1400 {
    margin-left: 20%;
  }
  .off-two-fifth-1400 {
    margin-left: 40%;
  }
  .off-three-fifth-1400 {
    margin-left: 60%;
  }
  .off-four-fifth-1400 {
    margin-left: 80%;
  }
  .off-sixth-1400 {
    margin-left: 16.66666%;
  }
  .off-tenth-1400 {
    margin-left: 10%;
  }
  .off-twelth-1400 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1500px) {
  .off-none-1500 {
    margin-left: 0;
  }
  .off-half-1500 {
    margin-left: 50%;
  }
  .off-third-1500 {
    margin-left: 33.33333%;
  }
  .off-two-third-1500 {
    margin-left: 66.66666%;
  }
  .off-fourth-1500 {
    margin-left: 25%;
  }
  .off-three-fourth-1500 {
    margin-left: 75%;
  }
  .off-fifth-1500 {
    margin-left: 20%;
  }
  .off-two-fifth-1500 {
    margin-left: 40%;
  }
  .off-three-fifth-1500 {
    margin-left: 60%;
  }
  .off-four-fifth-1500 {
    margin-left: 80%;
  }
  .off-sixth-1500 {
    margin-left: 16.66666%;
  }
  .off-tenth-1500 {
    margin-left: 10%;
  }
  .off-twelth-1500 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1600px) {
  .off-none-1600 {
    margin-left: 0;
  }
  .off-half-1600 {
    margin-left: 50%;
  }
  .off-third-1600 {
    margin-left: 33.33333%;
  }
  .off-two-third-1600 {
    margin-left: 66.66666%;
  }
  .off-fourth-1600 {
    margin-left: 25%;
  }
  .off-three-fourth-1600 {
    margin-left: 75%;
  }
  .off-fifth-1600 {
    margin-left: 20%;
  }
  .off-two-fifth-1600 {
    margin-left: 40%;
  }
  .off-three-fifth-1600 {
    margin-left: 60%;
  }
  .off-four-fifth-1600 {
    margin-left: 80%;
  }
  .off-sixth-1600 {
    margin-left: 16.66666%;
  }
  .off-tenth-1600 {
    margin-left: 10%;
  }
  .off-twelth-1600 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1700px) {
  .off-none-1700 {
    margin-left: 0;
  }
  .off-half-1700 {
    margin-left: 50%;
  }
  .off-third-1700 {
    margin-left: 33.33333%;
  }
  .off-two-third-1700 {
    margin-left: 66.66666%;
  }
  .off-fourth-1700 {
    margin-left: 25%;
  }
  .off-three-fourth-1700 {
    margin-left: 75%;
  }
  .off-fifth-1700 {
    margin-left: 20%;
  }
  .off-two-fifth-1700 {
    margin-left: 40%;
  }
  .off-three-fifth-1700 {
    margin-left: 60%;
  }
  .off-four-fifth-1700 {
    margin-left: 80%;
  }
  .off-sixth-1700 {
    margin-left: 16.66666%;
  }
  .off-tenth-1700 {
    margin-left: 10%;
  }
  .off-twelth-1700 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1800px) {
  .off-none-1800 {
    margin-left: 0;
  }
  .off-half-1800 {
    margin-left: 50%;
  }
  .off-third-1800 {
    margin-left: 33.33333%;
  }
  .off-two-third-1800 {
    margin-left: 66.66666%;
  }
  .off-fourth-1800 {
    margin-left: 25%;
  }
  .off-three-fourth-1800 {
    margin-left: 75%;
  }
  .off-fifth-1800 {
    margin-left: 20%;
  }
  .off-two-fifth-1800 {
    margin-left: 40%;
  }
  .off-three-fifth-1800 {
    margin-left: 60%;
  }
  .off-four-fifth-1800 {
    margin-left: 80%;
  }
  .off-sixth-1800 {
    margin-left: 16.66666%;
  }
  .off-tenth-1800 {
    margin-left: 10%;
  }
  .off-twelth-1800 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 1900px) {
  .off-none-1900 {
    margin-left: 0;
  }
  .off-half-1900 {
    margin-left: 50%;
  }
  .off-third-1900 {
    margin-left: 33.33333%;
  }
  .off-two-third-1900 {
    margin-left: 66.66666%;
  }
  .off-fourth-1900 {
    margin-left: 25%;
  }
  .off-three-fourth-1900 {
    margin-left: 75%;
  }
  .off-fifth-1900 {
    margin-left: 20%;
  }
  .off-two-fifth-1900 {
    margin-left: 40%;
  }
  .off-three-fifth-1900 {
    margin-left: 60%;
  }
  .off-four-fifth-1900 {
    margin-left: 80%;
  }
  .off-sixth-1900 {
    margin-left: 16.66666%;
  }
  .off-tenth-1900 {
    margin-left: 10%;
  }
  .off-twelth-1900 {
    margin-left: 8.3333333333%;
  }
}
@media all and (min-width: 2000px) {
  .off-none-2000 {
    margin-left: 0;
  }
  .off-half-2000 {
    margin-left: 50%;
  }
  .off-third-2000 {
    margin-left: 33.33333%;
  }
  .off-two-third-2000 {
    margin-left: 66.66666%;
  }
  .off-fourth-2000 {
    margin-left: 25%;
  }
  .off-three-fourth-2000 {
    margin-left: 75%;
  }
  .off-fifth-2000 {
    margin-left: 20%;
  }
  .off-two-fifth-2000 {
    margin-left: 40%;
  }
  .off-three-fifth-2000 {
    margin-left: 60%;
  }
  .off-four-fifth-2000 {
    margin-left: 80%;
  }
  .off-sixth-2000 {
    margin-left: 16.66666%;
  }
  .off-tenth-2000 {
    margin-left: 10%;
  }
  .off-twelth-2000 {
    margin-left: 8.3333333333%;
  }
}
p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

p.lead {
  font-size: var(--font-size-lead);
}

p.small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

h1 + *, h2 + *, p + *, * + .button, ul + *, ol + * {
  margin-top: var(--spacing);
}

h3 + *, h4 + *, h5 + *, h6 + * {
  margin-top: 0.5em;
}

ul,
ol {
  list-style: none;
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
  padding-left: 1em;
  color: var(--color-text-light);
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

li p {
  margin: 0;
}

ul.list {
  list-style: disc;
  padding-left: 1rem;
}
ul.list li {
  margin-bottom: 0.25em;
}

blockquote {
  padding-left: 1em;
  border-left: 4px solid var(--color-text-dark);
}

a {
  color: var(--color-text-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-text-hover);
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0;
  font-family: var(--display-family);
  line-height: var(--line-height-headings);
  font-weight: var(--font-weight-bold);
  color: var(--heading-color);
}

h1, .heading-1 {
  font-size: var(--font-size-h1);
  letter-spacing: -1px;
}

h2, .heading-2 {
  font-size: var(--font-size-h2);
  letter-spacing: -1px;
}

h3, .heading-3 {
  font-size: var(--font-size-h3);
  letter-spacing: -0.5px;
  font-weight: 500;
}

h4, .heading-4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
}

h5, .heading-5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
}

code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75em;
  font-style: normal;
  background-color: #f4f4f4;
  border-radius: 0.2rem;
  padding: 0.2rem;
}

pre {
  background-color: #f4f4f4;
  border-radius: 0.2rem;
  padding: 0.5rem;
  overflow: auto;
  width: calc(96vw - 2em);
  line-height: 1.3;
}

.tick-list {
  padding-left: 0;
}
.tick-list li {
  padding-left: 32px;
  margin-bottom: var(--spacing-xs);
  position: relative;
  text-align: left;
}
.tick-list li:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3e%3cg stroke='%23558E0A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' clip-path='url(%23a)'%3e%3cpath d='M12.833 6.463V7a5.833 5.833 0 1 1-3.459-5.332'/%3e%3cpath d='M12.833 2.333 7 8.173l-1.75-1.75'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h14v14H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") no-repeat center center;
  background-size: contain;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0;
}

figcaption p {
  font-size: var(--font-size-sm);
}

table,
.wp-block-table table {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
  background-color: #fff;
}
table thead,
table tfoot,
.wp-block-table table thead,
.wp-block-table table tfoot {
  background: var(--color-primary) !important;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
}
table thead td, table thead th,
table tfoot td,
table tfoot th,
.wp-block-table table thead td,
.wp-block-table table thead th,
.wp-block-table table tfoot td,
.wp-block-table table tfoot th {
  text-transform: uppercase;
  border: 0;
  font-size: var(--font-size-sm);
  background: var(--color-primary) !important;
  padding: var(--spacing) var(--spacing-l);
  text-align: left;
  color: #fff;
}
table tbody,
.wp-block-table table tbody {
  border: 1px solid #ccc;
}
table tr,
.wp-block-table table tr {
  background-color: #fff;
}
table tbody tr,
.wp-block-table table tbody tr {
  border-bottom: 1px solid #ccc;
}
table td,
.wp-block-table table td {
  border: 0 !important;
  text-align: left;
  font-size: var(--font-size-sm);
  color: var(--color-text-base);
  padding: var(--spacing) var(--spacing-l);
}

.wp-block-table.is-style-stripes table tr:nth-child(odd) {
  background-color: #f0f0f0;
}
.wp-block-table.is-style-stripes table tbody tr {
  border-bottom: 0;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  padding: 6px 10px;
  background-color: #fff;
  border: 2px solid #d9d9d9;
  border-radius: var(--border-radius);
  box-shadow: none;
  box-sizing: border-box;
  font-size: var(--font-size-sm);
  height: 40px;
}
@media (min-width: 50em) {
  input[type=email],
  input[type=number],
  input[type=search],
  input[type=text],
  input[type=tel],
  input[type=url],
  input[type=password],
  textarea,
  select {
    height: 45px;
  }
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--color-grey-dark);
  outline: 0;
}

label {
  display: block;
  margin: 0.5em 0;
  font-weight: 400;
  font-size: var(--font-size);
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

input[type=submit].center,
input[type=reset].center,
input[type=button].center {
  margin: 0 auto;
}

input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  background: var(--color-grey);
  text-decoration: none;
  color: #fff;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='13' fill='none' viewBox='0 0 45 13'%3E%3Cpath stroke='%23212121' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1.25 1.875 9.25 9.25 9.25-9.25'/%3E%3C/svg%3E") no-repeat 100% center;
}

.required {
  color: #BF5D58;
}

.input__label {
  display: flex;
}
.input__label span {
  background-color: #fff;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  padding-left: var(--spacing);
}
.input__label input[type=email],
.input__label input[type=number],
.input__label input[type=search],
.input__label input[type=text],
.input__label input[type=tel],
.input__label input[type=url],
.input__label input[type=password],
.input__label textarea,
.input__label select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ginput_container_consent {
  display: flex;
}
.ginput_container_consent .gfield_consent_label {
  margin-left: var(--spacing-xs);
  font-size: var(--font-size-sm);
}

.gform_wrapper.gravity-theme .chosen-container-multi {
  font-family: var(--display-family);
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
  border: 2px solid #d9d9d9 !important;
  border-radius: var(--border-radius);
}

.gform_wrapper.gravity-theme .chosen-container.chosen-with-drop .chosen-drop {
  margin-top: -5px;
  border: 2px solid #d9d9d9 !important;
  border-top: 0 !important;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.gform_validation_errors {
  font-size: var(--font-size-xs);
}

.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  border-radius: var(--border-radius);
}

.is-form-style {
  max-width: 550px;
}

.is-form-style input.is-search-input {
  padding: 6px 10px;
  background-color: #fff;
  border: 2px solid #d9d9d9;
  border-radius: var(--border-radius);
  box-shadow: none;
  box-sizing: border-box;
  font-size: var(--font-size-sm);
  height: 40px;
}
@media (min-width: 50em) {
  .is-form-style input.is-search-input {
    height: 45px;
  }
}

.is-form-style.is-form-style-3 label {
  width: 100% !important;
}

.is-form-style button.is-search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.is-search-icon {
  background-color: transparent;
  border: 0;
}
.is-search-icon:hover, .is-search-icon:focus {
  background-color: transparent;
}
.is-search-icon svg {
  width: 26px;
}

/* Generate block colours */
.has-white-color {
  color: #fff !important;
}

.has-white-background-color {
  background-color: #fff !important;
}

.has-black-color {
  color: #000 !important;
}

.has-black-background-color {
  background-color: #000 !important;
}

.has-primary-color {
  color: var(--color-primary) !important;
}

.has-primary-background-color {
  background-color: var(--color-primary) !important;
}

.has-secondary-color {
  color: var(--color-secondary) !important;
}

.has-secondary-background-color {
  background-color: var(--color-secondary) !important;
}

.has-tertiary-color {
  color: var(--color-tertiary) !important;
}

.has-tertiary-background-color {
  background-color: var(--color-tertiary) !important;
}

.has-quaternary-color {
  color: var(--color-quaternary) !important;
}

.has-quaternary-background-color {
  background-color: var(--color-quaternary) !important;
}

.has-quinary-color {
  color: var(--color-quinary) !important;
}

.has-quinary-background-color {
  background-color: var(--color-quinary) !important;
}

/* Stop links being clickable in the block editor */
.acf-block-preview a {
  pointer-events: none !important;
}

/* Add bullets to list */
.block-editor-block-list__block {
  list-style: disc;
}

/* Post title width */
.editor-post-title__block.wp-block {
  max-width: var(--content-width);
}

.edit-post-visual-editor__post-title-wrapper .editor-post-title {
  margin-bottom: var(--spacing-s);
}

/* Main column width */
.wp-block {
  max-width: var(--container-width-s);
  /* Wide column width */
}
.wp-block[data-align=wide], .wp-block[data-align=full] {
  max-width: none;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
  border-left: 0;
  padding-left: 0;
}

.wp-block-image {
  line-height: 0;
}

.wp-block-button.is-style-full,
.wp-block-button.is-style-full .block-editor-rich-text,
div[data-type="core/button"] div[data-block] {
  display: block;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100%;
}

figure.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0 !important;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  z-index: 99;
  text-align: left;
  overflow: visible;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 15px;
}

.wp-block-embed__wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.wp-block-pullquote {
  padding: 0;
}
.wp-block-pullquote blockquote {
  border: 0;
  padding-left: 0;
}
.wp-block-pullquote blockquote:before {
  content: "";
  width: 230px;
  height: 90px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 185.24 82.44'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23bcbfbf%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath d='M32.3 42.56A11 11 0 0 1 31 48a11.28 11.28 0 0 1-3.44 3.86A16.43 16.43 0 0 1 23 54.15a15.67 15.67 0 0 1-4.71.78 15.46 15.46 0 0 1-6.46-1.48 19.52 19.52 0 0 1-5.9-4.21 20.56 20.56 0 0 1-4.28-6.68A22.64 22.64 0 0 1 0 33.85 30 30 0 0 1 3.16 19.6a36.26 36.26 0 0 1 7.58-10 41.2 41.2 0 0 1 9.06-6.3A57.46 57.46 0 0 1 27.53 0v4.64c-1.88 1.13-3.86 2.34-6 3.65a30.68 30.68 0 0 0-5.76 4.64 25.9 25.9 0 0 0-4.35 6 15.94 15.94 0 0 0-1.76 7.65q0 3.94 1.62 5.2A4.76 4.76 0 0 0 13.77 33a10.81 10.81 0 0 0 3.65-.84 11.8 11.8 0 0 1 4.21-.84 9.69 9.69 0 0 1 3.72.77 11.15 11.15 0 0 1 3.44 2.24 12 12 0 0 1 2.53 3.52 10.59 10.59 0 0 1 .98 4.71Zm50.7.28a10.74 10.74 0 0 1-1.33 5.41 12.54 12.54 0 0 1-3.45 3.86 15.59 15.59 0 0 1-4.56 2.32 15.14 15.14 0 0 1-4.57.77 15.81 15.81 0 0 1-6.53-1.47 18.91 18.91 0 0 1-6-4.28 22.53 22.53 0 0 1-4.35-6.75 21.74 21.74 0 0 1-1.65-8.7 29.77 29.77 0 0 1 3.16-14.19 36.28 36.28 0 0 1 7.59-9.9 39.78 39.78 0 0 1 9.13-6.32 57.27 57.27 0 0 1 7.79-3.3v4.49q-2.81 1.68-6 3.65a30.54 30.54 0 0 0-5.75 4.64 23.92 23.92 0 0 0-4.29 6 16.73 16.73 0 0 0-1.68 7.58 11 11 0 0 0 .49 3.41 5.51 5.51 0 0 0 1 2 3.75 3.75 0 0 0 1.27 1 2.65 2.65 0 0 0 1 .28 10.43 10.43 0 0 0 3.79-.91 11.4 11.4 0 0 1 4.22-.91 9.76 9.76 0 0 1 3.72.77 10.94 10.94 0 0 1 3.44 2.25A11.74 11.74 0 0 1 82 38.07a11.27 11.27 0 0 1 1 4.77ZM134.4 48.45a30.17 30.17 0 0 1-3.16 14.26 36.24 36.24 0 0 1-7.59 10 38.82 38.82 0 0 1-9.06 6.24q-4.64 2.25-7.72 3.38v-4.66c1.87-1.13 3.86-2.34 6-3.66a30.87 30.87 0 0 0 5.76-4.63 25.9 25.9 0 0 0 4.35-6 16.05 16.05 0 0 0 1.75-7.65c0-2.71-.54-4.48-1.61-5.27a4.93 4.93 0 0 0-2.46-1.2 10.87 10.87 0 0 0-3.65.85 12.06 12.06 0 0 1-4.21.84 10 10 0 0 1-3.73-.77A11.66 11.66 0 0 1 105.6 48a10.84 10.84 0 0 1-2.53-3.51 11.27 11.27 0 0 1-1-4.77 10.81 10.81 0 0 1 1.34-5.55 11.51 11.51 0 0 1 3.44-3.79 16.16 16.16 0 0 1 4.56-2.25 14.87 14.87 0 0 1 11.17.7 19.65 19.65 0 0 1 5.9 4.21 20.9 20.9 0 0 1 4.28 6.6 22.53 22.53 0 0 1 1.64 8.81Zm50.84.28a29.65 29.65 0 0 1-3.16 14.19 36.25 36.25 0 0 1-7.58 9.9 40.31 40.31 0 0 1-9.13 6.32 57.84 57.84 0 0 1-7.8 3.3V78c1.87-1.13 3.87-2.37 6-3.72a36.9 36.9 0 0 0 5.83-4.64 22.06 22.06 0 0 0 4.36-6 16.74 16.74 0 0 0 1.65-7.64 9.49 9.49 0 0 0-.49-3.37 6.49 6.49 0 0 0-1.12-2 3.85 3.85 0 0 0-1.27-1 2.65 2.65 0 0 0-1.05-.28 10.47 10.47 0 0 0-3.8.91 11.15 11.15 0 0 1-4.21.91 9.69 9.69 0 0 1-3.72-.77 10.77 10.77 0 0 1-3.44-2.25 11.81 11.81 0 0 1-2.53-3.58 11.13 11.13 0 0 1-1-4.78 10.71 10.71 0 0 1 1.33-5.41 12.36 12.36 0 0 1 3.44-3.85 15.29 15.29 0 0 1 4.57-2.32 15.78 15.78 0 0 1 4.7-.78 16 16 0 0 1 6.55 1.57 18.48 18.48 0 0 1 5.9 4.21 22.65 22.65 0 0 1 4.29 6.67 22.34 22.34 0 0 1 1.68 8.85Z' class='cls-1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  margin-bottom: var(--spacing);
}
.wp-block-pullquote blockquote cite {
  font-style: normal;
  font-weight: 700;
  margin-top: var(--spacing-s);
  display: inline-block;
}

.cover__image {
  position: relative;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-text-base);
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .cover__image {
    margin-bottom: 0;
  }
}
.cover__image:after {
  content: "";
  padding-top: 66.6666666%;
  display: inline-block;
}
.cover__image--has-label {
  display: block;
}
.cover__image--has-label span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0 var(--spacing-s);
}
.cover__image--has-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius);
}
.cover__image--square:after {
  padding-top: 100%;
}
.cover__image--tall:after {
  padding-top: 110%;
}
.cover__image.placeholder {
  background-color: #fff;
  border: 1px solid var(--color-grey);
}
.cover__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.wp-block-image {
  position: relative;
  z-index: 1;
  margin-top: var(--spacing-l);
}
@media (min-width: 70em) {
  .wp-block-image {
    margin-top: 0;
  }
}

.wp-block-image + .wp-block-image {
  margin-top: var(--spacing);
}

.content > * {
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}
.content a {
  text-decoration: underline;
  text-decoration-color: var(--link-hover-color);
}
.content a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.content .btn, .content .newsletter form .gform_button, .newsletter form .content .gform_button, .content input[type=submit],
.content input[type=reset],
.content input[type=button] {
  text-decoration: none;
}
.content .btn:hover, .content .newsletter form .gform_button:hover, .newsletter form .content .gform_button:hover, .content input[type=submit]:hover,
.content input[type=reset]:hover,
.content input[type=button]:hover {
  color: #fff;
  text-decoration: none;
}
.content blockquote {
  max-width: none;
  font-size: var(--font-size-h4);
  color: var(--color-primary);
  line-height: 1.4;
  margin: var(--block-spacing) 0;
}
.content figure {
  max-width: none;
  margin: var(--spacing-xl) 0;
}
.content figcaption {
  padding: 1em 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-dark);
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}
.content ul {
  list-style: disc;
  padding-left: 1rem;
}
.content li {
  margin-bottom: 0.25em;
}
.content p {
  line-height: var(--line-height-l);
}

.icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  width: 20px;
  height: 20px;
}

.icon--small {
  width: 16px;
  height: 16px;
}

.icon--small svg {
  width: 16px;
  height: 16px;
}

.icon--medium {
  width: 26px;
  height: 26px;
}

.icon--large {
  width: 32px;
  height: 32px;
}

.icon--xlarge {
  width: 40px;
  height: 40px;
}

.icon--scale {
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.icon--offset {
  margin-right: 5px;
}

.btn, .newsletter form .gform_button, input[type=submit],
input[type=reset],
input[type=button], .gform_button {
  display: inline-block;
  border-radius: var(--border-radius);
  padding: 0.6rem 1rem;
  border: 2px solid var(--color-grey-dark);
  color: var(--color-grey-dark);
  font-family: var(--display-family);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn:before, .newsletter form .gform_button:before, input[type=submit]:before,
input[type=reset]:before,
input[type=button]:before, .gform_button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transform: translateX(-120%);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s;
}
.btn:hover, .newsletter form .gform_button:hover, input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover, .btn:focus, .newsletter form .gform_button:focus, input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus, .gform_button:hover, .gform_button:focus {
  border-color: var(--color-primary);
  outline: 0;
  color: #fff;
  text-decoration: none;
}
.btn:hover:before, input[type=submit]:hover:before,
input[type=reset]:hover:before,
input[type=button]:hover:before, .btn:focus:before, input[type=submit]:focus:before,
input[type=reset]:focus:before,
input[type=button]:focus:before, .gform_button:hover:before, .gform_button:focus:before {
  transform: translateX(0px);
}

.btn--primary, input[type=submit] {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-reversed);
}
.btn--primary:hover, .btn--primary:focus, input[type=submit]:hover, input[type=submit]:focus {
  border-color: var(--color-primary);
  opacity: 0.5;
  color: #fff;
}

.btn--secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-text-reversed);
}
.btn--secondary:hover, .btn--secondary:focus {
  border-color: var(--color-secondary);
  color: #fff;
}

.btn--ghost {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn--ghost:hover, .btn--ghost:focus {
  border-color: var(--color-primary);
  color: #fff;
}

.btn--ghost-white, .newsletter form .gform_button, input[type=submit].btn--ghost-white {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn--ghost-white:before, .newsletter form .gform_button:before, input[type=submit].btn--ghost-white:before {
  background-color: #fff;
  border-color: #fff;
}
.btn--ghost-white:hover, .newsletter form .gform_button:hover, .btn--ghost-white:focus, .newsletter form .gform_button:focus, input[type=submit].btn--ghost-white:hover, input[type=submit].btn--ghost-white:focus {
  border-color: #fff;
  color: var(--color-primary);
}

input[type=submit].btn--ghost-white:hover, .newsletter form input[type=submit].gform_button:hover, input[type=submit].btn--ghost-white:focus, .newsletter form input[type=submit].gform_button:focus {
  background-color: #fff;
  color: var(--color-primary);
}

.btn--white {
  background-color: #fff;
  border: 0;
  color: var(--color-text-dark);
}
.btn--white:hover, .btn--white:focus {
  border-color: var(--color-primary);
  color: #fff;
}

.btn--sm {
  font-size: var(--font-size-xs);
  height: 38px;
  line-height: 38px;
  padding: 0 1.15rem;
}
.btn--sm .icon {
  width: 18px;
  height: 18px;
  margin-right: 0.2em;
  margin-left: -3px;
  margin-top: -2px;
}

.btn--block {
  width: 100%;
  display: block;
  justify-content: center;
}

.btn--arrow, .newsletter form .gform_button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn--arrow::after, .newsletter form .gform_button::after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 14'%3E%3Cpath stroke='%233F8B93' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.375 12.25 6.625 7l-5.25-5.25'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  position: relative;
  right: 0;
  margin-bottom: 1px;
  transition: all 0.3s ease-in-out 0s;
}
.btn--arrow:hover::after, .newsletter form .gform_button:hover::after, .btn--arrow:focus::after, .newsletter form .gform_button:focus::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 14'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.375 12.25 6.625 7l-5.25-5.25'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  right: -3px;
}

.btn--ghost-white.btn--arrow::after, .newsletter form .gform_button::after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 14'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.375 12.25 6.625 7l-5.25-5.25'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}
.btn--ghost-white.btn--arrow:hover::after, .newsletter form .gform_button:hover::after, .btn--ghost-white.btn--arrow:focus::after, .newsletter form .gform_button:focus::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 14'%3E%3Cpath stroke='%233F8B93' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.375 12.25 6.625 7l-5.25-5.25'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

.btn--download {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.btn--download::after {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cg stroke='%233F8B93' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' clip-path='url(%23a)'%3E%3Cpath d='M19 13v4a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4M5 8l5 5 5-5M10 13V1'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  margin-left: 10px;
  transition: all 0.3s ease-in-out 0s;
}
.btn--download:hover::after, .btn--download:focus::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cg stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' clip-path='url(%23a)'%3E%3Cpath d='M19 13v4a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4M5 8l5 5 5-5M10 13V1'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

.social-links {
  display: flex;
  align-items: center;
  padding: 0;
}

.social-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links__item.youtube {
  margin-right: 3px;
}

.social-links__link {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.25s all ease-in-out;
}
.social-links__link .icon {
  width: 36px;
  height: 36px;
}
.social-links__link:hover, .social-links__link:focus {
  color: #fff;
  opacity: 0.75;
}

.card {
  background: #FFFFFF;
  box-shadow: 0px 36px 80px rgba(0, 0, 0, 0.05), 0px 23.3333px 46.8519px rgba(0, 0, 0, 0.037963), 0px 13.8667px 25.4815px rgba(0, 0, 0, 0.0303704), 0px 7.2px 13px rgba(0, 0, 0, 0.025), 0px 2.93333px 6.51852px rgba(0, 0, 0, 0.0196296), 0px 0.666667px 3.14815px rgba(0, 0, 0, 0.012037);
  border-radius: 3px;
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .card {
    padding: var(--spacing-l) var(--spacing-l);
  }
}
.card__title {
  margin-bottom: var(--spacing-s);
}
.card p {
  color: var(--color-text-light);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fdfdfd;
  border-radius: 14px;
  padding: var(--spacing-xl) var(--spacing);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% - 30px);
}
@media (min-width: 50em) {
  .modal {
    padding: var(--spacing-l) var(--spacing-xxl);
    width: auto;
    min-width: 700px;
  }
}
.modal__close {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  right: 15px;
  top: 15px;
}
@media (min-width: 50em) {
  .modal__close {
    right: 20px;
    top: 20px;
  }
}
.modal__close:hover, .modal__close:focus {
  opacity: 0.5;
}
.modal.is-active {
  opacity: 1;
  z-index: 9999999;
  visibility: visible;
}
.modal p a, .modal .btn, .modal .newsletter form .gform_button, .newsletter form .modal .gform_button, .modal input[type=submit],
.modal input[type=reset],
.modal input[type=button] {
  transition: none;
}
.modal.sm {
  min-width: 400px;
  padding: var(--spacing-xl) var(--spacing);
}
@media (min-width: 50em) {
  .modal.sm {
    padding: var(--spacing-l) var(--spacing-xl);
  }
}
.modal.sm .tmp-select {
  min-width: 200px;
}
.modal.center {
  text-align: center;
}
.modal.full {
  top: 0;
  left: -5%;
  transform: translate(0);
  height: 100%;
  border-radius: 0;
  width: 90vw;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: scroll;
}
@media (min-width: 50em) {
  .modal.full {
    width: 66.666vw;
  }
}
.modal.full.is-active {
  left: 0;
}
.modal.scrollable {
  padding: 0;
  overflow: hidden;
}
.modal.scrollable .modal-content {
  border-radius: 14px;
  overflow-y: auto;
  max-height: calc(95vh - 1.5625rem);
  padding: var(--spacing-xl) var(--spacing);
}
@media (min-width: 50em) {
  .modal.scrollable .modal-content {
    max-height: calc(95vh - 2.5rem);
    padding: var(--spacing-l) var(--spacing-xl);
  }
}
.modal.scrollable .modal__close {
  right: 25px;
  top: 15px;
}
@media (min-width: 50em) {
  .modal.scrollable .modal__close {
    right: 30px;
    top: 20px;
  }
}

.busy-link {
  padding-left: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='lds-rolling' preserveAspectRatio='xMidYMid' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%230000f0' stroke-dasharray='164.93361431346415 56.97787143782138' stroke-width='10' transform='rotate(281.11 50 50)'%3E%3CanimateTransform attributeName='transform' begin='0s' calcMode='linear' dur='1s' keyTimes='0;1' repeatCount='indefinite' type='rotate' values='0 50 50;360 50 50'/%3E%3C/circle%3E%3C/svg%3E") no-repeat 0 center;
}
.busy-link:hover, .busy-link:focus {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='lds-rolling' preserveAspectRatio='xMidYMid' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%230000f0' stroke-dasharray='164.93361431346415 56.97787143782138' stroke-width='10' transform='rotate(281.11 50 50)'%3E%3CanimateTransform attributeName='transform' begin='0s' calcMode='linear' dur='1s' keyTimes='0;1' repeatCount='indefinite' type='rotate' values='0 50 50;360 50 50'/%3E%3C/circle%3E%3C/svg%3E") no-repeat 0 center;
}

.busy-select {
  padding-right: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='lds-rolling' preserveAspectRatio='xMidYMid' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%230000f0' stroke-dasharray='164.93361431346415 56.97787143782138' stroke-width='10' transform='rotate(281.11 50 50)'%3E%3CanimateTransform attributeName='transform' begin='0s' calcMode='linear' dur='1s' keyTimes='0;1' repeatCount='indefinite' type='rotate' values='0 50 50;360 50 50'/%3E%3C/circle%3E%3C/svg%3E") no-repeat 100% center;
  background-size: 24px;
}
.busy-select:hover, .busy-select:focus {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='lds-rolling' preserveAspectRatio='xMidYMid' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%230000f0' stroke-dasharray='164.93361431346415 56.97787143782138' stroke-width='10' transform='rotate(281.11 50 50)'%3E%3CanimateTransform attributeName='transform' begin='0s' calcMode='linear' dur='1s' keyTimes='0;1' repeatCount='indefinite' type='rotate' values='0 50 50;360 50 50'/%3E%3C/circle%3E%3C/svg%3E") no-repeat 100% center;
  background-size: 24px;
}

body.modal-open:after {
  opacity: 1;
  z-index: 9998;
}

.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 50em) {
  .pagination {
    margin-bottom: 0;
  }
}
.pagination a {
  color: var(--color-text-light);
  margin: 0 8px;
}
.pagination .prev, .pagination .next {
  display: flex;
  align-items: center;
}
.pagination .prev {
  margin-right: var(--spacing);
}
.pagination .next {
  margin-left: var(--spacing);
}
.pagination .current {
  color: var(--color-text-base);
  background-color: var(--color-tertiary);
  padding: 3px 0;
  width: 34px;
  margin: 0 4px;
  text-align: center;
  border-radius: var(--border-radius);
}

[data-animate=fade] {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
[data-animate=fade].is-inview {
  opacity: 1;
  transform: translateY(0);
  z-index: 99;
  position: relative;
}
[data-animate=fade] .cell:nth-child(1) {
  transition-delay: 0.3s;
}
[data-animate=fade] .cell:nth-child(2) {
  transition-delay: 0.6s;
}
[data-animate=fade] .cell:nth-child(3) {
  transition-delay: 0.9s;
}
[data-animate=fade] .cell:nth-child(4) {
  transition-delay: 1.2s;
}
[data-animate=fade] .cell:nth-child(5) {
  transition-delay: 1.5s;
}
[data-animate=fade] .cell:nth-child(6) {
  transition-delay: 1.8s;
}
[data-animate=fade] .cell:nth-child(7) {
  transition-delay: 2.1s;
}
[data-animate=fade] .cell:nth-child(8) {
  transition-delay: 2.4s;
}
[data-animate=fade] .cell:nth-child(9) {
  transition-delay: 2.7s;
}
[data-animate=fade] .cell:nth-child(10) {
  transition-delay: 3s;
}
[data-animate=fade] .cell:nth-child(11) {
  transition-delay: 3.3s;
}
[data-animate=fade] .cell:nth-child(12) {
  transition-delay: 3.6s;
}
[data-animate=fade] .cell:nth-child(13) {
  transition-delay: 3.9s;
}
[data-animate=fade] .cell:nth-child(14) {
  transition-delay: 4.2s;
}
[data-animate=fade] .cell:nth-child(15) {
  transition-delay: 4.5s;
}
[data-animate=fade] .cell:nth-child(16) {
  transition-delay: 4.8s;
}
[data-animate=fade] .cell:nth-child(17) {
  transition-delay: 5.1s;
}
[data-animate=fade] .cell:nth-child(18) {
  transition-delay: 5.4s;
}
[data-animate=fade] .cell:nth-child(19) {
  transition-delay: 5.7s;
}
[data-animate=fade].x1 .cell {
  transition-delay: 0.2s;
}
[data-animate=fade].x2 .cell {
  transition-delay: 0.4s;
}
[data-animate=fade].x3 .cell {
  transition-delay: 0.6s;
}
[data-animate=fade].x4 .cell {
  transition-delay: 0.8s;
}
[data-animate=fade].x5 .cell {
  transition-delay: 1s;
}

.global-container {
  min-height: 100%;
}

.container, .site-footer__lower, .site-footer__upper, .site-header__inner, .container-xs, .newsletter__inner, .container-s {
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-width);
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 1470px) {
  .container, .site-footer__lower, .site-footer__upper, .site-header__inner, .container-xs, .newsletter__inner, .container-s {
    padding-right: 0;
    padding-left: 0;
  }
}

.container-s {
  max-width: var(--container-width-s);
}

.container-xs, .newsletter__inner {
  max-width: var(--container-width-xs);
}

.container .articles__wrap .container, .site-footer__lower .articles__wrap .container, .container .articles__wrap .site-footer__lower, .site-footer__lower .articles__wrap .site-footer__lower, .site-footer__upper .articles__wrap .container, .site-footer__upper .articles__wrap .site-footer__lower, .container .articles__wrap .site-footer__upper, .site-footer__lower .articles__wrap .site-footer__upper, .site-footer__upper .articles__wrap .site-footer__upper, .site-header__inner .articles__wrap .container, .site-header__inner .articles__wrap .site-footer__lower, .site-header__inner .articles__wrap .site-footer__upper, .container .articles__wrap .site-header__inner, .site-footer__lower .articles__wrap .site-header__inner, .site-footer__upper .articles__wrap .site-header__inner, .site-header__inner .articles__wrap .site-header__inner, .container-s .articles__wrap .container, .container-s .articles__wrap .site-footer__lower, .container-s .articles__wrap .site-footer__upper, .container-s .articles__wrap .site-header__inner, .container-xs .articles__wrap .container, .newsletter__inner .articles__wrap .container, .container-xs .articles__wrap .site-footer__lower, .newsletter__inner .articles__wrap .site-footer__lower, .container-xs .articles__wrap .site-footer__upper, .newsletter__inner .articles__wrap .site-footer__upper, .container-xs .articles__wrap .site-header__inner, .newsletter__inner .articles__wrap .site-header__inner, .container .articles__wrap .container-s, .site-footer__lower .articles__wrap .container-s, .site-footer__upper .articles__wrap .container-s, .site-header__inner .articles__wrap .container-s, .container-s .articles__wrap .container-s, .container-xs .articles__wrap .container-s, .newsletter__inner .articles__wrap .container-s, .container .articles__wrap .container-xs, .container .articles__wrap .newsletter__inner, .site-footer__lower .articles__wrap .container-xs, .site-footer__lower .articles__wrap .newsletter__inner, .site-footer__upper .articles__wrap .container-xs, .site-footer__upper .articles__wrap .newsletter__inner, .site-header__inner .articles__wrap .container-xs, .site-header__inner .articles__wrap .newsletter__inner, .container-s .articles__wrap .container-xs, .container-s .articles__wrap .newsletter__inner, .container-xs .articles__wrap .container-xs, .newsletter__inner .articles__wrap .container-xs, .container-xs .articles__wrap .newsletter__inner, .newsletter__inner .articles__wrap .newsletter__inner {
  padding: 0;
}
.container .articles__wrap .container > .acf-innerblocks-container, .site-footer__lower .articles__wrap .container > .acf-innerblocks-container, .container .articles__wrap .site-footer__lower > .acf-innerblocks-container, .site-footer__lower .articles__wrap .site-footer__lower > .acf-innerblocks-container, .site-footer__upper .articles__wrap .container > .acf-innerblocks-container, .site-footer__upper .articles__wrap .site-footer__lower > .acf-innerblocks-container, .container .articles__wrap .site-footer__upper > .acf-innerblocks-container, .site-footer__lower .articles__wrap .site-footer__upper > .acf-innerblocks-container, .site-footer__upper .articles__wrap .site-footer__upper > .acf-innerblocks-container, .site-header__inner .articles__wrap .container > .acf-innerblocks-container, .site-header__inner .articles__wrap .site-footer__lower > .acf-innerblocks-container, .site-header__inner .articles__wrap .site-footer__upper > .acf-innerblocks-container, .container .articles__wrap .site-header__inner > .acf-innerblocks-container, .site-footer__lower .articles__wrap .site-header__inner > .acf-innerblocks-container, .site-footer__upper .articles__wrap .site-header__inner > .acf-innerblocks-container, .site-header__inner .articles__wrap .site-header__inner > .acf-innerblocks-container, .container-s .articles__wrap .container > .acf-innerblocks-container, .container-s .articles__wrap .site-footer__lower > .acf-innerblocks-container, .container-s .articles__wrap .site-footer__upper > .acf-innerblocks-container, .container-s .articles__wrap .site-header__inner > .acf-innerblocks-container, .container-xs .articles__wrap .container > .acf-innerblocks-container, .newsletter__inner .articles__wrap .container > .acf-innerblocks-container, .container-xs .articles__wrap .site-footer__lower > .acf-innerblocks-container, .newsletter__inner .articles__wrap .site-footer__lower > .acf-innerblocks-container, .container-xs .articles__wrap .site-footer__upper > .acf-innerblocks-container, .newsletter__inner .articles__wrap .site-footer__upper > .acf-innerblocks-container, .container-xs .articles__wrap .site-header__inner > .acf-innerblocks-container, .newsletter__inner .articles__wrap .site-header__inner > .acf-innerblocks-container, .container .articles__wrap .container-s > .acf-innerblocks-container, .site-footer__lower .articles__wrap .container-s > .acf-innerblocks-container, .site-footer__upper .articles__wrap .container-s > .acf-innerblocks-container, .site-header__inner .articles__wrap .container-s > .acf-innerblocks-container, .container-s .articles__wrap .container-s > .acf-innerblocks-container, .container-xs .articles__wrap .container-s > .acf-innerblocks-container, .newsletter__inner .articles__wrap .container-s > .acf-innerblocks-container, .container .articles__wrap .container-xs > .acf-innerblocks-container, .container .articles__wrap .newsletter__inner > .acf-innerblocks-container, .site-footer__lower .articles__wrap .container-xs > .acf-innerblocks-container, .site-footer__lower .articles__wrap .newsletter__inner > .acf-innerblocks-container, .site-footer__upper .articles__wrap .container-xs > .acf-innerblocks-container, .site-footer__upper .articles__wrap .newsletter__inner > .acf-innerblocks-container, .site-header__inner .articles__wrap .container-xs > .acf-innerblocks-container, .site-header__inner .articles__wrap .newsletter__inner > .acf-innerblocks-container, .container-s .articles__wrap .container-xs > .acf-innerblocks-container, .container-s .articles__wrap .newsletter__inner > .acf-innerblocks-container, .container-xs .articles__wrap .container-xs > .acf-innerblocks-container, .newsletter__inner .articles__wrap .container-xs > .acf-innerblocks-container, .container-xs .articles__wrap .newsletter__inner > .acf-innerblocks-container, .newsletter__inner .articles__wrap .newsletter__inner > .acf-innerblocks-container {
  margin-top: 0;
}

.centered {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  text-align: center;
}
@media (min-width: 70em) {
  .centered p {
    max-width: 85%;
    margin-right: auto;
    margin-left: auto;
  }
}

section {
  margin-top: var(--block-spacing);
  margin-bottom: var(--block-spacing);
}
section.panel {
  margin: 0;
  padding-top: var(--block-spacing);
  padding-bottom: var(--block-spacing);
}
section.sm {
  margin-top: var(--spacing-l);
  margin-bottom: var(--spacing-l);
}
@media (min-width: 50em) {
  section.sm {
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
  }
}
section.primary {
  background-color: var(--color-primary);
}
section.secondary {
  background-color: var(--color-secondary);
}
section.tertiary {
  background-color: var(--color-tertiary);
}
section.grey {
  background-color: var(--color-grey-light);
}

@media (min-width: 50em) {
  .sidebar-layout {
    display: grid;
    grid-template-columns: 2.25fr 1fr;
    grid-gap: var(--grid-gap);
  }
}
@media (min-width: 70em) {
  .sidebar-layout {
    grid-gap: var(--grid-gap-l);
  }
}

.sidebar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: var(--spacing-l) var(--spacing);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing);
  background: var(--color-tertiary);
}
@media (min-width: 50em) {
  .sidebar {
    padding: var(--spacing-l) var(--spacing);
  }
}
@media (min-width: 70em) {
  .sidebar {
    padding: var(--spacing-l) var(--spacing-xl);
  }
}
.sidebar h4 {
  color: var(--color-primary);
}
.sidebar .business-search-form {
  margin: var(--spacing) 0 var(--spacing-l) 0;
}
.sidebar .business-search-form .input__label span {
  width: 70px;
  flex-shrink: 0;
}
.sidebar .partner__img {
  max-width: 80%;
}
@media (min-width: 70em) {
  .sidebar .partner__img {
    max-width: 80%;
  }
}

@media (min-width: 70em) {
  .archive-intro p {
    max-width: 75%;
  }
}

.global-alert {
  background: var(--color-primary);
  text-align: center;
  padding: 0.5rem;
}

.global-alert p {
  color: white;
  margin: 0;
  font-size: var(--font-size-sm);
}

.cookie-alert {
  display: none;
  background: var(--color-secondary);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.cookie-alert.is-visible {
  display: block;
}

.cookie-alert__inner {
  padding: var(--spacing-s) var(--spacing-l);
}
@media (min-width: 50em) {
  .cookie-alert__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-alert__inner p {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: var(--font-size-sm);
}

.cookie-alert__btn {
  cursor: pointer;
}

.unsupported-browser {
  display: none;
  background: var(--color-grey);
  text-align: center;
}

.unsupported-browser__inner {
  padding: var(--spacing);
}

.unsupported-browser h2 {
  font-size: var(--font-size-h4);
  margin: 0;
}

.unsupported-browser p {
  margin: 0;
}

.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.site-header.has-alert {
  top: 43px;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .site-header.has-alert {
  top: 75px;
}

.site-header__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.site-header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__main .btn, .site-header__main .newsletter form .gform_button, .newsletter form .site-header__main .gform_button, .site-header__main input[type=submit],
.site-header__main input[type=reset],
.site-header__main input[type=button] {
  display: none;
}
@media (min-width: 60em) {
  .site-header__main .btn, .site-header__main .newsletter form .gform_button, .newsletter form .site-header__main .gform_button, .site-header__main input[type=submit],
  .site-header__main input[type=reset],
  .site-header__main input[type=button] {
    display: block;
  }
}

.site-header__logo {
  font-size: 2rem;
  margin: 0 var(--spacing) 0 0;
}
@media (min-width: 50em) {
  .site-header__logo {
    margin: 0;
  }
}

.site-header__nav {
  display: none;
}
@media (min-width: 60em) {
  .site-header__nav {
    display: block;
  }
}
.site-header__nav .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}
.site-header__nav .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
  margin: 0 var(--spacing-s);
}
@media (min-width: 70em) {
  .site-header__nav .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
    margin: 0 var(--spacing);
  }
}
.site-header__nav .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) > a {
  font-family: var(--display-family);
  font-weight: 400;
  color: #fff;
  font-size: var(--font-size);
  letter-spacing: -0.5px;
}
.site-header__nav .menu .current-menu-item a {
  color: #fff;
  opacity: 0.75;
}
.site-header__nav .menu-item-has-children {
  position: relative;
}
.site-header__nav .menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
.site-header__nav .menu-item-has-children > a:after {
  content: "";
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' fill='none' viewBox='0 0 9 5'%3e%3cpath fill='%23231F20' d='m4.5 5 .382-.34L9 .943 8.235 0 4.5 3.375.765 0 0 .944 4.118 4.66 4.5 5Z'/%3e%3c/svg%3e") no-repeat center center;
  background-size: contain;
  width: 10px;
  height: 6px;
  position: absolute;
  right: 0;
  top: 65%;
  transform: translateY(-65%);
  z-index: 2;
  transition: 0.2s all ease-in-out;
}
.site-header__nav .menu-item-has-children:hover a:after {
  transform: translateY(-50%) rotate(180deg);
}
.site-header__nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  z-index: 1;
  top: 85%;
}
.site-header__nav .sub-menu {
  position: absolute;
  width: 100%;
  top: 75%;
  left: 0;
  opacity: 0;
  z-index: -1;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  box-shadow: 0px 74px 30px rgba(0, 0, 0, 0.01), 0px 42px 25px rgba(0, 0, 0, 0.05), 0px 19px 19px rgba(0, 0, 0, 0.09), 0px 5px 10px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-xs) 0;
  margin-top: var(--spacing-s);
  min-width: 185px;
  justify-content: flex-start;
  border-radius: 4px;
  transition: 0.25s all ease-in-out;
}
.site-header__nav .sub-menu li {
  padding: 0.2rem var(--spacing);
  border-bottom: 1px solid var(--color-grey);
}
.site-header__nav .sub-menu li a {
  font-size: 16px;
  font-family: var(--display-family);
  font-weight: 400;
  color: var(--color-text-base);
}
.site-header__nav .sub-menu li:last-child {
  border-bottom: 0;
}

.site-header__menu-btn {
  background: black;
  color: white;
  border: 0;
}
@media (min-width: 60em) {
  .site-header__menu-btn {
    display: none;
  }
}

.site-footer {
  margin-top: auto;
  background-color: var(--color-black);
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 1470px) {
  .site-footer {
    padding-right: 0;
    padding-left: 0;
  }
}

.site-footer__upper {
  padding: var(--spacing-l) 0 var(--spacing-xl);
  display: flex;
  flex-flow: column wrap;
  gap: 1rem;
}
@media (min-width: 50em) {
  .site-footer__upper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
  }
}
@media (min-width: 70em) {
  .site-footer__upper {
    gap: var(--grid-gap-sm);
    grid-template-columns: 0.9fr 0.8fr 0.9fr 1fr;
  }
}
.site-footer__upper a {
  color: #fff;
  margin-top: 0;
}
.site-footer__upper p {
  color: #fff;
}
@media (min-width: 50em) {
  .site-footer__upper p {
    margin-right: var(--spacing-xxl);
  }
}

.site-footer p {
  margin-top: 0;
  font-size: var(--font-size-sm);
}

.site-footer__supporters {
  margin-top: 0;
  display: flex;
  flex-flow: row wrap;
}
@media (min-width: 50em) {
  .site-footer__supporters {
    justify-content: flex-end;
  }
}
.site-footer__supporters .social-links {
  display: flex;
  margin-top: var(--spacing-l);
  margin-bottom: 0;
}

.site-footer__menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  gap: 5px;
}
.site-footer__menu ul li a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
@media (min-width: 50em) {
  .site-footer__menu ul li a {
    font-size: var(--font-size-sm);
  }
}

.site-footer__lower {
  padding: var(--spacing) 0 var(--spacing-l) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 50em) {
  .site-footer__lower {
    display: flex;
    justify-content: space-between;
  }
}
.site-footer__lower p {
  font-size: var(--font-size-xs);
  color: #fff;
  margin: 0;
}

.articles__wrap {
  background: #FFFFFF;
  box-shadow: 0px 36px 80px rgba(0, 0, 0, 0.05), 0px 23.3333px 46.8519px rgba(0, 0, 0, 0.037963), 0px 13.8667px 25.4815px rgba(0, 0, 0, 0.0303704), 0px 7.2px 13px rgba(0, 0, 0, 0.025), 0px 2.93333px 6.51852px rgba(0, 0, 0, 0.0196296), 0px 0.666667px 3.14815px rgba(0, 0, 0, 0.012037);
  border-radius: 3px;
  position: relative;
  z-index: 1;
  padding: var(--spacing-l) var(--spacing) var(--spacing-l) var(--spacing);
  margin-top: -30px;
}
@media (min-width: 50em) {
  .articles__wrap {
    margin-top: -30px;
    padding: var(--spacing-xl) var(--spacing-xxl) var(--spacing-xxl) var(--spacing-xxl);
  }
}

.articles__grid--post {
  display: block;
  position: relative;
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .articles__grid--post {
    margin-bottom: 0;
  }
}
.articles__grid--post .article__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  margin-bottom: var(--spacing);
  border-bottom: 4px solid var(--color-primary);
}
.articles__grid--post .article__image img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles__grid--post .article__image.placeholder {
  background: var(--color-primary);
  aspect-ratio: 4/3;
}
.articles__grid--post .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.articles__grid--post h4 {
  color: var(--color-black);
  margin-top: var(--spacing-xs);
}
.articles__grid--post p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.articles__grid--post .article__date, .articles__grid--post .article__author {
  color: var(--color-primary);
}
.articles__grid--post time {
  margin-bottom: var(--spacing-xs);
  display: inline-block;
}
.articles__grid--post time + h4 {
  margin-top: 0;
}
.articles__grid--post .article__categories {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: var(--spacing-xs);
  display: flex;
  gap: 5px;
}
.articles__grid--post .article__categories svg {
  width: 13px;
  margin-right: 3px;
}
.articles__grid--post .article__categories span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.articles__grid--post .article__categories span:after {
  content: ",";
}
.articles__grid--post .article__categories span:last-child:after {
  content: "";
}
.articles__grid--post .article__read-more {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: var(--font-size-sm);
}
.articles__grid--post:hover, .articles__grid--post:focus {
  text-decoration: none;
}

.articles__grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 50em) {
  .articles__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 70em) {
  .articles__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.go-back {
  font-family: var(--display-family);
  color: var(--color-primary);
  margin-bottom: var(--spacing-l);
}
@media (min-width: 50em) {
  .go-back {
    margin-bottom: 0;
  }
}
.go-back::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  color: var(--color-primary);
  background: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8308 0L9.85884 1.972L17.3238 9.437H0.98584V12.254H17.3238L9.85884 19.718L11.8308 21.69L22.6748 10.845L11.8308 0Z' fill='currentColor'/%3E%3C/svg%3E%0A") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  transform: rotate(180deg);
}

.newsletter {
  background: var(--color-primary) url("../images/newsletter-bg.svg") no-repeat center;
  background-size: cover;
  padding-top: var(--spacing-l);
  padding-bottom: var(--spacing-l);
  text-align: center;
}
@media (min-width: 50em) {
  .newsletter {
    text-align: left;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
@media (min-width: 50em) {
  .newsletter__inner {
    display: flex;
    align-items: center;
    gap: var(--grid-gap-l);
  }
}
.newsletter h4, .newsletter p {
  color: #fff;
}
.newsletter h4 {
  font-weight: 700;
}
.newsletter .gform_heading {
  display: none;
}
.newsletter .gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 10px;
}
.newsletter .gform_wrapper.gravity-theme .gfield_validation_message, .newsletter .gform_wrapper.gravity-theme .validation_message {
  padding: 12px 12px;
}
.newsletter form {
  display: flex;
  gap: 10px;
  text-align: left;
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  .newsletter form {
    margin-top: 0;
  }
}
.newsletter form input[type=email] {
  min-width: 250px;
}
.newsletter form label {
  color: #fff;
  margin-top: 0;
}
.newsletter form .gform_fields {
  display: block !important;
}
.newsletter form .gform_footer {
  margin: 35px 0 0 0 !important;
  padding: 0 !important;
  align-self: flex-start;
}
.newsletter form .gform_button {
  margin-bottom: 0 !important;
}

.latest-news {
  background-color: var(--color-black);
  padding-top: calc(var(--block-spacing) * 2.5);
  padding-bottom: var(--block-spacing);
  margin: 0;
}
.latest-news__title {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 50em) {
  .latest-news__title {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.latest-news__title h1 {
  color: #fff;
}
.latest-news .articles__grid--post .article__image {
  margin-bottom: 0;
}
.latest-news .articles__grid--post .article__image img {
  aspect-ratio: 3/2;
}
.latest-news .articles__grid--post .article__content {
  padding: var(--spacing);
  background-color: #fff;
}
.latest-news .articles__grid--post .article__content h4 {
  margin-top: 0;
}

.resources__title {
  border-bottom: 2px solid var(--color-secondary);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-s);
}
@media (min-width: 50em) {
  .resources__title {
    margin-bottom: var(--spacing-xl);
  }
}
.resources__title .tags {
  margin-bottom: var(--spacing-s);
}

body.nav-open {
  overflow: hidden;
}
body.nav-open:after {
  opacity: 1;
  z-index: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: var(--color-primary) url("../images/mobile-menu-bg.svg") no-repeat center;
  background-size: cover;
  transform: translate3d(-100%, 0, 0);
  transition: all 0.5s ease;
  opacity: 0;
  padding: 100px 1rem 1.5rem;
}
@media (min-width: 60em) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .menu {
  padding: 0;
  margin: var(--spacing-l) 0 0 0;
}
.mobile-menu .menu li {
  margin: var(--spacing) 0;
}
.mobile-menu .menu li a {
  font-size: var(--font-size-h3);
  color: #fff;
  font-weight: 700;
}

.mobile-menu.is-toggled {
  transform: translateZ(0);
  opacity: 1;
}

body.admin-bar .mobile-menu {
  top: 46px;
}

#hamburger {
  width: 45px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  cursor: pointer;
}
@media (min-width: 60em) {
  #hamburger {
    display: none;
  }
}
#hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#hamburger.is-toggled span {
  background: #fff;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2), #hamburger span:nth-child(3) {
  top: 13px;
}

#hamburger span:nth-child(4) {
  top: 26px;
}

#hamburger.is-toggled span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}

#hamburger.is-toggled span:nth-child(2) {
  transform: rotate(45deg);
}

#hamburger.is-toggled span:nth-child(3) {
  transform: rotate(-45deg);
}

#hamburger.is-toggled span:nth-child(4) {
  top: 15px;
  width: 0%;
  left: 50%;
}

.accordion {
  max-width: var(--content-width);
  padding: 0;
}

.accordion__item {
  border-top: 1px solid var(--color-grey-light);
}

.accordion__handle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: var(--spacing) 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-top: 1px solid var(--color-grey-tint);
}

.accordion__title {
  margin: 0 !important;
  color: var(--color-text-dark);
  font-size: var(--font-size-base);
  flex: 1;
}
@media (min-width: 50em) {
  .accordion__title {
    font-size: var(--font-size-h4);
  }
}
.is-active .accordion__title {
  color: var(--color-primary);
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 var(--spacing);
}
.accordion__icon:before, .accordion__icon:after {
  content: "";
  position: absolute;
  background: var(--color-text-base);
  transition: transform 0.25s ease-out;
}
.accordion__icon:before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}
.accordion__icon:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}
.is-active .accordion__icon:before {
  transform: rotate(90deg);
}
.is-active .accordion__icon:after {
  transform: rotate(180deg);
}

.accordion__body {
  display: none;
  padding-bottom: var(--spacing-l);
}
.accordion__body p:first-child {
  margin-top: 0;
}
.accordion__body.is-open {
  display: block;
}

.container-block > .acf-innerblocks-container {
  width: calc(100% + var(--spacing));
  margin-left: calc(-1 * var(--spacing));
  margin-top: var(--spacing);
  display: flex;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.container-block > .acf-innerblocks-container > * {
  box-sizing: border-box;
  flex: 1 1 auto; /* Default for IE10 bug */
  padding-bottom: 0;
  padding-left: var(--spacing);
  flex-grow: 0;
}

.wp-block-columns {
  padding-left: 0 !important;
  margin-bottom: 0;
}

.wp-block-columns + .wp-block-columns {
  margin-top: var(--spacing-l);
}

.wp-block-column {
  padding-left: var(--spacing);
}

.container-block.justify-center > .acf-innerblocks-container {
  justify-content: center;
}

.container-block.justify-right > .acf-innerblocks-container {
  justify-content: flex-end;
}

.container-block.justify-left > .acf-innerblocks-container {
  justify-content: flex-start;
}

.container-block.justify-around > .acf-innerblocks-container {
  justify-content: space-around;
}

.container-block.justify-between > .acf-innerblocks-container {
  justify-content: space-between;
}

.container-block.justify-evenly > .acf-innerblocks-container {
  justify-content: space-evenly;
}

.container-block.align-middle > .acf-innerblocks-container {
  align-items: center;
}

.container-block.align-top > .acf-innerblocks-container {
  align-items: flex-start;
}

.container-block.align-bottom > .acf-innerblocks-container {
  align-items: flex-end;
}

.container-block section {
  margin: 0;
}

.cta {
  text-align: center;
}
@media (min-width: 50em) {
  .cta {
    text-align: inherit;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--grid-gap);
  }
}

.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
}
@media (min-width: 70em) {
  .cta__buttons {
    flex-flow: row nowrap;
  }
}
.cta__buttons .btn, .cta__buttons input[type=submit],
.cta__buttons input[type=reset],
.cta__buttons input[type=button], .cta__buttons .newsletter form .gform_button, .newsletter form .cta__buttons .gform_button {
  margin-top: var(--spacing);
}
@media (min-width: 70em) {
  .cta__buttons .btn, .cta__buttons input[type=submit],
  .cta__buttons input[type=reset],
  .cta__buttons input[type=button], .cta__buttons .newsletter form .gform_button, .newsletter form .cta__buttons .gform_button {
    margin-top: 0;
    margin-right: var(--spacing);
  }
}
.cta__buttons p {
  margin: 0;
}

.form__wrapper {
  display: flex;
}
.form__wrapper .card {
  width: 100%;
}
.form__wrapper.center {
  justify-content: center;
}
.form__wrapper.right {
  justify-content: flex-end;
}
.form__wrapper.left {
  justify-content: flex-start;
}

.image-card {
  display: block;
  position: relative;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-text-base);
  margin-bottom: var(--spacing-l);
}
.image-card .image-card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.75em var(--spacing);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-h4);
  z-index: 2;
}
.image-card .image-card__content:after {
  content: "";
  width: 34px;
  height: 23px;
  position: absolute;
  right: var(--spacing);
  top: 50%;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg width='31' height='19' viewBox='0 0 31 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.2472 0.913674L18.9302 2.10543C18.6076 2.39729 18.6144 2.86548 18.9436 3.14518L24.3663 7.85747H1.19728C0.753786 7.85747 0.39093 8.18581 0.39093 8.58712V10.2896C0.39093 10.6909 0.753786 11.0193 1.19728 11.0193H24.3663L18.9436 15.7316C18.6211 16.0173 18.6144 16.4855 18.9302 16.7713L20.2472 17.9631C20.563 18.2488 21.0737 18.2488 21.3895 17.9631L30.2459 9.94912C30.5617 9.66335 30.5617 9.20124 30.2459 8.91546L21.3895 0.913674C21.0737 0.627896 20.563 0.627896 20.2472 0.913674Z' fill='%23fff'/%3E%3C/svg%3E%0A") no-repeat center center;
  background-size: contain;
  transition: 0.25s all ease-in-out;
}
.image-card:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--color-primary);
  z-index: 1;
  opacity: 0;
  transition: 0.25s all ease-in-out;
  border-radius: var(--border-radius);
}
.image-card:hover .image-card__content:after, .image-card:focus .image-card__content:after {
  right: 0.9em;
}
.image-card:hover:before, .image-card:focus:before {
  opacity: 0.4;
}
.image-card:after {
  content: "";
  padding-top: 66.6666666%;
  display: inline-block;
}

.image-hero {
  display: flex;
  position: relative;
  z-index: 1;
  background-color: var(--color-black);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: calc(2 * var(--spacing-xl)) 0;
}
@media (min-width: 50em) {
  .image-hero {
    padding: 0;
    height: 85vh;
    max-height: 700px;
    min-height: 600px;
  }
}
@media (min-width: 50em) {
  .image-hero.home {
    height: 90vh;
  }
}
.image-hero .container, .image-hero .container-s, .image-hero .container-xs, .image-hero .site-header__inner, .image-hero .site-footer__upper, .image-hero .site-footer__lower, .image-hero .newsletter__inner {
  width: 100%;
  display: flex;
  align-items: center;
}
.image-hero .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-hero.image--overlay {
  position: relative;
  z-index: 1;
}
.image-hero.image--overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: -1;
}
.image-hero.no--hero {
  background-color: var(--color-primary);
}
.image-hero.centered .container, .image-hero.centered .container-s, .image-hero.centered .container-xs, .image-hero.centered .site-header__inner, .image-hero.centered .site-footer__upper, .image-hero.centered .site-footer__lower, .image-hero.centered .newsletter__inner {
  text-align: center;
  justify-content: center;
}
@media (min-width: 50em) {
  .image-hero.centered .container .image-hero__content, .image-hero.centered .container-s .image-hero__content, .image-hero.centered .container-xs .image-hero__content, .image-hero.centered .site-header__inner .image-hero__content, .image-hero.centered .site-footer__upper .image-hero__content, .image-hero.centered .site-footer__lower .image-hero__content, .image-hero.centered .newsletter__inner .image-hero__content {
    width: 75%;
  }
}
@media (min-width: 70em) {
  .image-hero.centered .container .image-hero__content, .image-hero.centered .container-s .image-hero__content, .image-hero.centered .container-xs .image-hero__content, .image-hero.centered .site-header__inner .image-hero__content, .image-hero.centered .site-footer__upper .image-hero__content, .image-hero.centered .site-footer__lower .image-hero__content, .image-hero.centered .newsletter__inner .image-hero__content {
    width: 75%;
  }
}
.image-hero.centered .container .tags, .image-hero.centered .container-s .tags, .image-hero.centered .container-xs .tags, .image-hero.centered .site-header__inner .tags, .image-hero.centered .site-footer__upper .tags, .image-hero.centered .site-footer__lower .tags, .image-hero.centered .newsletter__inner .tags {
  justify-content: center;
}
.image-hero video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.global-container :nth-child(1 of .image-hero) {
  padding: calc(2.5 * var(--spacing-xxl)) 0 calc(2 * var(--spacing-xxl));
}
@media (min-width: 50em) {
  .global-container :nth-child(1 of .image-hero) {
    padding: 0;
  }
}

.image-hero__content {
  position: relative;
  z-index: 1;
}
@media (min-width: 50em) {
  .image-hero__content {
    width: 75%;
  }
}
@media (min-width: 80em) {
  .image-hero__content {
    width: 50%;
  }
}
.image-hero__content h1, .image-hero__content h2, .image-hero__content h3, .image-hero__content h4, .image-hero__content h5, .image-hero__content p, .image-hero__content li, .image-hero__content .learn-more {
  color: #fff;
}

.tags {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.tags a {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: var(--border-radius);
  color: #fff;
  font-weight: 500;
  padding: 5px 20px 5px 15px;
  font-size: var(--font-size-sm);
  transition: 0.25s all ease-in-out;
}
.tags a svg {
  width: 16px;
}
.tags a:hover, .tags a:focus, .tags a.active {
  background-color: #fff;
  color: var(--color-primary);
  text-decoration: none;
}
.tags.solid a {
  border-color: var(--color-black);
  color: var(--color-black);
}
.tags.solid a:hover, .tags.solid a:focus {
  background-color: var(--color-black);
  color: #fff;
  text-decoration: none;
}
.tags.solid a.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.intro ul {
  list-style: disc;
  margin-top: 1.5em;
  padding-left: 1rem;
}
.intro li {
  margin-bottom: 0.25em;
}

.latest-case-studies {
  margin-top: 0;
}

.latest-case-studies__intro {
  border-bottom: 2px solid var(--color-secondary);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-s);
}
@media (min-width: 50em) {
  .latest-case-studies__intro {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.latest-case-studies__intro h2 {
  margin-bottom: var(--spacing-xs);
}
@media (min-width: 50em) {
  .latest-case-studies__intro h2 {
    margin-bottom: 0;
  }
}
.latest-case-studies__intro a {
  color: var(--color-text-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.case-studies-swiper .swiper-wrapper {
  padding-bottom: var(--spacing-xl);
}
.case-studies-swiper .swiper-scrollbar {
  left: 0 !important;
  width: 100% !important;
  bottom: 0px !important;
  height: 9px !important;
}
.case-studies-swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-primary);
  cursor: pointer;
}

@media (min-width: 50em) {
  .latest-events__articles {
    display: grid;
    grid-gap: var(--grid-gap);
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.latest-events__intro {
  border-bottom: 2px solid var(--color-secondary);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-s);
}
@media (min-width: 50em) {
  .latest-events__intro {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.latest-events__intro h2 {
  margin-bottom: var(--spacing-xs);
}
@media (min-width: 50em) {
  .latest-events__intro h2 {
    margin-bottom: 0;
  }
}
.latest-events__intro a {
  color: var(--color-text-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.latest-events__article {
  display: block;
  position: relative;
  background-color: #fff;
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .latest-events__article {
    margin-bottom: 0;
  }
}
.latest-events__article .article__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  border-bottom: 4px solid var(--color-primary);
  margin-bottom: var(--spacing);
}
.latest-events__article .article__image img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-events__article .article__image.placeholder {
  background: var(--color-primary);
  aspect-ratio: 4/3;
}
.latest-events__article .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.latest-events__article .article__content h4 {
  color: var(--color-text-base);
}
.latest-events__article .article__content p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.latest-events__article .article__content .article__read-more {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: var(--font-size-sm);
}
.latest-events__article .article__content .article__content--info {
  margin-bottom: var(--spacing-xs);
}
.latest-events__article:hover, .latest-events__article:focus {
  text-decoration: none;
}

.latest-events__article:last-child {
  border-right: 0;
}

@media (min-width: 50em) {
  .latest-news__articles {
    display: grid;
    grid-gap: var(--grid-gap);
    grid-template-columns: 1fr 1fr;
  }
}

.latest-news__intro {
  border-bottom: 2px solid #fff;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-s);
}
@media (min-width: 50em) {
  .latest-news__intro {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.latest-news__intro h2 {
  margin-bottom: var(--spacing-xs);
}
@media (min-width: 50em) {
  .latest-news__intro h2 {
    margin-bottom: 0;
  }
}
.latest-news__intro a {
  color: var(--color-text-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.latest-news__article {
  display: block;
  position: relative;
  background-color: #fff;
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .latest-news__article {
    margin-bottom: 0;
  }
}
.latest-news__article .article__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  border-bottom: 4px solid var(--color-primary);
}
.latest-news__article .article__image img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-news__article .article__image.placeholder {
  background: var(--color-primary);
  aspect-ratio: 16/9;
}
.latest-news__article .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.latest-news__article .article__content {
  padding: var(--spacing);
}
@media (min-width: 50em) {
  .latest-news__article .article__content {
    padding: var(--spacing-l);
  }
}
.latest-news__article .article__content h4 {
  color: var(--color-text-base);
}
.latest-news__article .article__content p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.latest-news__article .article__content time {
  margin-bottom: var(--spacing-xs);
  display: inline-block;
}
.latest-news__article .article__content .article__read-more {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: var(--font-size-sm);
}
.latest-news__article:hover, .latest-news__article:focus {
  text-decoration: none;
}

.latest-news__article:last-child {
  border-right: 0;
}

.image__styled {
  position: relative;
  z-index: 1;
  margin-top: var(--spacing-l);
}
@media (min-width: 70em) {
  .image__styled {
    margin-top: 0;
  }
}
.image__styled img {
  border-radius: var(--border-radius);
}

.left .order-1 {
  order: 2;
}
@media (min-width: 50em) {
  .left .order-1 {
    order: 1;
  }
}
.left .order-2 {
  order: 1;
}
@media (min-width: 50em) {
  .left .order-2 {
    order: 2;
  }
}

.right .order-1 {
  order: 1;
}
@media (min-width: 50em) {
  .right .order-1 {
    order: 2;
  }
}
.right .order-2 {
  order: 2;
}
@media (min-width: 50em) {
  .right .order-2 {
    order: 1;
  }
}

.resource__box {
  background-color: var(--color-tertiary);
  padding: var(--spacing-l) var(--spacing-l);
  margin: var(--spacing) 0;
  border-right: 6px solid var(--color-primary);
}
@media (min-width: 50em) {
  .resource__box {
    margin: var(--spacing-l) 0;
    padding: var(--spacing-l) var(--spacing-xl);
  }
}
.resource__box h4 {
  color: var(--color-text-base);
}

.team__intro {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-s);
}
@media (min-width: 50em) {
  .team__intro {
    margin-bottom: var(--spacing-xl);
  }
}

.team__member {
  display: block;
  position: relative;
  margin-bottom: var(--spacing-l);
}
@media (min-width: 50em) {
  .team__member {
    margin-bottom: var(--spacing-xl);
  }
}
@media (max-width: 37.5em) {
  .team__member {
    width: 100%;
  }
}
.team__member .member__info {
  text-align: center;
  position: relative;
  z-index: 1;
}
.team__member .member__info p {
  margin-top: 0.35em;
}
.team__member .member__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: var(--spacing);
}
.team__member .member__image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #fff;
}
.team__member .member__image:before {
  content: "";
  background: var(--color-primary);
  width: 120px;
  height: 120px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -10px;
  z-index: -1;
}
.team__member .member__image.placeholder {
  background: var(--color-secondary) url("../images/im-logo-colour.svg") no-repeat center center;
  background-size: 75%;
}
.team__member h4 {
  margin-top: var(--spacing-xs);
}
.team__member:hover, .team__member:focus {
  text-decoration: none;
}

.u-bold {
  font-weight: bold !important;
}

.u-semibold {
  font-weight: 600 !important;
}

.u-regular {
  font-weight: normal !important;
}

.u-light {
  font-weight: 300 !important;
}

.u-italic {
  font-style: italic !important;
}

.u-caps {
  text-transform: uppercase !important;
}

.u-left-align {
  text-align: left !important;
}

.u-center {
  text-align: center !important;
}

.u-right-align {
  text-align: right !important;
}

.mt-xxl {
  margin-top: var(--spacing-xxl) !important;
}

.mt-xl {
  margin-top: var(--spacing-xl) !important;
}

.mt-l {
  margin-top: var(--spacing-l) !important;
}

.mt {
  margin-top: var(--spacing) !important;
}

.mt-s {
  margin-top: var(--spacing-s) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-xxl {
  margin-bottom: var(--spacing-xxl) !important;
}

.mb-xl {
  margin-bottom: var(--spacing-xl) !important;
}

.mb-l {
  margin-bottom: var(--spacing-l) !important;
}

.mb {
  margin-bottom: var(--spacing) !important;
}

.mb-s {
  margin-bottom: var(--spacing-s) !important;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

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

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

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

.hidden-sm {
  display: none;
}
@media (min-width: 50em) {
  .hidden-sm {
    display: block;
  }
}

.visible-sm {
  display: block;
}
@media (min-width: 50em) {
  .visible-sm {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media print {
  * {
    background: #ffffff;
    color: #000000 !important;
  }
  html {
    font: 100%/1.5 Arial, serif;
  }
  /**
   * Hide
   */
  .header,
  .footer {
    display: none;
  }
  /**
   * Make full-width
   */
  .unit {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
}
