:root {
  --body-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --display-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-size: 1.12rem;
  --font-size-xl: 2.6rem;
  --font-size-lg: 1.4rem;
  --font-size-sm: 0.95rem;
  --font-size-xs: 0.8rem;
  --font-size-xxs: 0.75rem;
  --font-size-xxxs: 0.6rem;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.3rem;
  --font-size-h5: 1rem;
  --font-weight-light: 100;
  --font-weight-normal: 400;
  --font-weight-semi: 600;
  --font-weight-bold: 700;
  --font-weight-heavy: 900;
  --line-height: 1.45;
  --line-height-headings: 1.05;
  --color-grey-dark: #454545;
  --color-grey: #D9D9D9;
  --color-grey-light: #F2F2F2;
  --color-primary: #611B30;
  --color-secondary: #242a63;
  --color-tertiary: #C7E32E;
  --color-quaternary: #fcbd80;
  --color-quinary: #ff6583;
  --color-sextuple: #2aa6e7;
  --color-text-base: #0E0E0E;
  --color-text-dark: #0E0E0E;
  --color-text-reversed: #fff;
  --color-text-light: #666;
  --color-text-link: var(--color-primary);
  --color-text-hover: var(--color-primary);
  --color-error: #cc0000;
  --color-facebook: #3B5998;
  --color-twitter: #1DA1F2;
  --color-instagram: #262626;
  --color-youtube: #cc181e;
  --color-linkedin: #0077B5;
  --heading-color: var(--color-secondary);
  --body-background-color: #fff;
  --border-radius: 8px;
  --border-radius-l: 20px;
  --spacing-xxl: 3em;
  --spacing-xl: 2em;
  --spacing-l: 1.5em;
  --spacing: 1em;
  --spacing-s: 0.5em;
  --spacing-xs: 0.25em;
  --block-spacing: 2em;
  --grid-gap-sm: 1.5rem;
  --grid-gap: 2rem;
  --grid-gap-l: 4rem;
  --grid-gap-xl: 6rem;
  --container-width-s: 65rem;
  --container-width: 73rem;
  --container-width-l: 100rem;
  --content-width: 55rem;
  --swiper-navigation-size: 60px !important;
}
@media (min-width: 50em) {
  :root {
    --block-spacing: 2.5em;
    --line-height: 1.5;
    --line-height-headings: 1.025;
    --font-size: 1.175rem;
    --font-size-xl: 3.2rem;
  }
}
@media (min-width: 70em) {
  :root {
    --font-size-h1: 3.2rem;
    --font-size-h2: 2.75rem;
    --font-size-h3: 2.35rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-xl: 4.3rem;
    --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;
}

/* 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;
}

.wp-block-separator {
  margin: var(--spacing) auto;
  border-color: var(--color-grey);
  border-bottom: 0;
}

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

@media (min-width: 70em) {
  .gutter-lg.flex {
    width: calc(100% + 60px);
    margin-left: -60px;
  }
  .gutter-lg.flex > * {
    padding-left: 60px;
  }
}
.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;
  letter-spacing: -0.1px;
}

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

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

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

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

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1em;
  list-style-position: inside;
}

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

li p {
  margin: 0;
}

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: -0.25px;
  color: var(--color-primary);
}

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

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

h4, .heading-4 {
  font-size: var(--font-size-h4);
  line-height: 1.1;
}

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

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

.has-icon {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-s);
}
.has-icon svg {
  width: 20px;
  height: 20px;
  margin-right: var(--spacing-s);
  flex-shrink: 0;
}
.has-icon.align-top {
  align-items: flex-start;
}
.has-icon.align-top svg {
  margin-top: 3px;
}

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

.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: var(--spacing);
  font-size: var(--font-size-xxs);
  font-style: italic;
  color: var(--color-text-light);
  max-width: var(--content-width);
}

table,
.wp-block-table table {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
  border: 1px solid var(--color-grey-light);
}
table.full,
.wp-block-table table.full {
  width: 100%;
}
table thead,
table tfoot,
.wp-block-table table thead,
.wp-block-table table tfoot {
  background: var(--color-grey-light) !important;
  border: 0;
}
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;
  color: var(--color-text-base);
  background: var(--color-grey-light) !important;
  padding: var(--spacing-s) var(--spacing-l);
  text-align: left;
  font-size: calc(0.75rem + 0.1vw);
}
table tr,
.wp-block-table table tr {
  border-bottom: 1px solid var(--color-grey-light);
}
table td,
.wp-block-table table td {
  border: 0 !important;
  text-align: left;
  color: var(--color-text-base);
  padding: var(--spacing-s) var(--spacing-l);
  font-size: var(--font-size-sm);
}
@media (min-width: 50em) {
  table td,
  .wp-block-table table td {
    font-size: calc(0.75rem + 0.1vw);
  }
}

.secondary table td {
  background-color: #fff;
}

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;
  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=email].um-error,
input[type=number].um-error,
input[type=search].um-error,
input[type=text].um-error,
input[type=tel].um-error,
input[type=url].um-error,
input[type=password].um-error,
textarea.um-error,
select.um-error {
  border-color: #cc0000;
  font-size: var(--font-size-sm);
}

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-sm) !important;
}

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

.required {
  color: #BF5D58;
}

.gform_wrapper.gravity-theme .gfield_required {
  font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
  padding: 12.992px 24px !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors > ol {
  margin: 5px 0 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 16px 24px 16px 24px !important;
}

.alert.alert--error {
  font-size: var(--font-size-sm);
  color: #c02b0a;
}

.gform_wrapper.gravity-theme .gform_validation_errors > ol a {
  font-size: var(--font-size-sm) !important;
}

/* 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);
  /* Post title styling */
}
.editor-post-title__block.wp-block .editor-post-title__input {
  margin-bottom: var(--spacing-l);
  color: var(--color-text-base);
}

