@font-face {
  font-family: "FS Albert";
  src: url("../fonts/FSAlbert/FSAlbert.woff2") format("woff2"), url("../fonts/FSAlbert/FSAlbert.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FS Albert";
  src: url("../fonts/FSAlbert/FSAlbert-Bold.woff2") format("woff2"), url("../fonts/FSAlbert/FSAlbert-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
:root {
  --body-family: "FS Albert", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --display-family: "FS Albert", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-size: calc(0.975rem + 0.15vw);
  --font-size-lead: calc(1.2rem + 0.1vw);
  --font-size-small: calc(0.9rem + 0.1vw);
  --font-size-xsmall: calc(0.8rem + 0.1vw);
  --font-size-h1: calc(2.4rem + 0.2vw);
  --font-size-h2: calc(1.9rem + 0.2vw);
  --font-size-h3: calc(1.5rem + 0.2vw);
  --font-size-h4: calc(1.3rem + 0.2vw);
  --font-size-h5: calc(1rem + 0.2vw);
  --font-weight-light: 100;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-heavy: 900;
  --font-weight-heavy: var(--font-weight-bold);
  --line-height: 1.5;
  --line-height-headings: 1.05;
  --color-grey-dark: #454545;
  --color-grey: #D9D9D9;
  --color-grey-light: #F2F2F2;
  --color-primary: #558E0A;
  --color-secondary: #F6F9FC;
  --color-tertiary: #55975D;
  --color-text-base: #231F20;
  --color-text-dark: #000;
  --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: #558E0A;
  --body-background-color: #fff;
  --border-radius: 6px;
  --border-radius-l: 8px;
  --spacing-xxl: 3em;
  --spacing-xl: 2em;
  --spacing-l: 1.5em;
  --spacing: 1em;
  --spacing-s: 0.5em;
  --spacing-xs: 0.25em;
  --block-spacing: 2em;
  --grid-gap-sm: 1.5rem;
  --grid-gap: 2rem;
  --grid-gap-l: 4rem;
  --grid-gap-xl: 6rem;
  --container-width-s: 65rem;
  --container-width: 75rem;
  --container-width-l: 100rem;
  --content-width: 50rem;
}
@media (min-width: 50em) {
  :root {
    --block-spacing: 2.5em;
    --line-height-headings: 1.1;
  }
}
@media (min-width: 70em) {
  :root {
    --font-size-h1: calc(3.2rem + 0.2vw);
    --font-size-h2: calc(2.2rem + 0.2vw);
    --font-size-h3: calc(1.6rem + 0.2vw);
    --font-size-h4: calc(1.3rem + 0.2vw);
    --font-size-h5: calc(.9rem + 0.2vw);
    --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;
}

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

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

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

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

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

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

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: -1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.required {
  color: #BF5D58;
}

/* 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-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);
  margin-right: auto;
  margin-left: auto;
}
.content h2,
.content h3,
.content h4,
.content h5 {
  margin-top: var(--spacing-l);
  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-block;
  border-radius: 50px;
  border: 1px solid var(--color-grey);
  color: var(--color-text-dark);
  padding: 0 1.5rem;
  height: 40px;
  line-height: 39px;
  font-family: var(--display-family);
  font-size: var(--font-size);
  text-align: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 50em) {
  .btn, input[type=submit],
  input[type=reset],
  input[type=button] {
    padding: 0 2rem;
    height: 47px;
    line-height: 46px;
  }
}
.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 {
  border-color: var(--color-grey-dark);
  outline: 0;
  color: var(--color-grey-dark);
  text-decoration: none;
  position: relative;
  top: -1px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.btn--primary, input[type=submit],
input[type=reset],
input[type=button] {
  background-color: var(--color-primary);
  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-tertiary);
  text-decoration: none !important;
  color: #fff !important;
}

.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-small);
  padding: 0 1.5rem;
  height: 40px;
  line-height: 39px;
}
@media (min-width: 50em) {
  .btn--sm {
    height: 43px;
    line-height: 42px;
    padding: 0 1.75rem;
  }
}

.learn-more {
  font-family: var(--display-family);
  font-weight: 600;
}
.learn-more::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8308 0L9.85884 1.972L17.3238 9.437H0.98584V12.254H17.3238L9.85884 19.718L11.8308 21.69L22.6748 10.845L11.8308 0Z' fill='currentColor'/%3E%3C/svg%3E%0A") no-repeat center center;
  background-size: contain;
  margin-left: 10px;
}

.learn-more--white::after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8308 0L9.85884 1.972L17.3238 9.437H0.98584V12.254H17.3238L9.85884 19.718L11.8308 21.69L22.6748 10.845L11.8308 0Z' fill='%23fff'/%3E%3C/svg%3E%0A") no-repeat center center;
  background-size: contain;
}

.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;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 72px 29px rgba(0, 0, 0, 0.01), 0px 41px 24px rgba(0, 0, 0, 0.02), 0px 18px 18px rgba(0, 0, 0, 0.03), 0px 5px 10px rgba(0, 0, 0, 0.04), 0px 0px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .card {
    padding: var(--spacing-l) var(--spacing-xl);
  }
}
.card__title {
  margin-bottom: var(--spacing-s);
}
.card p {
  color: var(--color-text-light);
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--grid-gap);
  margin-top: var(--spacing-l);
}
@media (min-width: 50em) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 70em) {
  .links-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.links-grid.col-two {
  grid-template-columns: 1fr;
}
@media (min-width: 50em) {
  .links-grid.col-two {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 70em) {
  .links-grid.col-two {
    grid-template-columns: 1fr 1fr;
  }
}
.links-grid.col-three {
  grid-template-columns: 1fr;
}
@media (min-width: 50em) {
  .links-grid.col-three {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 70em) {
  .links-grid.col-three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.links-grid__item {
  display: block;
  transform: translateY(0);
  padding: var(--spacing);
  background-color: var(--color-secondary);
  border-radius: var(--border-radius);
  transition: 0.25s all ease-in-out;
  color: var(--color-text-base);
}
@media (min-width: 50em) {
  .links-grid__item {
    padding: var(--spacing-l);
  }
}
.links-grid__item--title {
  font-weight: 700;
  font-size: var(--font-size-small);
  transition: 0.25s all ease-in-out;
}
.links-grid__item--desc {
  color: #666666;
  font-size: var(--font-size-xsmall);
  line-height: 1.4;
}
.links-grid__item--link {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: var(--font-size-xsmall);
}
.links-grid__item p + * {
  margin-top: var(--spacing-s);
}
.links-grid__item:hover, .links-grid__item:focus {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.links-grid__item:hover .links-grid__item--title, .links-grid__item:focus .links-grid__item--title {
  color: var(--color-primary);
}

.dashboard .links-grid {
  display: grid;
  grid-gap: var(--grid-gap-sm);
}
.dashboard .links-grid__item {
  display: block;
  padding: var(--spacing);
}
.dashboard .links-grid__item--link {
  margin-bottom: 0;
}

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

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

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

section {
  margin-top: var(--block-spacing);
  margin-bottom: var(--block-spacing);
}
section.panel {
  margin: 0;
  padding-top: var(--block-spacing);
  padding-bottom: var(--block-spacing);
}
section.sm {
  margin-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}
section.primary {
  background-color: var(--color-primary);
}
section.secondary {
  background-color: var(--color-secondary);
}

.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-xsmall);
}
.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-small);
}

.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: relative;
}
.site-header.has-hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.site-header.has-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  z-index: 1;
}
.site-header.has-hero .site-header__contact li a, .site-header.has-hero .site-header__nav .menu > li:not(input[type=submit]):not(input[type=reset]):not(input[type=button]) > a, .site-header.has-hero .cart-customlocation {
  color: #fff;
}
.site-header.has-hero .menu .btn, .site-header.has-hero .menu input[type=submit],
.site-header.has-hero .menu input[type=reset],
.site-header.has-hero .menu input[type=button] {
  color: #fff;
  border-color: #fff;
}
.site-header.has-hero .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='white' 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;
}

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

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

.site-header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 56.25em) {
  .site-header__main {
    display: block;
  }
}
@media (min-width: 75.9375em) {
  .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 {
  display: none;
}
@media (min-width: 56.25em) {
  .site-header__nav {
    margin-top: var(--spacing-s);
    display: flex;
    align-items: center;
  }
}
@media (min-width: 75.9375em) {
  .site-header__nav {
    margin-top: 0;
  }
}

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

.cart-customlocation {
  display: inline-flex;
  position: relative;
}
.cart-customlocation svg {
  width: 35px;
}
.cart-customlocation span {
  font-size: 10px;
  text-align: center;
  background-color: var(--color-primary);
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: -5px;
  font-weight: 700;
}

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

.site-footer {
  margin-top: auto;
  background-color: var(--color-grey-light);
}

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

.site-footer__newsletter-wrap {
  position: relative;
  clear: both;
}
.site-footer__newsletter-wrap:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-grey-light);
  width: 100%;
  height: 50%;
  z-index: -1;
}

.site-footer__newsletter {
  background: linear-gradient(269.6deg, #558E0A 12.99%, #345903 89.59%);
  padding: var(--spacing-l) var(--spacing-l);
}
@media (min-width: 50em) {
  .site-footer__newsletter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl) var(--spacing-xl);
  }
}
@media (min-width: 70em) {
  .site-footer__newsletter {
    padding: var(--spacing-xl) var(--spacing-xxl);
  }
}
.site-footer__newsletter h2 {
  color: #fff;
}
.site-footer__newsletter form {
  margin: 0;
  position: relative;
}
.site-footer__newsletter form input[type=email] {
  background-color: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 70em) {
  .site-footer__newsletter form input[type=email] {
    min-width: 400px;
  }
}
.site-footer__newsletter form input[type=email]::-moz-placeholder {
  color: #fff;
}
.site-footer__newsletter form input[type=email]:-ms-input-placeholder {
  color: #fff;
}
.site-footer__newsletter form input[type=email]::placeholder {
  color: #fff;
}
.site-footer__newsletter form input[type=submit] {
  padding: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='16' fill='none' viewBox='0 0 26 16'%3E%3Cpath fill='%23fff' d='m17.156.684-1.138 1.023a.577.577 0 0 0 .012.892l4.685 4.044H.697c-.383 0-.697.282-.697.626v1.462c0 .344.314.626.697.626h20.018L16.03 13.4a.585.585 0 0 0-.012.892l1.138 1.023a.754.754 0 0 0 .987 0l7.652-6.878a.583.583 0 0 0 0-.887L18.143.684a.754.754 0 0 0-.987 0Z'/%3E%3C/svg%3E") no-repeat center center;
  font-size: 0;
  width: 25px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.site-footer__upper {
  padding: var(--spacing-l) 1em var(--spacing);
}
@media (min-width: 50em) {
  .site-footer__upper {
    padding: var(--spacing-xxl) 1em var(--spacing-xxl);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--grid-gap-xl);
  }
}

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

.site-footer__contact {
  margin: var(--spacing-l) 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-small);
}

.site-footer__menu {
  border-left: 1px solid var(--color-grey);
  padding-left: var(--spacing);
}
@media (min-width: 50em) {
  .site-footer__menu {
    padding: var(--spacing-s) var(--spacing);
  }
}
.site-footer__menu .site-footer__menu--title {
  font-weight: 700;
  font-family: var(--display-family);
  margin-bottom: var(--spacing-s);
  font-size: calc(0.9rem + 0.1vw);
}
.site-footer__menu ul {
  margin: 0;
  padding: 0;
}
.site-footer__menu ul li a {
  color: var(--color-text-base);
}

.site-footer__lower {
  padding: var(--spacing) 0;
  background-color: var(--body-background-color);
}
.site-footer__lower p {
  font-size: var(--font-size-xsmall);
}

.social-links {
  margin: 0;
}

.article {
  display: block;
  position: relative;
  margin-bottom: var(--spacing-l);
}
.article .article__image {
  position: relative;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-text-base);
  margin-bottom: var(--spacing);
}
.article .article__image:after {
  content: "";
  padding-top: 66.6666666%;
  display: inline-block;
}
.article .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.article h4 {
  color: var(--color-text-base);
  margin: var(--spacing-xs) 0;
}
.article .article__date {
  color: #666;
  font-size: var(--font-size-small);
}
.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);
}
.go-back::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='%23558E0A' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.8308 0L9.85884 1.972L17.3238 9.437H0.98584V12.254H17.3238L9.85884 19.718L11.8308 21.69L22.6748 10.845L11.8308 0Z' fill='%23558E0A'/%3E%3C/svg%3E%0A") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  transform: rotate(180deg);
}

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: 80%;
  height: 100%;
  z-index: 100;
  background: white;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s ease;
  padding: 1.5rem;
}
@media (min-width: 56.25em) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .menu {
  padding: 0;
  margin: var(--spacing-l) 0 0 0;
}
.mobile-menu .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) {
  margin: var(--spacing-s) 0;
  border-bottom: 1px solid var(--color-grey-light);
}
.mobile-menu .menu > li:not(.btn):not(input[type=submit]):not(input[type=reset]):not(input[type=button]) a {
  font-size: var(--font-size-h4);
  color: var(--color-text-base);
  font-weight: 700;
}
.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='%23231F20' d='m4.5 5 .382-.34L9 .943 8.235 0 4.5 3.375.765 0 0 .944 4.118 4.66 4.5 5Z'/%3e%3c/svg%3e") no-repeat center center;
  background-size: contain;
  width: 12px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 65%;
  transform: translateY(-65%);
  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: 56.25em) {
  #hamburger {
    display: none;
  }
}
#hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#hamburger.is-toggled span {
  background: #fff;
}

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

#hamburger span:nth-child(2), #hamburger span:nth-child(3) {
  top: 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%;
}

main.dashboard {
  background-color: var(--color-grey-light);
  padding: var(--spacing-l) 0;
}
@media (min-width: 70em) {
  main.dashboard {
    padding: calc(var(--spacing-xl) * 2) 0;
  }
}
main.dashboard .card {
  max-width: 550px;
  margin: 0 auto;
}
main.dashboard .card h3 + p {
  margin-top: var(--spacing-s);
}
main.dashboard .card p a {
  color: var(--color-text-light);
  text-decoration: underline;
}
main.dashboard .um {
  margin: 0 !important;
  max-width: inherit;
  overflow: hidden;
}
main.dashboard .um input[type=email], main.dashboard .um input[type=number], main.dashboard .um input[type=search], main.dashboard .um input[type=text], main.dashboard .um input[type=tel], main.dashboard .um input[type=url], main.dashboard .um input[type=password], main.dashboard .um textarea, main.dashboard .um select {
  width: 100%;
  font-size: var(--font-size-small);
}
main.dashboard .um label {
  margin: 0.5em 0 0.25em;
  font-size: var(--font-size-small);
}
main.dashboard .um h4 {
  color: var(--color-text-base);
}
main.dashboard .um .select2-container .select2-selection--single, main.dashboard .um .select2-container--default .select2-selection--single .select2-selection__arrow {
  border-width: 2px;
  border-radius: var(--border-radius);
  border-color: #d9d9d9;
  font-size: var(--font-size-small);
  height: 40px;
}
@media (min-width: 50em) {
  main.dashboard .um .select2-container .select2-selection--single, main.dashboard .um .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
  }
}
main.dashboard .um .select2-container .select2-selection--single .select2-selection__rendered, main.dashboard .um .select2-container--default .select2-selection--single .select2-selection__arrow .select2-selection__rendered {
  font-size: var(--font-size-small);
  line-height: 40px;
}
@media (min-width: 50em) {
  main.dashboard .um .select2-container .select2-selection--single .select2-selection__rendered, main.dashboard .um .select2-container--default .select2-selection--single .select2-selection__arrow .select2-selection__rendered {
    line-height: 45px;
  }
}
main.dashboard .um .select2-results__option {
  font-size: var(--font-size-small);
}
main.dashboard .um .um-field-checkbox input[type=checkbox] {
  display: none;
}
main.dashboard .um .um-field-checkbox-option {
  margin-left: 5px;
}
main.dashboard .um .um-field-error {
  color: var(--color-error);
  font-size: var(--font-size-small);
  line-height: 1.35;
  margin-top: var(--spacing-xs);
}
main.dashboard .um .um-field-error span {
  margin-right: 5px;
}
main.dashboard .um .um-postmessage {
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  main.dashboard .um .um-half {
    width: 48%;
  }
  main.dashboard .um .um-left {
    float: left;
  }
  main.dashboard .um .um-right {
    float: right;
  }
}
main.dashboard .um .um-row {
  margin-bottom: 0 !important;
}
main.dashboard .um .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: var(--grid-gap-sm);
}
main.dashboard .um .um-button, main.dashboard .um .um-request-button {
  display: block;
  width: 100%;
  border-radius: 50px !important;
  margin: 0.75rem 0 0.5rem 0;
  border: 0;
  color: #fff;
  padding: 0 1.5rem;
  height: 40px;
  line-height: 39px;
  font-family: var(--display-family);
  font-size: var(--font-size);
  text-align: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 50em) {
  main.dashboard .um .um-button, main.dashboard .um .um-request-button {
    padding: 0 2rem;
    height: 47px;
    line-height: 46px;
  }
}
main.dashboard .um .um-button.um-alt {
  border: 1px solid var(--color-grey);
  color: var(--color-text-dark);
}
main.dashboard .um .um-request-button {
  padding: 0 1.25rem;
  font-size: var(--font-size-small);
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary) !important;
  background-color: #fff;
  width: auto;
  display: inline-block;
}
main.dashboard .um .um-link-alt {
  color: var(--color-text-dark);
  text-decoration: underline;
  font-size: var(--font-size-small);
}
main.dashboard .um .um-account-meta-img, main.dashboard .um .um-account-profile-link {
  display: none;
}
main.dashboard .um .um-tip {
  margin-left: var(--spacing-xs);
}
main.dashboard .um .um-account-side ul li a {
  display: flex;
  align-items: center;
  position: relative;
  height: 36px;
}
main.dashboard .um .um-account-side ul li a span:not(.um-account-arrow) {
  position: relative;
}
main.dashboard .um .um-account-side ul li a span:not(.um-account-arrow) i {
  width: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
main.dashboard .um .um-account-side ul li a .um-account-arrow {
  top: 50%;
  transform: translateY(-50%);
}
main.dashboard .message {
  display: none;
  padding: var(--spacing-s) var(--spacing);
  border: 2px solid var(--color-grey-light);
  font-size: var(--font-size-small);
  border-radius: var(--border-radius);
}
main.dashboard .message.success {
  border-color: var(--color-primary);
  color: var(--color-text-base);
  display: block;
}
main.dashboard .message.error {
  border-color: var(--color-error);
  color: var(--color-text-base);
  display: block;
}

main.dashboard + .site-footer__newsletter-wrap:before {
  top: 0;
}

main.dashboard + .site-footer__newsletter-wrap + .site-footer {
  background-color: #fff;
}
main.dashboard + .site-footer__newsletter-wrap + .site-footer .site-footer__lower {
  background-color: var(--color-grey-light);
}

.dashboard__layout {
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  .dashboard__layout {
    display: grid;
    grid-gap: var(--grid-gap-sm);
    grid-template-columns: 1fr 3fr;
  }
}
@media (max-width: 49.99em) {
  .dashboard__layout .flex {
    margin-top: 0;
  }
}
.dashboard__layout--sidebar {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 72px 29px rgba(0, 0, 0, 0.01), 0px 41px 24px rgba(0, 0, 0, 0.02), 0px 18px 18px rgba(0, 0, 0, 0.03), 0px 5px 10px rgba(0, 0, 0, 0.04), 0px 0px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .dashboard__layout--sidebar {
    padding: var(--spacing-l) var(--spacing);
  }
}
.dashboard__layout--sidebar ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 49.99em) {
  .dashboard__layout--sidebar ul {
    display: none;
  }
}
.dashboard__layout--sidebar ul li {
  padding: var(--spacing-s) var(--spacing);
  border-radius: var(--border-radius);
  transition: 0.25s all ease-in-out;
}
.dashboard__layout--sidebar ul li a {
  padding: 0;
  font-size: var(--font-size-small);
  color: var(--color-text-base);
}
.dashboard__layout--sidebar ul li:hover, .dashboard__layout--sidebar ul li:focus {
  background: rgba(85, 142, 10, 0.05);
}
.dashboard__layout--sidebar ul li:hover a, .dashboard__layout--sidebar ul li:focus a {
  color: var(--color-primary);
}
.dashboard__layout--sidebar ul li:hover:before, .dashboard__layout--sidebar ul li:focus:before {
  filter: invert(46%) sepia(68%) saturate(767%) hue-rotate(46deg) brightness(87%) contrast(92%);
}
.dashboard__layout--sidebar ul li.menu-icon {
  padding-left: 2.3em;
  position: relative;
}
.dashboard__layout--sidebar ul li.menu-icon:before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: var(--spacing-s);
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.25s all ease-in-out;
}
.dashboard__layout--sidebar ul li.home:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.5 7.872 10 2.04l7.5 5.833v9.167a1.666 1.666 0 0 1-1.667 1.666H4.167A1.667 1.667 0 0 1 2.5 17.04V7.872Z'/%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M7.5 18.705v-8.333h5v8.333'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.data:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 7.039c4.142 0 7.5-1.12 7.5-2.5 0-1.381-3.358-2.5-7.5-2.5-4.142 0-7.5 1.119-7.5 2.5 0 1.38 3.358 2.5 7.5 2.5ZM17.5 10.372c0 1.383-3.333 2.5-7.5 2.5s-7.5-1.117-7.5-2.5'/%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.5 4.539v11.666c0 1.384 3.333 2.5 7.5 2.5s7.5-1.116 7.5-2.5V4.54'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.members-resources:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.667 2.039H5a1.667 1.667 0 0 0-1.667 1.666V17.04A1.666 1.666 0 0 0 5 18.705h10a1.667 1.667 0 0 0 1.667-1.666v-10l-5-5Z'/%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.667 2.039v5h5M13.333 11.205H6.667M13.333 14.539H6.667M8.333 7.872H6.667'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.groups:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cg stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(%23a)'%3E%3Cpath d='M14.167 17.872v-1.667a3.333 3.333 0 0 0-3.334-3.333H4.167a3.333 3.333 0 0 0-3.334 3.333v1.667M7.5 9.539a3.333 3.333 0 1 0 0-6.667 3.333 3.333 0 0 0 0 6.667ZM19.167 17.872v-1.667a3.333 3.333 0 0 0-2.5-3.225M13.333 2.98a3.333 3.333 0 0 1 0 6.459'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 .372h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.consultations:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9.167 16.205a6.667 6.667 0 1 0 0-13.333 6.667 6.667 0 0 0 0 13.333ZM17.5 17.872l-3.625-3.625'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.offers:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 2.039 2.5 5.372V17.04a1.667 1.667 0 0 0 1.667 1.666h11.666A1.667 1.667 0 0 0 17.5 17.04V5.372L15 2.04H5ZM2.5 5.372h15'/%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.333 8.705a3.333 3.333 0 0 1-6.666 0'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.documents:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.667 6.205H3.333c-.92 0-1.666.747-1.666 1.667v8.333c0 .92.746 1.667 1.666 1.667h13.334c.92 0 1.666-.746 1.666-1.667V7.872c0-.92-.746-1.667-1.666-1.667Z'/%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.333 17.872V4.54a1.667 1.667 0 0 0-1.666-1.667H8.333A1.667 1.667 0 0 0 6.667 4.54v13.333'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.account {
  margin-top: var(--spacing-l);
}
.dashboard__layout--sidebar ul li.account:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3E%3Cpath stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.667 17.872v-1.667a3.333 3.333 0 0 0-3.334-3.333H6.667a3.333 3.333 0 0 0-3.334 3.333v1.667M10 9.539a3.333 3.333 0 1 0 0-6.667 3.333 3.333 0 0 0 0 6.667Z'/%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul li.settings:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cg stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' clip-path='url(%23a)'%3E%3Cpath d='M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z'/%3E%3Cpath d='M16.167 12.5a1.375 1.375 0 0 0 .275 1.517l.05.05a1.666 1.666 0 0 1-.541 2.72 1.668 1.668 0 0 1-1.818-.362l-.05-.05a1.375 1.375 0 0 0-1.516-.275 1.374 1.374 0 0 0-.834 1.258v.142a1.667 1.667 0 0 1-3.333 0v-.075a1.375 1.375 0 0 0-.9-1.258 1.374 1.374 0 0 0-1.517.275l-.05.05a1.666 1.666 0 0 1-2.847-1.18 1.667 1.667 0 0 1 .489-1.179l.05-.05a1.375 1.375 0 0 0 .275-1.516 1.375 1.375 0 0 0-1.258-.834H2.5a1.667 1.667 0 0 1 0-3.333h.075a1.375 1.375 0 0 0 1.258-.9 1.375 1.375 0 0 0-.275-1.517l-.05-.05a1.667 1.667 0 1 1 2.359-2.358l.05.05a1.375 1.375 0 0 0 1.516.275H7.5a1.375 1.375 0 0 0 .833-1.258V2.5a1.667 1.667 0 0 1 3.334 0v.075a1.375 1.375 0 0 0 .833 1.258 1.375 1.375 0 0 0 1.517-.275l.05-.05a1.667 1.667 0 1 1 2.358 2.359l-.05.05a1.376 1.376 0 0 0-.275 1.516V7.5a1.375 1.375 0 0 0 1.258.833h.142a1.667 1.667 0 1 1 0 3.334h-.075a1.374 1.374 0 0 0-1.258.833v0Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
}
.dashboard__layout--sidebar ul .current_page_item {
  background: rgba(85, 142, 10, 0.05);
}
.dashboard__layout--sidebar ul .current_page_item a {
  color: var(--color-primary);
}
.dashboard__layout--sidebar ul .current_page_item:before {
  filter: invert(46%) sepia(68%) saturate(767%) hue-rotate(46deg) brightness(87%) contrast(92%);
}
.dashboard__layout--sidebar .dashboard__select {
  width: 100%;
}
@media (min-width: 50em) {
  .dashboard__layout--sidebar .dashboard__select {
    display: none;
  }
}
.dashboard__layout--main, .dashboard__layout--card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 72px 29px rgba(0, 0, 0, 0.01), 0px 41px 24px rgba(0, 0, 0, 0.02), 0px 18px 18px rgba(0, 0, 0, 0.03), 0px 5px 10px rgba(0, 0, 0, 0.04), 0px 0px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  margin-top: var(--spacing);
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .dashboard__layout--main, .dashboard__layout--card {
    margin-top: 0;
    padding: var(--spacing-l) var(--spacing-l);
  }
}
.dashboard__layout--main h3, .dashboard__layout--main h4, .dashboard__layout--card h3, .dashboard__layout--card h4 {
  color: var(--color-text-base);
}
.dashboard__layout--main > p, .dashboard__layout--card > p {
  font-size: var(--font-size-small);
}
@media (min-width: 70em) {
  .dashboard__layout--main > p, .dashboard__layout--card > p {
    max-width: 90%;
  }
}
.dashboard__layout--main ul, .dashboard__layout--card ul {
  list-style: disc;
  margin: 0.65em 0;
  padding-left: 2rem;
}
.dashboard__layout--main ol, .dashboard__layout--card ol {
  list-style: decimal;
  margin: 0.65em 0;
  padding-left: 2rem;
}
.dashboard__layout--main li, .dashboard__layout--card li {
  margin-bottom: 0.25em;
}
.dashboard__layout--main .accordion p, .dashboard__layout--main li, .dashboard__layout--card .accordion p, .dashboard__layout--card li {
  font-size: var(--font-size-small);
}
.dashboard__layout--main .resources + p, .dashboard__layout--card .resources + p {
  margin-top: var(--spacing);
}
.dashboard__layout--main .flex, .dashboard__layout--card .flex {
  margin-top: 0;
}
.dashboard__layout--main {
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .dashboard__layout--main {
    margin-top: 0;
    padding: var(--spacing-l) var(--spacing-xl);
  }
}

@media (min-width: 50em) {
  .toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.toolbar .search__form {
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  .toolbar .search__form {
    margin-top: 0;
  }
}
.toolbar .search__form .is-form-style input.is-search-input {
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 72px 29px rgba(0, 0, 0, 0.01), 0px 41px 24px rgba(0, 0, 0, 0.02), 0px 18px 18px rgba(0, 0, 0, 0.03), 0px 5px 10px rgba(0, 0, 0, 0.04), 0px 0px 0px rgba(0, 0, 0, 0.04);
  font-family: var(--display-family);
  height: 40px;
  min-width: 250px;
  position: relative;
}
.toolbar .search__form form label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='none' viewBox='0 0 25 25'%3E%3Cpath stroke='%23558E0A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.054 19.129a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM21.054 21.129l-4.35-4.35'/%3E%3C/svg%3E") no-repeat center center;
  background-size: 20px;
}

.card--sm {
  padding: var(--spacing-s) var(--spacing);
}
@media (min-width: 50em) {
  .card--sm {
    padding: var(--spacing) var(--spacing);
  }
}

.card--full {
  max-width: inherit !important;
}

.flex {
  width: calc(100% + var(--spacing));
  margin-left: calc(-1 * var(--spacing));
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  .flex .dashboard__layout--card {
    height: 100%;
  }
}
.flex > * {
  padding-left: var(--spacing);
}

.confirm {
  display: none;
}
.confirm > div:first-of-type {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0px;
  left: 0px;
  z-index: 998;
}
.confirm > div:last-of-type {
  padding: var(--spacing);
  background: white;
  position: fixed;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  border-radius: var(--border-radius);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 500px;
}
.confirm > div:last-of-type div:first-of-type {
  min-width: 150px;
  padding: 10px;
}
.confirm > div:last-of-type div:last-of-type {
  text-align: right;
}
.confirm > div .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-s);
}

.um-password .um-field-type_block .um-field-block div {
  text-align: left !important;
  margin: var(--spacing-s) 0;
}

meter#um-sp-password-strength-meter {
  border-radius: var(--border-radius);
  margin-top: var(--spacing-xs);
  margin-bottom: 0;
  display: block;
  height: 7.5px;
}
meter#um-sp-password-strength-meter div {
  border-radius: var(--border-radius);
}

#um-sp-password-strength-text .feedback .warning, #um-sp-password-strength-text .feedback .suggestions {
  font-size: var(--font-size-xsmall);
}

.um-login .um-notice.err {
  color: var(--color-error);
  margin-top: 5px;
}
.um-login .um-notice.err .um-icon-ios-close-empty {
  margin-right: 7px;
}

.wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .woocommerce div.product form.cart .button {
  background-color: var(--color-primary);
  border-radius: 50px;
  color: #fff;
  padding: 0 1.5rem;
  height: 40px;
  line-height: 39px;
  font-family: var(--display-family);
  font-size: var(--font-size);
  text-align: center;
  cursor: pointer;
  border: 0;
  transition: all 0.1s ease-in-out !important;
  opacity: 1;
}
@media (min-width: 50em) {
  .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .woocommerce div.product form.cart .button {
    padding: 0 2rem;
    height: 47px;
    line-height: 46px;
  }
}
.wc-block-cart__submit-button:hover, .wc-block-cart__submit-button:focus, .wc-block-components-checkout-place-order-button:hover, .wc-block-components-checkout-place-order-button:focus, .woocommerce div.product form.cart .button:hover, .woocommerce div.product form.cart .button:focus {
  background-color: var(--color-tertiary);
  text-decoration: none;
  color: #fff;
  top: -1px;
}

.wc-block-cart-items thead {
  background: none !important;
}
.wc-block-cart-items tbody {
  border-top: 1px solid hsla(0deg, 0%, 7%, 0.11) !important;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description > p, .wc-block-components-product-details.wc-block-components-product-details li {
  font-size: var(--font-size-xsmall);
}

.woocommerce .woocommerce-customer-details address {
  font-size: var(--font-size-small);
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url], .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  height: auto;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  line-height: normal;
}

.woocommerce div.product form.cart, .woocommerce-thankyou-order-details {
  margin-top: var(--spacing-s) !important;
}

.product .price {
  font-weight: 700;
  margin-top: var(--spacing-xs);
  font-size: var(--font-size-h3);
}

.woocommerce div.product .woocommerce-tabs .panel p {
  max-width: 1000px;
}

.wapf-field-input textarea {
  min-height: 100px;
}

.product_meta .posted_in {
  display: none;
}

.is-large.wc-block-cart .wc-block-cart-items {
  border-collapse: collapse;
}

.inline-checkbox {
  display: flex;
  gap: 5px;
  align-items: center;
}
.inline-checkbox label {
  margin: 0;
}
.inline-checkbox .wapf-field-label {
  order: 2;
}
.inline-checkbox .wapf-field-input {
  order: 1;
}

.woocommerce div.product .product_title {
  font-size: var(--font-size-h2);
}

.woocommerce div.product form.cart .variations {
  margin-top: 0;
}
.woocommerce div.product form.cart .variations th {
  line-height: inherit;
}
.woocommerce div.product form.cart .variations tr, .woocommerce div.product form.cart .variations td {
  width: 100%;
  display: block;
  border-bottom: 0;
  padding: 0;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 400;
}

.woocommerce div.product form.cart .variations select {
  font-size: var(--font-size-small);
}

.wapf-field-input textarea, .wapf-field-input input[type=email], .wapf-field-input input[type=number], .wapf-field-input input[type=text], .wapf-field-input input[type=url], .wapf-field-input select, .wapf-field-input textarea {
  font-size: var(--font-size-small);
}

.qty-option {
  display: inline-flex;
  align-items: center;
  float: left;
  gap: 10px;
  margin-right: 15px;
}
.qty-option label {
  margin: 0;
}

.add-to-basket {
  border-top: 1px solid #cfc8d8;
  overflow: hidden;
  padding-top: var(--spacing);
  margin-top: var(--spacing-s);
}

.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 .site-header__inner, .dashboard .accordion-section .site-footer__inner, .dashboard .accordion-section .site-footer__upper {
  padding: 0;
}

.contact {
  display: flex;
  margin: var(--spacing-l) 0;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius);
  color: var(--color-text-base);
  border: 1px solid rgba(215, 227, 239, 0.5);
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .contact {
    padding: var(--spacing) var(--spacing-l);
  }
}
.contact .contact__avatar {
  margin-right: var(--spacing);
  flex-shrink: 0;
}
@media (min-width: 50em) {
  .contact .contact__avatar {
    margin-right: var(--spacing-l);
  }
}
.contact .contact__avatar img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
@media (min-width: 50em) {
  .contact .contact__avatar img {
    width: 90px;
    height: 90px;
  }
}
.contact .contact__content--title {
  font-weight: 700;
  transition: 0.25s all ease-in-out;
  font-size: var(--font-size) !important;
}
.contact .contact__content--desc {
  color: #666666;
}
.contact .contact__content .has-icon {
  margin-bottom: 0;
}
.contact .contact__content p {
  font-size: var(--font-size-small);
}
.contact .contact__content p a {
  color: var(--color-primary);
}
.contact p + * {
  margin-top: var(--spacing-s);
}
.contact:hover, .contact:focus {
  text-decoration: none;
}

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

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

.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.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 {
  background-color: var(--color-grey-light);
  padding: var(--spacing-l);
  border: 1px solid rgba(201, 201, 201, 0.3);
  border-radius: var(--border-radius-l);
  text-align: center;
}
@media (min-width: 50em) {
  .cta {
    text-align: inherit;
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--grid-gap);
  }
}

.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing);
  margin-top: var(--spacing);
}
@media (min-width: 50em) {
  .cta__buttons {
    margin-top: 0;
  }
}
.cta__buttons p {
  margin: 0;
}

.dashboard__article {
  display: block;
  position: relative;
}
.dashboard__article .article__image {
  position: relative;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-text-base);
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .dashboard__article .article__image {
    margin-bottom: 0;
    margin-right: var(--spacing-s);
  }
}
.dashboard__article .article__image:after {
  content: "";
  padding-top: 66.6666666%;
  display: inline-block;
}
.dashboard__article .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.dashboard__article .dashboard__article--subtitle {
  margin-bottom: var(--spacing);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.dashboard__article p {
  font-size: var(--font-size-small);
}
.dashboard__article:hover, .dashboard__article:focus {
  text-decoration: none;
}

.dashboard--list {
  margin: var(--spacing) 0 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.dashboard--list li {
  margin-bottom: var(--spacing-s);
  border-bottom: 1px solid var(--color-grey);
}
.dashboard--list li a {
  color: var(--color-text-base);
  font-size: var(--font-size-xsmall);
  transition: 0.25s all ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: var(--spacing-s);
}
.dashboard--list li a .icon {
  margin-top: -2px;
}
.dashboard--list li a svg, .dashboard--list li a:hover, .dashboard--list li a:focus {
  color: var(--color-primary);
}
.dashboard--list li:last-child {
  border-bottom: 0;
}

.dashboard__shortcut {
  margin-bottom: 0;
  color: var(--color-text-base);
  font-size: var(--font-size-small);
  transition: 0.25s all ease-in-out;
}
.dashboard__shortcut .icon {
  background-color: var(--color-grey-light);
  padding: var(--spacing-s);
  box-sizing: content-box;
  border-radius: var(--border-radius);
  color: var(--color-primary);
}

.events {
  background-color: var(--color-secondary);
  text-align: center;
}

.single-event {
  color: var(--color-text-base);
}
.single-event:hover, .single-event:focus {
  text-decoration: none;
}
.single-event.grid {
  margin-bottom: var(--spacing-l);
  display: block;
  text-align: left;
}

.corner-banner {
  position: absolute;
  text-align: center;
  transform: rotate(-45deg);
  top: 25px;
  left: -58px;
  z-index: 1;
  padding: 3px 0;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  width: 200px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.events__title {
  margin-bottom: var(--spacing-xxl);
}

.event__image {
  position: relative;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-text-base);
  margin-bottom: var(--spacing);
  overflow: hidden;
}
.event__image:after {
  content: "";
  padding-top: 66.6666666%;
  display: inline-block;
}
.event__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.event-swiper {
  text-align: left;
  margin-top: var(--spacing);
}
.event-swiper .swiper-button-prev,
.event-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
}
.event-swiper .swiper-button-prev .icon,
.event-swiper .swiper-button-next .icon {
  width: 40px;
  height: 40px;
}

.form__wrapper {
  display: flex;
}
.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;
}

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

.image-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: var(--color-text-base);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  padding-top: var(--spacing-l);
  height: 250px;
}
@media (min-width: 50em) {
  .image-hero {
    height: 400px;
  }
}
.image-hero:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.image-hero .container, .image-hero .container-s, .image-hero .site-header__inner, .image-hero .site-footer__inner, .image-hero .site-footer__upper {
  width: 100%;
}
.image-hero.home {
  height: 400px;
}
@media (min-width: 50em) {
  .image-hero.home {
    height: 90vh;
    max-height: 700px;
  }
}

.image-hero__content {
  padding-bottom: var(--spacing-l);
}
@media (min-width: 50em) {
  .image-hero__content {
    width: 75%;
    padding-bottom: calc(1.5 * var(--spacing-l));
  }
}
@media (min-width: 70em) {
  .image-hero__content {
    width: 55%;
    padding-bottom: calc(2 * var(--spacing-l));
  }
}
.image-hero__content h1, .image-hero__content h2, .image-hero__content h3, .image-hero__content h4, .image-hero__content h5, .image-hero__content p, .image-hero__content li, .image-hero__content .learn-more {
  color: #fff;
}

.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);
  }
}
@media (min-width: 50em) {
  .intro .half-800 + .two-fifth-800 {
    padding-left: var(--spacing-xl);
  }
}

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

.latest-news__title {
  margin: var(--spacing-xl) 0 var(--spacing-l);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.latest-news__article {
  display: block;
  position: relative;
  margin-bottom: var(--spacing-l);
}
@media (min-width: 50em) {
  .latest-news__article {
    margin-right: var(--grid-gap);
    padding-right: var(--grid-gap);
    border-right: 1px solid var(--color-grey);
  }
}
.latest-news__article .article__image {
  position: relative;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-text-base);
  margin-bottom: var(--spacing);
}
.latest-news__article .article__image:after {
  content: "";
  padding-top: 66.6666666%;
  display: inline-block;
}
.latest-news__article .article__image.placeholder img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.latest-news__article h4 {
  color: var(--color-text-base);
}
.latest-news__article .article__read-more {
  color: var(--color-primary);
  text-decoration: underline;
}
.latest-news__article:hover, .latest-news__article:focus {
  text-decoration: none;
}

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

.image__styled {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .image__styled {
    margin: 0;
  }
}
.image__styled:before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='none' viewBox='0 0 50 50'%3E%3Cpath stroke='%23558E0A' stroke-width='2' d='m1.702 46.64 1.27-43.668 43.667-1.27L1.702 46.639Z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 3;
}
@media (min-width: 50em) {
  .image__styled:before {
    width: 60px;
    height: 60px;
    left: -15px;
    top: -15px;
  }
}
.image__styled:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='69' height='54' fill='none' viewBox='0 0 69 54'%3E%3Cpath stroke='%23558E0A' stroke-width='2' d='M68.218 15.947 20.492 52.309M68.218.795.606 52.309'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  width: 60px;
  height: 50px;
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: 2;
}
@media (min-width: 50em) {
  .image__styled:after {
    width: 80px;
    height: 70px;
  }
}
.image__styled img {
  border-radius: var(--border-radius);
}

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

.memberships__intro {
  margin: 0 auto var(--spacing-xl) auto;
  text-align: center;
  max-width: var(--content-width);
}

.membership__block {
  background-color: #fff;
  text-align: center;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing);
}
@media (min-width: 50em) {
  .membership__block {
    height: 100%;
    margin-bottom: 0;
  }
}
.membership__block .membership__block-title {
  background-color: var(--color-primary);
  color: #fff;
  padding: var(--spacing-s);
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
  text-transform: uppercase;
  font-size: var(--font-size-xsmall);
  letter-spacing: 1px;
  font-weight: 700;
}
.membership__block .membership__block-price {
  color: var(--color-text-base);
}
.membership__block .membership__block-price span {
  font-size: var(--font-size-small);
  color: #666;
  letter-spacing: 0;
  font-weight: 400;
}
.membership__block .membership__block-label {
  border: 1px solid #666;
  border-radius: 50px;
  display: inline-block;
  margin: var(--spacing) auto;
  font-size: 14px;
  padding: 0.25em 1em;
}
.membership__block .membership__block-content {
  padding: var(--spacing) var(--spacing);
}
@media (min-width: 50em) {
  .membership__block .membership__block-content {
    padding: var(--spacing) var(--spacing-l);
  }
}
.membership__block .membership__block-desc {
  margin-top: 0;
  font-size: var(--font-size-xsmall);
}
.membership__block .tick-list {
  margin: 1.5rem auto;
  display: inline-block;
}
.membership__block p, .membership__block li {
  font-size: var(--font-size-small);
  color: #666;
}

.resources {
  border-top: 1px solid var(--color-grey-light);
  border-bottom: 1px solid var(--color-grey-light);
  padding: var(--spacing-l) 0;
}

.dashboard .resources {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
}
.dashboard .resources .container, .dashboard .resources .container-s, .dashboard .resources .site-header__inner, .dashboard .resources .site-footer__inner, .dashboard .resources .site-footer__upper {
  padding: 0;
}
.dashboard .resources h2 {
  font-size: var(--font-size-h4);
  margin-top: var(--spacing);
}
.dashboard .resources .links-grid {
  margin-top: var(--spacing);
}

.dashboard .subpages {
  margin: 0;
}
.dashboard .subpages .container, .dashboard .subpages .container-s, .dashboard .subpages .site-header__inner, .dashboard .subpages .site-footer__inner, .dashboard .subpages .site-footer__upper {
  padding: 0;
}
.dashboard .subpages h2 {
  font-size: var(--font-size-h4);
  margin-top: var(--spacing);
}
.dashboard .subpages .links-grid {
  margin-top: var(--spacing);
}

.text-and-list {
  background-color: var(--color-secondary);
}

.text-and-list__intro {
  margin-bottom: var(--spacing-xl);
}

.text-and-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--grid-gap-sm);
  margin-top: var(--spacing-l);
}
@media (min-width: 50em) {
  .text-and-list__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 70em) {
  .text-and-list__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.text-and-list__item {
  padding-left: var(--spacing);
  position: relative;
}
.text-and-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 22px;
  width: 2px;
  background-color: var(--color-primary);
}
.text-and-list__item .small {
  margin-top: var(--spacing-s);
}

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

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

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