/* 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-image figcaption {
  line-height: var(--line-height);
}

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

.content > * {
  max-width: var(--content-width);
}
.content h2,
.content h3,
.content h4,
.content h5 {
  margin-top: var(--spacing);
  margin-bottom: 0;
}
.content a:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
  color: var(--link-color);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--link-hover-color);
          text-decoration-color: var(--link-hover-color);
}
.content a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.content blockquote {
  max-width: none;
  font-size: var(--font-size-h3);
  line-height: 1.4;
  margin: var(--spacing-l) 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;
  border-bottom: 1px solid var(--color-grey-light);
}
.content ul {
  list-style: disc;
  margin-top: 1.5em;
  padding-left: 1rem;
}
.content ul ul {
  margin-top: 0.35em;
}
.content ol {
  list-style: decimal;
  margin-top: 1.5em;
  padding-left: 1rem;
}
.content li {
  margin-bottom: 0.25em;
}

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

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

.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, input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  gap: 10px;
  border: 2px solid var(--color-sextuple);
  color: var(--color-text-dark);
  padding: 0.4rem 1.25rem 0.45rem;
  font-family: var(--display-family);
  font-size: var(--font-size-sm);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.35s ease-in-out;
}
@media (min-width: 50em) {
  .btn, input[type=submit],
  input[type=reset],
  input[type=button] {
    padding: 0.4rem 1.2rem 0.45rem;
  }
}
.btn:hover, input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover, .btn:focus, input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  background-color: var(--color-sextuple);
  outline: 0;
  color: #fff;
  text-decoration: none;
}

.btn--icon-pencil {
  position: relative;
  overflow: hidden;
  padding-right: 63px;
}
.btn--icon-pencil:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  background: var(--color-sextuple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='24' fill='none' viewBox='0 0 23 24'%3E%3Cpath fill='%23fff' d='M15.65.616c-.377 0-.739.15-1.005.418L2.552 13.126a1.423 1.423 0 0 0-.368.631L.05 21.582a1.423 1.423 0 0 0 1.748 1.747l7.825-2.134c.238-.065.456-.192.63-.367L22.346 8.735c.267-.267.417-.628.418-1.005A7.114 7.114 0 0 0 15.65.616ZM5.454 19.384a2.86 2.86 0 0 0-1.458-1.459l.832-3.049a4.268 4.268 0 0 1 3.668 3.678l-3.042.83Zm5.333-3.118a7.151 7.151 0 0 0-3.673-3.673l9.09-9.096a4.268 4.268 0 0 1 3.678 3.68l-9.095 9.089Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 20px;
}

.btn--uppercase {
  text-transform: uppercase;
  font-weight: 700;
}

.btn--primary, input[type=submit],
input[type=reset],
input[type=button] {
  background-color: var(--color-sextuple);
  border: 0;
  color: var(--color-text-reversed);
}
.btn--primary:hover, input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover, .btn--primary:focus, input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  background-color: var(--color-secondary);
  color: #fff;
}

.btn--secondary {
  background-color: var(--color-quaternary);
  border: 0;
  color: var(--color-text-base);
}
.btn--secondary:hover, .btn--secondary:focus {
  border-color: var(--color-tertiary);
}

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

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

.btn--sm {
  font-size: var(--font-size-sm);
  padding: 0.25rem 1rem 0.3rem;
}
@media (min-width: 50em) {
  .btn--sm {
    padding: 0.25rem 1rem 0.3rem;
  }
}

.social-links {
  display: flex;
  justify-content: center;
}

.social-links__item {
  margin: 0 0.25rem;
}

.social-links__link {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 35px;
  height: 35px;
}
.social-links__link .icon {
  width: 35px;
  height: 35px;
}

.card {
  background: #FFFFFF;
  display: block;
  border-radius: var(--border-radius-l);
}
.card__title {
  margin: var(--spacing-s) 0;
}
.card__content {
  padding: var(--spacing) 0;
}
.card__content strong {
  color: var(--color-text-base);
}
.card__image {
  position: relative;
  border-radius: var(--border-radius-l);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
}
.card__image img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-l);
  border: 1px solid var(--color-grey-light);
}
.card__image.placeholder {
  background-color: var(--color-primary);
}
.card__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  aspect-ratio: initial;
  border: 0;
}
.card__square {
  border-radius: 0;
}
.card__square .card__image {
  border-radius: 0;
}
.card__large .card__content {
  padding: var(--spacing-l) var(--spacing-l);
}
.card__record-type, .card__record-source {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}
.card:hover, .card:focus {
  text-decoration: none;
}

.global-container {
  min-height: 100%;
}
.global-container.has-alert {
  position: relative;
}
.global-container.has-alert .site-header {
  top: 0 !important;
}

.container, .site-header__inner, .landing-page__grid, .container-l, .container-s {
  margin: 0 auto;
  padding: 0 var(--spacing);
  width: 100%;
  max-width: var(--container-width);
}

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

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

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.panel .acf-innerblocks-container:first-of-type {
  margin-top: 0;
}
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);
}

.sidebar {
  background-color: var(--color-grey-light);
  border-radius: var(--border-radius-l);
  padding: var(--spacing);
}
@media (min-width: 50em) {
  .sidebar {
    margin-left: var(--spacing);
  }
}
.sidebar ul {
  list-style: none;
  margin: var(--spacing-s) 0 0 0;
  padding: 0;
}
.sidebar ul li {
  border-bottom: 1px solid var(--color-grey);
}
.sidebar ul li a {
  font-size: var(--font-size-sm);
}
.sidebar ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.landing-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: var(--grid-gap);
}
.landing-page__grid a {
  border: 1px solid var(--color-grey);
  border-radius: var(--border-radius);
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing);
  text-align: center;
  position: relative;
  color: var(--color-text-base);
  transition: 0.25s all ease-in-out;
}
.landing-page__grid a:hover {
  color: var(--color-primary);
}
.landing-page__grid a:hover:after {
  right: -21px;
}
.landing-page__grid a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23fff'/%3E%3Cpath stroke='%23000' stroke-width='2' d='m17 12 8 8-8 8'/%3E%3C/svg%3E") no-repeat center center;
  display: block;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.09)) drop-shadow(0px 9px 5px rgba(0, 0, 0, 0.05)) drop-shadow(0px 16px 6px rgba(0, 0, 0, 0.01)) drop-shadow(0px 24px 7px rgba(0, 0, 0, 0));
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: -18px;
  top: 50%;
  padding: 18px;
  transition: 0.25s all ease-in-out;
}

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

.global-alert p {
  color: white;
  margin: 0;
  font-size: var(--font-size-xs);
}
.global-alert p a {
  color: #fff;
  text-decoration: underline;
}

.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-s) var(--spacing-l);
}

.cookie-alert__inner p {
  margin: 0;
  line-height: 1;
  font-size: var(--font-size-sm);
}

.cookie-alert__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
}

.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%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 999;
}
.site-header.no-hero {
  position: static;
  top: 0;
  background-color: var(--color-primary);
  border: 0;
}
.site-header ul {
  list-style-type: none;
}

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

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

.site-header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__logo {
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 49.99em) {
  .site-header__logo {
    max-width: 210px;
  }
}

.site-header__nav .menu {
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  display: none;
}
@media (min-width: 50em) {
  .site-header__nav .menu {
    display: flex;
  }
}
@media (min-width: 70em) {
  .site-header__nav .menu {
    gap: var(--grid-gap);
  }
}
.site-header__nav .menu > li > a:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
  font-family: var(--display-family);
  font-weight: 400;
  color: #fff;
}
.site-header__nav .menu .current-menu-item > a {
  color: var(--color-tertiary) !important;
}
.site-header__nav .menu .btn, .site-header__nav .menu input[type=submit],
.site-header__nav .menu input[type=reset],
.site-header__nav .menu input[type=button] {
  font-size: var(--font-size-sm);
  color: #fff;
}
.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='%23fff' 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;
  visibility: visible;
  top: 85%;
}
.site-header__nav li .sub-menu {
  position: absolute;
  width: 100%;
  top: 75%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  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: 0;
  margin-top: var(--spacing-s);
  min-width: 200px;
  justify-content: flex-start;
  border-radius: 4px;
  transition: 0.25s all ease-in-out;
}
.site-header__nav li .sub-menu li {
  padding: 0.25rem 0.6rem 0.45rem 0.6rem;
  border-bottom: 1px solid var(--color-grey);
  line-height: 1;
}
.site-header__nav li .sub-menu li a {
  font-size: var(--font-size-sm);
  font-family: var(--display-family);
  font-weight: 400;
  color: var(--color-text-base);
}
.site-header__nav li .sub-menu .current-menu-item > a {
  color: var(--color-sextuple) !important;
}
.site-header__nav li .sub-menu li:last-child {
  border-bottom: 0;
}

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

.site-footer {
  background-color: var(--color-sextuple);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__upper {
  padding: var(--spacing-s) 0 var(--spacing-l);
}
@media (min-width: 50em) {
  .site-footer__upper {
    padding: var(--spacing-xl) 0 var(--spacing-xl);
    display: flex;
    gap: var(--grid-gap);
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 70em) {
  .site-footer__upper {
    gap: var(--grid-gap-xl);
  }
}

.site-footer__contact {
  margin: var(--spacing) 0;
}
@media (min-width: 50em) {
  .site-footer__contact {
    margin: 0;
  }
}
@media (max-width: 49.99em) {
  .site-footer__contact .site-logo img {
    max-width: 210px;
  }
}
.site-footer__contact a, .site-footer__contact p {
  color: var(--color-text-dark);
}
.site-footer__contact a svg, .site-footer__contact p svg {
  color: var(--color-primary);
}

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

.site-footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 50em) {
  .site-footer__menu ul {
    display: flex;
    gap: 15px;
  }
}
@media (min-width: 70em) {
  .site-footer__menu ul {
    grid-gap: var(--grid-gap);
  }
}
.site-footer__menu ul li a {
  color: #fff;
  font-size: 20px;
}

.site-footer__lower {
  padding: var(--spacing) 0;
  background-color: var(--color-sextuple);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.site-footer__lower p {
  font-size: var(--font-size-xs);
  color: #fff;
}
@media (min-width: 50em) {
  .site-footer__lower .site-footer__inner {
    justify-content: flex-end;
  }
}

.social-links {
  margin: 0;
}

.article {
  display: block;
  position: relative;
  margin-bottom: var(--spacing-xl);
}
.article .article__image {
  position: relative;
  border-radius: var(--border-radius-l);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
  margin-bottom: var(--spacing);
}
.article .article__image img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-l);
  border: 1px solid var(--color-grey-light);
}
.article .article__image.placeholder {
  background-color: var(--color-primary);
}
.article .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  aspect-ratio: initial;
  border: 0;
}
.article h4 {
  margin: var(--spacing-xs) 0;
  line-height: 1.1;
}
.article .article__date {
  color: #666;
  font-size: var(--font-size-sm);
}
.article .tag-list {
  margin-top: 5px;
  color: #666;
  gap: 3px;
}
.article .tag-list svg {
  width: 18px;
}
.article .tag-list span {
  color: #666;
  font-size: var(--font-size-sm);
}
.article .article__btn {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.article:hover, .article:focus {
  text-decoration: none;
}

.go-back {
  font-family: var(--display-family);
  color: var(--color-primary);
}

.category-list {
  display: flex;
  gap: 10px;
  margin-bottom: var(--spacing);
}
.category-list a {
  border: 1px solid var(--color-primary);
  text-decoration: none !important;
  border-radius: 50px;
  padding: 3px 15px 4px;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s all ease-in-out;
}
.category-list a:hover, .category-list a:focus {
  background-color: var(--color-primary);
  color: #fff !important;
}
.category-list a svg {
  width: 16px;
}

.tag-list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--spacing);
}
.tag-list svg {
  width: 20px;
  position: relative;
  top: 2px;
}
.tag-list span {
  font-size: var(--font-size-sm);
}
.tag-list span:after {
  content: ",";
}
.tag-list span:last-child:after {
  display: none;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
  display: none;
}

/* transition */
a {
  transition: all 0.3s ease;
}

/* pagination */
.nav-links {
  text-align: center;
}

.nav-links a {
  margin: 1rem 0.6rem;
}

.nav-links a.page-numbers {
  color: var(--color-secondary);
}

.nav-links a.page-numbers:hover {
  color: #383838;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers.dots {
  color: var(--color-grey-dark);
}

.nav-links a.next,
.nav-links a.prev {
  display: inline-block;
  padding: 0.2rem 1rem 0.25rem 1rem;
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: 30px;
}

.nav-links a.next:hover,
.nav-links a.prev:hover {
  color: #fff;
}

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

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: 100vw;
  height: 100%;
  z-index: 100;
  background: var(--color-sextuple);
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s ease;
}
@media (min-width: 50em) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .menu {
  padding: 0;
  margin: 100px 0 0 0;
}
.mobile-menu .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
  padding: var(--spacing-xs) var(--spacing);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.mobile-menu .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) a {
  font-size: var(--font-size-h3);
  color: #fff;
}
.mobile-menu .menu .menu-item-has-children {
  position: relative;
}
.mobile-menu .menu .menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
  display: block;
}
.mobile-menu .menu .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='%23fff' 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: 14px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.2s all ease-in-out;
}
.mobile-menu .menu .sub-menu {
  position: relative;
  height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease;
  display: flex;
  flex-flow: column wrap;
}
.mobile-menu .menu .sub-menu li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
  margin: var(--spacing-xs) 0;
}
.mobile-menu .menu .sub-menu.active {
  height: auto;
  opacity: 1;
  z-index: 1;
  visibility: visible;
  margin-top: var(--spacing-s);
}

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

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

#hamburger {
  width: 38px;
  height: 26px;
  position: relative;
  transform: rotate(0deg);
  cursor: pointer;
}
@media (min-width: 50em) {
  #hamburger {
    display: none;
  }
}
#hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  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:before {
  content: "Menu";
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.25px;
}

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

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

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

#hamburger.is-toggled span:nth-child(1) {
  top: 12px;
  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%;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: var(--border-radius-l);
  padding: var(--spacing-xl) var(--spacing);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  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: all 0.3s ease-in-out;
  right: 20px;
  top: 20px;
}
@media (min-width: 50em) {
  .modal__close {
    right: 30px;
    top: 20px;
  }
}
.modal__close:hover, .modal__close:focus {
  opacity: 0.5;
}
.modal.is-toggled {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}
.modal .gform_footer {
  padding-bottom: 0 !important;
}

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

.accordion {
  max-width: var(--content-width);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  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;
  font-size: var(--font-size-h5);
  flex: 1;
  color: var(--color-text-base);
}
.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-primary);
  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;
}

.dashboard .accordion-section {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.dashboard .accordion-section .container, .dashboard .accordion-section .container-s, .dashboard .accordion-section .container-l, .dashboard .accordion-section .landing-page__grid, .dashboard .accordion-section .site-header__inner {
  padding: 0;
}

.callout {
  background: var(--color-quaternary);
  padding: var(--spacing-l);
  border-radius: var(--border-radius-l);
}
@media (min-width: 50em) {
  .callout {
    background: var(--color-quaternary) url("../images/icon-bg-2.svg") no-repeat 25% center;
    background-size: contain;
    padding: var(--spacing-xl);
  }
}
@media (min-width: 70em) {
  .callout {
    padding: var(--spacing-xxl) var(--spacing-xxl);
  }
}
.callout__align--centered {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media (min-width: 50em) {
  .callout__align--centered .callout__content {
    text-align: center;
    max-width: 90%;
  }
}
@media (min-width: 70em) {
  .callout__align--centered .callout__content {
    max-width: 80%;
  }
}
.callout__content h1, .callout__content h2, .callout__content h3, .callout__content p {
  color: var(--color-primary);
}
.callout__content p {
  font-size: var(--font-size-sm);
}
@media (min-width: 50em) {
  .callout__content p {
    font-size: var(--font-size);
  }
}
.callout__content p a {
  text-decoration: underline;
}

p + .callout {
  margin: var(--spacing-l) 0;
}

@media (min-width: 50em) {
  .container-s .callout__align--centered .callout__content {
    max-width: 90%;
  }
}

.container-block > .acf-innerblocks-container {
  width: calc(100% + var(--spacing-xl));
  margin-left: calc(-1 * var(--spacing-xl));
  margin-top: var(--spacing-xl);
  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-xl);
  flex-grow: 0;
}

.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.space-between > .acf-innerblocks-container {
  justify-content: space-between;
}

.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 {
  margin: var(--block-spacing) 0;
}
.cta__bg {
  margin: 0;
  padding: var(--block-spacing) 0;
}
@media (min-width: 50em) {
  .cta__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    grid-gap: var(--grid-gap-l);
    align-items: center;
  }
}
.cta__content-text {
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  .cta__content-text {
    margin-top: 0;
  }
}

.form__wrapper {
  display: flex;
  flex-flow: row wrap;
}
.form__wrapper .card {
  max-width: 550px;
}
@media (min-width: 50em) {
  .form__wrapper .card {
    flex-shrink: 0;
    flex-grow: 1;
  }
}
.form__wrapper.center {
  justify-content: center;
}
.form__wrapper.right {
  justify-content: flex-end;
}
.form__wrapper.left {
  justify-content: flex-start;
}
.form__wrapper .gform_wrapper {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  background: var(--color-secondary) url("../images/icon-bg.svg") no-repeat 75% center;
  background-position: contain;
  z-index: 1;
  min-height: 250px;
  padding-top: 125px;
}
@media (min-width: 50em) {
  .hero {
    min-height: 350px;
    padding-top: 135px;
  }
}
.hero .container, .hero .container-s, .hero .container-l, .hero .landing-page__grid, .hero .site-header__inner {
  width: 100%;
}
.hero.home {
  background: var(--color-primary) url("../images/icon-bg.svg") no-repeat 75% center;
  background-size: contain;
  min-height: 425px;
}
@media (min-width: 50em) {
  .hero.home {
    min-height: 500px;
  }
}
@media (min-width: 70em) {
  .hero.home {
    min-height: 575px;
  }
}
@media (min-width: 70em) {
  .hero.home .hero__content {
    width: 75%;
  }
}
.hero.home .wp-block-audio {
  margin-top: var(--spacing-l);
  max-width: 600px;
}
.hero.home .wp-block-audio figcaption {
  color: #fff;
  font-size: var(--font-size-xs);
  font-style: italic;
  margin-bottom: 0;
}

.hero__content {
  padding-bottom: var(--spacing-l);
}
@media (min-width: 50em) {
  .hero__content {
    padding-bottom: var(--spacing-xl);
  }
}
.hero__content h1 {
  font-size: var(--font-size-xl);
  line-height: 1;
}
.hero__content h1, .hero__content h2, .hero__content h3, .hero__content h4, .hero__content h5, .hero__content p, .hero__content li, .hero__content .learn-more {
  color: var(--color-tertiary);
}
.hero__content .breadcrumbs {
  color: #FFF;
  font-size: var(--font-size-sm);
}
.hero__content .breadcrumbs a {
  color: #fff;
  text-decoration: underline;
}

.intro ul {
  list-style: disc;
  margin-top: 1.5em;
  padding-left: 1rem;
}
.intro li {
  margin-bottom: 0.25em;
}
@media (max-width: 49.99em) {
  .intro h2 {
    margin-bottom: var(--spacing-s);
  }
}

.latest-news {
  margin: var(--block) 0;
  overflow: hidden;
}
.latest-news__intro, .latest-news .btn__group {
  margin-bottom: var(--spacing-l);
}
.latest-news .latest-news-swiper {
  overflow: visible;
  padding-right: var(--spacing-xl);
}
@media (min-width: 50em) {
  .latest-news .latest-news-swiper {
    padding-right: 0;
  }
}
.latest-news .latest-news-swiper .swiper-slide {
  position: relative;
  height: auto;
}
.latest-news .latest-news-swiper .swiper-slide .card {
  height: 100%;
}
.latest-news .latest-news-swiper .swiper-slide .card .card__content {
  padding-bottom: 0;
}
.latest-news .latest-news-swiper .swiper-slide .card .card__title {
  margin-top: var(--spacing-xs);
  font-size: var(--font-size-h5);
}
.latest-news .latest-news-swiper .swiper-button-prev {
  left: -10px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.09)) drop-shadow(0px 9px 5px rgba(0, 0, 0, 0.05)) drop-shadow(0px 16px 6px rgba(0, 0, 0, 0.01)) drop-shadow(0px 24px 7px rgba(0, 0, 0, 0));
}
@media (min-width: 70em) {
  .latest-news .latest-news-swiper .swiper-button-prev {
    top: 120px;
  }
}
.latest-news .latest-news-swiper .swiper-button-next {
  right: -10px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.09)) drop-shadow(0px 9px 5px rgba(0, 0, 0, 0.05)) drop-shadow(0px 16px 6px rgba(0, 0, 0, 0.01)) drop-shadow(0px 24px 7px rgba(0, 0, 0, 0));
}
@media (min-width: 70em) {
  .latest-news .latest-news-swiper .swiper-button-next {
    top: 120px;
  }
}

.feature-card {
  display: grid;
  align-items: center;
  background-color: #fff;
}
@media (min-width: 50em) {
  .feature-card {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-card__text {
  padding: var(--spacing-l) var(--spacing-l);
}
@media (min-width: 50em) {
  .feature-card__text {
    padding: var(--spacing-l) var(--spacing-xxl);
  }
}
@media (min-width: 50em) {
  .feature-card.align__right .feature-card__text {
    order: 1;
  }
  .feature-card.align__right .feature-card__image {
    order: 2;
    text-align: right;
  }
}

.partners {
  margin: 0;
}
@media (min-width: 70em) {
  .partners {
    padding: var(--spacing-xl) var(--spacing-xxl);
  }
}
.partners .callout__content h1, .partners .callout__content h2, .partners .callout__content h3, .partners .callout__content p {
  color: var(--color-secondary);
}
.partners__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gap);
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-l);
}
.partners__grid img {
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.people .cell {
  margin-top: var(--spacing-xxl);
}
.people .partner-grid .cell {
  margin-top: 0;
  margin-bottom: var(--spacing-l);
}
.people .person, .people .partner {
  border: 1px solid var(--color-grey-light);
  padding: var(--spacing);
  border-radius: var(--border-radius-l);
  height: 100%;
}
.people .person__image {
  position: relative;
  border-radius: var(--border-radius-l);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: -60px 0 var(--spacing) 0;
  max-width: 300px;
}
@media (min-width: 50em) {
  .people .person__image {
    max-width: 210px;
  }
}
.people .person__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-l);
}
.people .person__image.placeholder {
  background-color: var(--color-primary);
  aspect-ratio: 1/1;
}
.people .person__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -o-object-fit: none;
     object-fit: none;
}
.people .wp-block-audio {
  margin: var(--spacing-s) 0;
}
.people .partner__image {
  position: relative;
  border-radius: var(--border-radius-l);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto var(--spacing-s) auto;
  max-width: 300px;
}
@media (min-width: 50em) {
  .people .partner__image {
    max-width: 230px;
  }
}
.people .partner__image img {
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--border-radius-l);
  margin: 0 auto;
}
.people .partner__image.placeholder {
  background-color: var(--color-primary);
  aspect-ratio: 1/1;
}
.people .partner__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -o-object-fit: none;
     object-fit: none;
}
.people .person__role, .people .partner__role {
  font-weight: 700;
  margin-top: var(--spacing-s);
  font-size: var(--font-size-sm);
}
.people p {
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.block-swiper .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
  min-height: 300px;
}
@media (min-width: 50em) {
  .block-swiper .swiper-slide {
    height: 50vh;
    min-height: 450px;
  }
}
.block-swiper .swiper-slide .slide-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.block-swiper .swiper-slide .slide-text *:not(.btn--white) {
  color: #fff;
}
.block-swiper .swiper-button-next, .block-swiper .swiper-rtl .swiper-button-prev {
  right: 25px;
  left: auto;
}
.block-swiper .swiper-button-prev, .block-swiper .swiper-rtl .swiper-button-next {
  left: 25px;
  right: auto;
}

.sticky-box {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 10px 15px;
  width: calc(100% - 30px);
  text-align: center;
  padding: var(--spacing);
  z-index: 99;
  border-radius: var(--border-radius-l);
  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);
}
@media (min-width: 50em) {
  .sticky-box {
    border-radius: var(--border-radius);
    position: sticky;
    left: inherit;
    top: 30px;
    box-shadow: none;
  }
}
@media (min-width: 70em) {
  .sticky-box {
    padding: var(--spacing) var(--spacing);
  }
}
.sticky-box .btn + .btn, .sticky-box input[type=submit] + .btn,
.sticky-box input[type=reset] + .btn,
.sticky-box input[type=button] + .btn, .sticky-box .btn + input[type=submit], .sticky-box input[type=submit] + input[type=submit],
.sticky-box input[type=reset] + input[type=submit],
.sticky-box input[type=button] + input[type=submit],
.sticky-box .btn + input[type=reset],
.sticky-box input[type=submit] + input[type=reset],
.sticky-box input[type=reset] + input[type=reset],
.sticky-box input[type=button] + input[type=reset],
.sticky-box .btn + input[type=button],
.sticky-box input[type=submit] + input[type=button],
.sticky-box input[type=reset] + input[type=button],
.sticky-box input[type=button] + input[type=button] {
  margin-left: 10px;
}

@media (min-width: 50em) {
  body.admin-bar .sticky-box {
    top: 62px;
  }
}

.tabs {
  margin: var(--block-spacing) 0;
}
@media (min-width: 50em) {
  .tabs__intro {
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
  }
}
.tabs__buttons {
  justify-content: center;
  gap: 10px;
  margin: var(--spacing-l) 0 var(--spacing) 0;
  display: none;
}
@media (min-width: 50em) {
  .tabs__buttons {
    display: flex;
  }
}
.tabs__buttons a {
  border-radius: 50px;
  background-color: var(--color-grey-light);
  padding: 9px 25px 10px 25px;
  display: flex;
  align-items: center;
  color: var(--color-text-base);
  font-weight: 700;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: 0.25s all ease-in-out;
}
.tabs__buttons a:before {
  content: "";
  width: 0;
  height: 0;
  background: var(--color-sextuple);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: 1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s all ease-in-out;
}
.tabs__buttons a.active {
  gap: 8px;
  color: var(--color-sextuple);
}
.tabs__buttons a.active:before {
  opacity: 1;
  visibility: visible;
  width: 8px;
  height: 8px;
}
.tabs__select {
  display: block;
  width: 100%;
  margin: var(--spacing-l) 0 var(--spacing) 0;
  height: 45px;
}
@media (min-width: 50em) {
  .tabs__select {
    display: none;
  }
}
.tabs__panel {
  background-color: var(--color-grey-light);
  border-radius: var(--border-radius-l);
  padding: var(--spacing-l) var(--spacing);
}
@media (min-width: 50em) {
  .tabs__panel {
    padding: var(--spacing-xl) var(--spacing-l);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: var(--grid-gap-l);
    max-width: var(--container-width-s);
    margin: 0 auto;
  }
}
.tabs__panel div {
  margin: 0;
}

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

@media (max-width: 49.99em) {
  .row-reverse {
    flex-flow: column-reverse;
  }
}

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

.bg--grey {
  background-color: var(--color-grey-light);
}

.bg--primary {
  background-color: var(--color-primary);
}

.bg--secondary {
  background-color: var(--color-secondary);
}

.bg--tertiary {
  background-color: var(--color-tertiary);
}

.bg--quaternary {
  background-color: var(--color-quaternary);
}

.bg--quinary {
  background-color: var(--color-quinary);
}

.bg--sextuple {
  background-color: var(--color-sextuple);
}

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