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

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

ol[role="list"], ul[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, :after, :before {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
  }
}

:root {
  --container-max-width: 90rem;
  --color-white: #fff;
  --color-black: #000;
  --color-orange: #f08108;
  --color-red: #d20a10;
  --color-blue: #31b7bc;
  --color-blue-15: #31b7bc26;
  --color-gray: #394348;
  --color-gray-10: #3943481a;
  --color-gray-5: #3943480d;
  --color-primary: var(--color-orange);
  --color-secondary: var(--color-blue);
  --color-cta: var(--color-red);
  --color-alert: var(--color-red);
  --primary-font: "Roboto";
  --secondary-font: "Roboto Condensed";
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --text-size-small: .875rem;
  --text-size-smaller: .875rem;
  --text-size-base: 1rem;
  --text-size-larger: clamp(1.125rem, 1rem + .625vw, 1.25rem);
  --text-size-large: clamp(1.25rem, 1.125rem + .625vw, 1.5rem);
  --text-size-h1: clamp(2.25rem, 1.75rem + 2.5vw, 4.5rem);
  --text-size-h2: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --text-size-h2-large: clamp(1.75rem, 1.5rem + 2.125vw, 3rem);
  --text-size-h3: clamp(1.25rem, 1.125rem + .625vw, 1.75rem);
  --text-size-h4: clamp(1.25rem, 1.125rem + .625vw, 1.5rem);
  --space-4: .25rem;
  --space-8: .5rem;
  --space-12: .75rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-32: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --space-36: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem);
  --space-40: clamp(2rem, 1.75rem + 1.25vw, 2.5rem);
  --space-48: clamp(2.25rem, 2rem + 1.25vw, 3rem);
  --space-56: clamp(2.75rem, 2.5rem + 1.25vw, 3.5rem);
  --space-64: clamp(3rem, 2.75rem + 1.25vw, 4rem);
  --space-72: clamp(3.5rem, 3.25rem + 1.25vw, 4.5rem);
  --space-80: clamp(4rem, 3.75rem + 1.25vw, 5rem);
  --space-96: clamp(4.75rem, 4.5rem + 1.25vw, 6rem);
  --space-112: clamp(5.75rem, 5.5rem + 1.25vw, 7rem);
  --space-120: clamp(6rem, 5.5rem + 2.5vw, 8rem);
  --space-128: clamp(6.5rem, 6rem + 2.5vw, 8rem);
  --space-144: clamp(7.25rem, 6.75rem + 2.5vw, 9rem);
  --space-160: clamp(8rem, 7.5rem + 2.5vw, 10rem);
  --space-192: clamp(9.75rem, 9.25rem + 2.5vw, 12rem);
  --space-6-24: clamp(.375rem, .25rem + .625vw, 1.5rem);
  --space-12-36: clamp(.75rem, .5rem + 1.25vw, 2.25rem);
  --space-18-48: clamp(1.125rem, .875rem + 1.25vw, 3rem);
  --space-24-72: clamp(1.5rem, 1rem + 2.5vw, 4.5rem);
  --space-36-96: clamp(2.25rem, 1.75rem + 2.5vw, 6rem);
  --space-48-144: clamp(3rem, 2.25rem + 3.75vw, 9rem);
  --space-72-192: clamp(4.5rem, 3.5rem + 5vw, 12rem);
  --space-96-288: clamp(6rem, 4.5rem + 7.5vw, 18rem);
  --animation-primary: all .5s cubic-bezier(.7, 0, .3, 1);
  --animation-secondary: all .3s cubic-bezier(.7, 0, .3, 1);
  --shadow-primary: 4px 4px 16px #00000080;
  --shadow-secondary: 0 4px 12px #00000059;
  --border-radius-small: var(--space-4);
  --border-radius-medium: var(--space-16);
  --border-radius-large: var(--space-32);
}

.grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  display: grid;
}

@media screen and (width >= 60em) {
  .grid {
    gap: 2.5rem;
  }
}

.align-self-end {
  align-self: end;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-end {
  justify-self: end;
}

.col-1 {
  grid-column-end: span 1;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-1 {
    grid-column-start: 2;
  }
}

.row-1 {
  grid-row-end: span 1;
}

.row-offset-1 {
  grid-row-start: 2;
}

.col-2 {
  grid-column-end: span 2;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-2 {
    grid-column-start: 3;
  }
}

.row-2 {
  grid-row-end: span 2;
}

.row-offset-2 {
  grid-row-start: 3;
}

.col-3 {
  grid-column-end: span 3;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-3 {
    grid-column-start: 4;
  }
}

.row-3 {
  grid-row-end: span 3;
}

.row-offset-3 {
  grid-row-start: 4;
}

.col-4 {
  grid-column-end: span 4;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-4 {
    grid-column-start: 5;
  }
}

.row-4 {
  grid-row-end: span 4;
}

.row-offset-4 {
  grid-row-start: 5;
}

.col-5 {
  grid-column-end: span 5;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-5 {
    grid-column-start: 6;
  }
}

.row-5 {
  grid-row-end: span 5;
}

.row-offset-5 {
  grid-row-start: 6;
}

.col-6 {
  grid-column-end: span 6;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-6 {
    grid-column-start: 7;
  }
}

.row-6 {
  grid-row-end: span 6;
}

.row-offset-6 {
  grid-row-start: 7;
}

.col-7 {
  grid-column-end: span 7;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-7 {
    grid-column-start: 8;
  }
}

.row-7 {
  grid-row-end: span 7;
}

.row-offset-7 {
  grid-row-start: 8;
}

.col-8 {
  grid-column-end: span 8;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-8 {
    grid-column-start: 9;
  }
}

.row-8 {
  grid-row-end: span 8;
}

.row-offset-8 {
  grid-row-start: 9;
}

.col-9 {
  grid-column-end: span 9;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-9 {
    grid-column-start: 10;
  }
}

.row-9 {
  grid-row-end: span 9;
}

.row-offset-9 {
  grid-row-start: 10;
}

.col-10 {
  grid-column-end: span 10;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-10 {
    grid-column-start: 11;
  }
}

.row-10 {
  grid-row-end: span 10;
}

.row-offset-10 {
  grid-row-start: 11;
}

.col-11 {
  grid-column-end: span 11;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-11 {
    grid-column-start: 12;
  }
}

.row-11 {
  grid-row-end: span 11;
}

.row-offset-11 {
  grid-row-start: 12;
}

.col-12 {
  grid-column-end: span 12;
  display: block;
}

@media screen and (width >= 60em) {
  .col-offset-12 {
    grid-column-start: 13;
  }
}

.row-12 {
  grid-row-end: span 12;
}

.row-offset-12 {
  grid-row-start: 13;
}

@media (width >= 480px) {
  .col-xs-1 {
    grid-column-end: span 1;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-1 {
    grid-column-start: 2;
  }
}

@media (width >= 480px) {
  .row-xs-1 {
    grid-row-end: span 1;
  }

  .row-offset-xs-1 {
    grid-row-start: 2;
  }

  .col-xs-2 {
    grid-column-end: span 2;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-2 {
    grid-column-start: 3;
  }
}

@media (width >= 480px) {
  .row-xs-2 {
    grid-row-end: span 2;
  }

  .row-offset-xs-2 {
    grid-row-start: 3;
  }

  .col-xs-3 {
    grid-column-end: span 3;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-3 {
    grid-column-start: 4;
  }
}

@media (width >= 480px) {
  .row-xs-3 {
    grid-row-end: span 3;
  }

  .row-offset-xs-3 {
    grid-row-start: 4;
  }

  .col-xs-4 {
    grid-column-end: span 4;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-4 {
    grid-column-start: 5;
  }
}

@media (width >= 480px) {
  .row-xs-4 {
    grid-row-end: span 4;
  }

  .row-offset-xs-4 {
    grid-row-start: 5;
  }

  .col-xs-5 {
    grid-column-end: span 5;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-5 {
    grid-column-start: 6;
  }
}

@media (width >= 480px) {
  .row-xs-5 {
    grid-row-end: span 5;
  }

  .row-offset-xs-5 {
    grid-row-start: 6;
  }

  .col-xs-6 {
    grid-column-end: span 6;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-6 {
    grid-column-start: 7;
  }
}

@media (width >= 480px) {
  .row-xs-6 {
    grid-row-end: span 6;
  }

  .row-offset-xs-6 {
    grid-row-start: 7;
  }

  .col-xs-7 {
    grid-column-end: span 7;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-7 {
    grid-column-start: 8;
  }
}

@media (width >= 480px) {
  .row-xs-7 {
    grid-row-end: span 7;
  }

  .row-offset-xs-7 {
    grid-row-start: 8;
  }

  .col-xs-8 {
    grid-column-end: span 8;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-8 {
    grid-column-start: 9;
  }
}

@media (width >= 480px) {
  .row-xs-8 {
    grid-row-end: span 8;
  }

  .row-offset-xs-8 {
    grid-row-start: 9;
  }

  .col-xs-9 {
    grid-column-end: span 9;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-9 {
    grid-column-start: 10;
  }
}

@media (width >= 480px) {
  .row-xs-9 {
    grid-row-end: span 9;
  }

  .row-offset-xs-9 {
    grid-row-start: 10;
  }

  .col-xs-10 {
    grid-column-end: span 10;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-10 {
    grid-column-start: 11;
  }
}

@media (width >= 480px) {
  .row-xs-10 {
    grid-row-end: span 10;
  }

  .row-offset-xs-10 {
    grid-row-start: 11;
  }

  .col-xs-11 {
    grid-column-end: span 11;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-11 {
    grid-column-start: 12;
  }
}

@media (width >= 480px) {
  .row-xs-11 {
    grid-row-end: span 11;
  }

  .row-offset-xs-11 {
    grid-row-start: 12;
  }

  .col-xs-12 {
    grid-column-end: span 12;
    display: block;
  }
}

@media screen and (width >= 480px) and (width >= 60em) {
  .col-offset-xs-12 {
    grid-column-start: 13;
  }
}

@media (width >= 480px) {
  .row-xs-12 {
    grid-row-end: span 12;
  }

  .row-offset-xs-12 {
    grid-row-start: 13;
  }
}

@media (width >= 768px) {
  .col-sm-1 {
    grid-column-end: span 1;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-1 {
    grid-column-start: 2;
  }
}

@media (width >= 768px) {
  .row-sm-1 {
    grid-row-end: span 1;
  }

  .row-offset-sm-1 {
    grid-row-start: 2;
  }

  .col-sm-2 {
    grid-column-end: span 2;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-2 {
    grid-column-start: 3;
  }
}

@media (width >= 768px) {
  .row-sm-2 {
    grid-row-end: span 2;
  }

  .row-offset-sm-2 {
    grid-row-start: 3;
  }

  .col-sm-3 {
    grid-column-end: span 3;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-3 {
    grid-column-start: 4;
  }
}

@media (width >= 768px) {
  .row-sm-3 {
    grid-row-end: span 3;
  }

  .row-offset-sm-3 {
    grid-row-start: 4;
  }

  .col-sm-4 {
    grid-column-end: span 4;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-4 {
    grid-column-start: 5;
  }
}

@media (width >= 768px) {
  .row-sm-4 {
    grid-row-end: span 4;
  }

  .row-offset-sm-4 {
    grid-row-start: 5;
  }

  .col-sm-5 {
    grid-column-end: span 5;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-5 {
    grid-column-start: 6;
  }
}

@media (width >= 768px) {
  .row-sm-5 {
    grid-row-end: span 5;
  }

  .row-offset-sm-5 {
    grid-row-start: 6;
  }

  .col-sm-6 {
    grid-column-end: span 6;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-6 {
    grid-column-start: 7;
  }
}

@media (width >= 768px) {
  .row-sm-6 {
    grid-row-end: span 6;
  }

  .row-offset-sm-6 {
    grid-row-start: 7;
  }

  .col-sm-7 {
    grid-column-end: span 7;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-7 {
    grid-column-start: 8;
  }
}

@media (width >= 768px) {
  .row-sm-7 {
    grid-row-end: span 7;
  }

  .row-offset-sm-7 {
    grid-row-start: 8;
  }

  .col-sm-8 {
    grid-column-end: span 8;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-8 {
    grid-column-start: 9;
  }
}

@media (width >= 768px) {
  .row-sm-8 {
    grid-row-end: span 8;
  }

  .row-offset-sm-8 {
    grid-row-start: 9;
  }

  .col-sm-9 {
    grid-column-end: span 9;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-9 {
    grid-column-start: 10;
  }
}

@media (width >= 768px) {
  .row-sm-9 {
    grid-row-end: span 9;
  }

  .row-offset-sm-9 {
    grid-row-start: 10;
  }

  .col-sm-10 {
    grid-column-end: span 10;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-10 {
    grid-column-start: 11;
  }
}

@media (width >= 768px) {
  .row-sm-10 {
    grid-row-end: span 10;
  }

  .row-offset-sm-10 {
    grid-row-start: 11;
  }

  .col-sm-11 {
    grid-column-end: span 11;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-11 {
    grid-column-start: 12;
  }
}

@media (width >= 768px) {
  .row-sm-11 {
    grid-row-end: span 11;
  }

  .row-offset-sm-11 {
    grid-row-start: 12;
  }

  .col-sm-12 {
    grid-column-end: span 12;
    display: block;
  }
}

@media screen and (width >= 768px) and (width >= 60em) {
  .col-offset-sm-12 {
    grid-column-start: 13;
  }
}

@media (width >= 768px) {
  .row-sm-12 {
    grid-row-end: span 12;
  }

  .row-offset-sm-12 {
    grid-row-start: 13;
  }
}

@media (width >= 960px) {
  .col-md-1 {
    grid-column-end: span 1;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-1 {
    grid-column-start: 2;
  }
}

@media (width >= 960px) {
  .row-md-1 {
    grid-row-end: span 1;
  }

  .row-offset-md-1 {
    grid-row-start: 2;
  }

  .col-md-2 {
    grid-column-end: span 2;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-2 {
    grid-column-start: 3;
  }
}

@media (width >= 960px) {
  .row-md-2 {
    grid-row-end: span 2;
  }

  .row-offset-md-2 {
    grid-row-start: 3;
  }

  .col-md-3 {
    grid-column-end: span 3;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-3 {
    grid-column-start: 4;
  }
}

@media (width >= 960px) {
  .row-md-3 {
    grid-row-end: span 3;
  }

  .row-offset-md-3 {
    grid-row-start: 4;
  }

  .col-md-4 {
    grid-column-end: span 4;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-4 {
    grid-column-start: 5;
  }
}

@media (width >= 960px) {
  .row-md-4 {
    grid-row-end: span 4;
  }

  .row-offset-md-4 {
    grid-row-start: 5;
  }

  .col-md-5 {
    grid-column-end: span 5;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-5 {
    grid-column-start: 6;
  }
}

@media (width >= 960px) {
  .row-md-5 {
    grid-row-end: span 5;
  }

  .row-offset-md-5 {
    grid-row-start: 6;
  }

  .col-md-6 {
    grid-column-end: span 6;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-6 {
    grid-column-start: 7;
  }
}

@media (width >= 960px) {
  .row-md-6 {
    grid-row-end: span 6;
  }

  .row-offset-md-6 {
    grid-row-start: 7;
  }

  .col-md-7 {
    grid-column-end: span 7;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-7 {
    grid-column-start: 8;
  }
}

@media (width >= 960px) {
  .row-md-7 {
    grid-row-end: span 7;
  }

  .row-offset-md-7 {
    grid-row-start: 8;
  }

  .col-md-8 {
    grid-column-end: span 8;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-8 {
    grid-column-start: 9;
  }
}

@media (width >= 960px) {
  .row-md-8 {
    grid-row-end: span 8;
  }

  .row-offset-md-8 {
    grid-row-start: 9;
  }

  .col-md-9 {
    grid-column-end: span 9;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-9 {
    grid-column-start: 10;
  }
}

@media (width >= 960px) {
  .row-md-9 {
    grid-row-end: span 9;
  }

  .row-offset-md-9 {
    grid-row-start: 10;
  }

  .col-md-10 {
    grid-column-end: span 10;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-10 {
    grid-column-start: 11;
  }
}

@media (width >= 960px) {
  .row-md-10 {
    grid-row-end: span 10;
  }

  .row-offset-md-10 {
    grid-row-start: 11;
  }

  .col-md-11 {
    grid-column-end: span 11;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-11 {
    grid-column-start: 12;
  }
}

@media (width >= 960px) {
  .row-md-11 {
    grid-row-end: span 11;
  }

  .row-offset-md-11 {
    grid-row-start: 12;
  }

  .col-md-12 {
    grid-column-end: span 12;
    display: block;
  }
}

@media screen and (width >= 960px) and (width >= 60em) {
  .col-offset-md-12 {
    grid-column-start: 13;
  }
}

@media (width >= 960px) {
  .row-md-12 {
    grid-row-end: span 12;
  }

  .row-offset-md-12 {
    grid-row-start: 13;
  }
}

@media (width >= 1170px) {
  .col-lg-1 {
    grid-column-end: span 1;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-1 {
    grid-column-start: 2;
  }
}

@media (width >= 1170px) {
  .row-lg-1 {
    grid-row-end: span 1;
  }

  .row-offset-lg-1 {
    grid-row-start: 2;
  }

  .col-lg-2 {
    grid-column-end: span 2;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-2 {
    grid-column-start: 3;
  }
}

@media (width >= 1170px) {
  .row-lg-2 {
    grid-row-end: span 2;
  }

  .row-offset-lg-2 {
    grid-row-start: 3;
  }

  .col-lg-3 {
    grid-column-end: span 3;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-3 {
    grid-column-start: 4;
  }
}

@media (width >= 1170px) {
  .row-lg-3 {
    grid-row-end: span 3;
  }

  .row-offset-lg-3 {
    grid-row-start: 4;
  }

  .col-lg-4 {
    grid-column-end: span 4;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-4 {
    grid-column-start: 5;
  }
}

@media (width >= 1170px) {
  .row-lg-4 {
    grid-row-end: span 4;
  }

  .row-offset-lg-4 {
    grid-row-start: 5;
  }

  .col-lg-5 {
    grid-column-end: span 5;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-5 {
    grid-column-start: 6;
  }
}

@media (width >= 1170px) {
  .row-lg-5 {
    grid-row-end: span 5;
  }

  .row-offset-lg-5 {
    grid-row-start: 6;
  }

  .col-lg-6 {
    grid-column-end: span 6;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-6 {
    grid-column-start: 7;
  }
}

@media (width >= 1170px) {
  .row-lg-6 {
    grid-row-end: span 6;
  }

  .row-offset-lg-6 {
    grid-row-start: 7;
  }

  .col-lg-7 {
    grid-column-end: span 7;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-7 {
    grid-column-start: 8;
  }
}

@media (width >= 1170px) {
  .row-lg-7 {
    grid-row-end: span 7;
  }

  .row-offset-lg-7 {
    grid-row-start: 8;
  }

  .col-lg-8 {
    grid-column-end: span 8;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-8 {
    grid-column-start: 9;
  }
}

@media (width >= 1170px) {
  .row-lg-8 {
    grid-row-end: span 8;
  }

  .row-offset-lg-8 {
    grid-row-start: 9;
  }

  .col-lg-9 {
    grid-column-end: span 9;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-9 {
    grid-column-start: 10;
  }
}

@media (width >= 1170px) {
  .row-lg-9 {
    grid-row-end: span 9;
  }

  .row-offset-lg-9 {
    grid-row-start: 10;
  }

  .col-lg-10 {
    grid-column-end: span 10;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-10 {
    grid-column-start: 11;
  }
}

@media (width >= 1170px) {
  .row-lg-10 {
    grid-row-end: span 10;
  }

  .row-offset-lg-10 {
    grid-row-start: 11;
  }

  .col-lg-11 {
    grid-column-end: span 11;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-11 {
    grid-column-start: 12;
  }
}

@media (width >= 1170px) {
  .row-lg-11 {
    grid-row-end: span 11;
  }

  .row-offset-lg-11 {
    grid-row-start: 12;
  }

  .col-lg-12 {
    grid-column-end: span 12;
    display: block;
  }
}

@media screen and (width >= 1170px) and (width >= 60em) {
  .col-offset-lg-12 {
    grid-column-start: 13;
  }
}

@media (width >= 1170px) {
  .row-lg-12 {
    grid-row-end: span 12;
  }

  .row-offset-lg-12 {
    grid-row-start: 13;
  }
}

@media (width >= 1280px) {
  .col-xl-1 {
    grid-column-end: span 1;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-1 {
    grid-column-start: 2;
  }
}

@media (width >= 1280px) {
  .row-xl-1 {
    grid-row-end: span 1;
  }

  .row-offset-xl-1 {
    grid-row-start: 2;
  }

  .col-xl-2 {
    grid-column-end: span 2;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-2 {
    grid-column-start: 3;
  }
}

@media (width >= 1280px) {
  .row-xl-2 {
    grid-row-end: span 2;
  }

  .row-offset-xl-2 {
    grid-row-start: 3;
  }

  .col-xl-3 {
    grid-column-end: span 3;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-3 {
    grid-column-start: 4;
  }
}

@media (width >= 1280px) {
  .row-xl-3 {
    grid-row-end: span 3;
  }

  .row-offset-xl-3 {
    grid-row-start: 4;
  }

  .col-xl-4 {
    grid-column-end: span 4;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-4 {
    grid-column-start: 5;
  }
}

@media (width >= 1280px) {
  .row-xl-4 {
    grid-row-end: span 4;
  }

  .row-offset-xl-4 {
    grid-row-start: 5;
  }

  .col-xl-5 {
    grid-column-end: span 5;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-5 {
    grid-column-start: 6;
  }
}

@media (width >= 1280px) {
  .row-xl-5 {
    grid-row-end: span 5;
  }

  .row-offset-xl-5 {
    grid-row-start: 6;
  }

  .col-xl-6 {
    grid-column-end: span 6;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-6 {
    grid-column-start: 7;
  }
}

@media (width >= 1280px) {
  .row-xl-6 {
    grid-row-end: span 6;
  }

  .row-offset-xl-6 {
    grid-row-start: 7;
  }

  .col-xl-7 {
    grid-column-end: span 7;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-7 {
    grid-column-start: 8;
  }
}

@media (width >= 1280px) {
  .row-xl-7 {
    grid-row-end: span 7;
  }

  .row-offset-xl-7 {
    grid-row-start: 8;
  }

  .col-xl-8 {
    grid-column-end: span 8;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-8 {
    grid-column-start: 9;
  }
}

@media (width >= 1280px) {
  .row-xl-8 {
    grid-row-end: span 8;
  }

  .row-offset-xl-8 {
    grid-row-start: 9;
  }

  .col-xl-9 {
    grid-column-end: span 9;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-9 {
    grid-column-start: 10;
  }
}

@media (width >= 1280px) {
  .row-xl-9 {
    grid-row-end: span 9;
  }

  .row-offset-xl-9 {
    grid-row-start: 10;
  }

  .col-xl-10 {
    grid-column-end: span 10;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-10 {
    grid-column-start: 11;
  }
}

@media (width >= 1280px) {
  .row-xl-10 {
    grid-row-end: span 10;
  }

  .row-offset-xl-10 {
    grid-row-start: 11;
  }

  .col-xl-11 {
    grid-column-end: span 11;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-11 {
    grid-column-start: 12;
  }
}

@media (width >= 1280px) {
  .row-xl-11 {
    grid-row-end: span 11;
  }

  .row-offset-xl-11 {
    grid-row-start: 12;
  }

  .col-xl-12 {
    grid-column-end: span 12;
    display: block;
  }
}

@media screen and (width >= 1280px) and (width >= 60em) {
  .col-offset-xl-12 {
    grid-column-start: 13;
  }
}

@media (width >= 1280px) {
  .row-xl-12 {
    grid-row-end: span 12;
  }

  .row-offset-xl-12 {
    grid-row-start: 13;
  }
}

.row {
  flex-direction: row;
  display: flex;
}

html.no-scroll {
  overflow: hidden;
}

body {
  font-family: var(--primary-font);
  font-size: var(--text-size-base);
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
  background: var(--color-white);
  color: var(--color-black);
  scrollbar-gutter: stable both-edges;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

main {
  padding-top: var(--space-96);
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  padding: 0 var(--space-24);
  margin: 0 auto;
  position: relative;
}

@media screen and (width >= 90em) {
  .container {
    padding: 0 var(--space-48);
  }
}

.block-no-margin {
  margin: 0 !important;
}

.block-margin {
  margin-block: var(--space-64);
}

@media screen and (width >= 60em) {
  .block-margin {
    margin-block: var(--space-96);
  }
}

.block-margin-large {
  margin-block: var(--space-96);
}

@media screen and (width >= 60em) {
  .block-margin-large {
    margin-block: var(--space-144);
  }
}

.block-margin-small {
  margin-block: var(--space-48);
}

.block-margin-top, .block-margin-top-large {
  margin-block-start: var(--space-96);
}

.block-margin-top-small {
  margin-block-start: var(--space-48);
}

.block-margin-top-xsmall {
  margin-block-start: var(--space-24);
}

.block-margin-bottom, .block-margin-bottom-large {
  margin-block-end: var(--space-96);
}

@media screen and (width >= 60em) {
  .block-margin-bottom-large {
    margin-block-end: var(--space-144);
  }
}

.block-margin-bottom-small {
  margin-block-end: var(--space-48);
}

.block-margin-bottom-xsmall {
  margin-block-end: var(--space-24);
}

.block-padding, .block-padding-large {
  padding-block: var(--space-96);
}

@media screen and (width >= 60em) {
  .block-padding-large {
    padding-block: var(--space-144);
  }
}

.single-post .header {
  border-bottom: 1px solid var(--color-black);
}

.single-post--image {
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-medium);
  margin-bottom: var(--space-24);
  overflow: hidden;
}

.single-post--image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.single-post--header {
  margin: var(--space-32) 0;
  font-size: var(--text-size-smaller);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.single-post--header a {
  text-decoration: none;
}

.single-post--header a:hover {
  text-decoration: underline;
}

.single-post--header .single-post--header-prev-next {
  gap: var(--space-16);
  display: flex;
}

@media screen and (width >= 90em) {
  aside {
    padding-left: var(--space-64);
  }
}

.niveau-images {
  margin-top: var(--space-24);
}

.niveau-images svg {
  width: 100%;
  height: auto;
}

.aside-contact {
  padding: var(--space-32);
  background-color: var(--color-gray-10);
  margin-bottom: var(--space-24);
}

.aside-contact .button + .button {
  margin-top: var(--space-16);
}

@media screen and (width >= 32em) {
  .aside-contact .button + .button {
    margin-left: 0;
    margin-top: var(--space-16);
  }
}

.aside-contact h3 {
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-light);
  text-transform: uppercase;
  font-size: var(--text-size-h4);
}

.aside-contact p {
  margin-bottom: var(--space-24);
}

.aside-contact .aside-contact--links {
  gap: var(--space-16);
  flex-direction: column;
  display: flex;
}

.aside-contact .aside-contact--links a {
  align-items: center;
  gap: var(--space-12);
  font-size: var(--text-size-base);
  text-decoration: none;
  display: flex;
}

.aside-contact .aside-contact--links a:hover {
  text-decoration: underline;
}

.aside-contact .aside-contact--links a.envelope svg {
  max-height: var(--space-32);
  max-width: var(--space-32);
}

.aside-contact .aside-contact--links a svg {
  height: var(--space-32);
  flex-shrink: 0;
  width: auto;
  min-width: auto;
}

.aside-contact .aside-contact--links a svg path {
  fill: var(--color-secondary);
}

.aside-contact .niveau-image {
  margin-top: var(--space-24);
}

.aside-contact .niveau-image img {
  width: 100%;
  height: auto;
}

.aside-button {
  margin-bottom: var(--space-24);
}

.aside-reviews {
  padding: var(--space-32);
  background-color: var(--color-white);
  margin-bottom: var(--space-24);
  box-shadow: 0 2px 8px #00000040;
}

.aside-reviews .aside-reviews--quote {
  margin: var(--space-12) auto;
  text-align: center;
}

.aside-reviews .aside-reviews--quote svg {
  width: var(--space-48);
  flex-shrink: 0;
  min-width: auto;
  height: auto;
}

.aside-reviews .aside-reviews--quote svg path {
  fill: var(--color-primary);
}

.aside-reviews .swiper-slide {
  height: auto;
}

.aside-reviews h3 {
  font-family: var(--secondary-font);
}

.aside-reviews p {
  margin-bottom: var(--space-24);
}

@font-face {
  font-family: Roboto Condensed;
  src: url("../RobotoCondensed-Regular.3a479d22.woff2") format("woff2"), url("../RobotoCondensed-Regular.dd34ecfa.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Roboto Condensed;
  src: url("../RobotoCondensed-Bold.dfdbf077.woff2") format("woff2"), url("../RobotoCondensed-Bold.035cbdf3.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Roboto Condensed;
  src: url("../RobotoCondensed-Light.49e3e6ad.woff2") format("woff2"), url("../RobotoCondensed-Light.42ab106f.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Roboto;
  src: url("../Roboto-Bold.9b3b7d33.woff2") format("woff2"), url("../Roboto-Bold.ff6ee949.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Roboto;
  src: url("../Roboto-Regular.e437dcd9.woff2") format("woff2"), url("../Roboto-Regular.be3edc3d.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Roboto;
  src: url("../Roboto-Medium.d1ba1ac6.woff2") format("woff2"), url("../Roboto-Medium.5b5d918c.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Roboto;
  src: url("../Roboto-Light.35c5f54d.woff2") format("woff2"), url("../Roboto-Light.e06a2371.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

p {
  margin: 0 0 var(--space-36) 0;
  padding: 0;
}

strong {
  font-weight: var(--font-weight-bold);
}

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

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

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

.text-transform--uppercase {
  text-transform: uppercase;
}

.text-transform--lowercase {
  text-transform: lowercase;
}

.text-transform--capitalize {
  text-transform: capitalize;
}

.font-weight--bold {
  font-weight: var(--font-weight-bold);
}

.font-weight--medium {
  font-weight: var(--font-weight-medium);
}

.font-weight--light {
  font-weight: var(--font-weight-light);
}

.font-weight--normal {
  font-weight: var(--font-weight-normal);
}

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

.text-size--smaller {
  font-size: var(--text-size-smaller);
}

.text-size--base {
  font-size: var(--text-size-base);
}

.text-size--larger {
  font-size: var(--text-size-larger);
}

.text-size--large {
  font-size: var(--text-size-large);
}

.text-size--h1 {
  font-size: var(--text-size-h1);
}

.text-size--h2 {
  font-size: var(--text-size-h2);
}

.text-size--h2-large {
  font-size: var(--text-size-h2-large);
}

.text-size--h3 {
  font-size: var(--text-size-h3);
}

.text-size--h4 {
  font-size: var(--text-size-h4);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-12) 0;
  text-rendering: optimizelegibility;
  font-weight: var(--font-weight-bold);
  padding: 0;
  line-height: 1.2;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

h1.drop-shadow, h2.drop-shadow, h3.drop-shadow, h4.drop-shadow, h5.drop-shadow, h6.drop-shadow {
  text-shadow: var(--shadow-primary);
}

h1.pretty-wrap, h2.pretty-wrap, h3.pretty-wrap, h4.pretty-wrap, h5.pretty-wrap, h6.pretty-wrap {
  text-wrap: pretty;
}

h1 {
  font-size: var(--text-size-h1);
  margin-bottom: var(--space-48);
  line-height: 1.1;
}

h2 {
  font-size: var(--text-size-h2);
  margin-bottom: var(--space-16);
}

h2.bordered {
  border-bottom: 1.5px solid var(--color-black);
  padding-bottom: var(--space-12);
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-light);
  text-transform: uppercase;
  font-size: var(--text-size-large);
}

h3 {
  font-size: var(--text-size-h3);
}

h4, h5, h6 {
  font-size: var(--text-size-h4);
}

:focus {
  outline: none;
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  width: 0;
  height: 0;
  text-decoration: none;
  transition: all .2s;
  overflow: hidden;
  position: absolute !important;
}

.sr-only:focus {
  clip: auto;
  white-space: normal;
  z-index: 1;
  width: auto;
  height: auto;
  position: static;
  top: 2.4rem;
  left: 2.4rem;
  overflow: auto;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
  pointer-events: none;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(#00000080, #0000);
}

.swiper-lazy-preloader {
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: #0000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: 1s linear infinite swiper-preloader-spin;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.header {
  z-index: 100;
  background: var(--color-white);
  width: 100%;
  height: var(--space-96);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
}

.header .container {
  height: 100%;
}

.header .row {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0;
}

#logo img {
  height: var(--space-48);
  width: auto;
}

.website-hrm-academy #logo img {
  height: var(--space-40);
  width: auto;
}

#nav {
  background-color: var(--color-primary);
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: var(--space-144) 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

@media (width <= 64rem) {
  #nav {
    overflow-y: auto;
  }
}

@media (width >= 64rem) {
  #nav {
    background-color: #0000;
    width: auto;
    height: auto;
    margin-left: auto;
    padding: 0;
    display: block;
    position: relative;
  }
}

#nav.open {
  display: block;
}

#nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media (width >= 64rem) {
  #nav ul {
    display: flex;
  }
}

#nav ul li {
  margin-left: var(--space-24);
  line-height: var(--space-48);
  margin-bottom: var(--space-16);
  position: relative;
}

@media (width >= 64rem) {
  #nav ul li {
    margin-bottom: 0;
  }
}

@media (width >= 90em) {
  #nav ul li {
    margin-left: var(--space-36);
  }
}

#nav ul li.menu-item-has-children:hover ul {
  display: block;
}

@media (width >= 64rem) {
  #nav ul li.menu-item-has-children:hover ul {
    display: flex;
  }

  #nav ul li.menu-item-has-children ul {
    background-color: var(--color-primary);
    padding: var(--space-16);
    z-index: 1;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-primary);
    flex-direction: column;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

#nav ul li.menu-item-has-children ul li {
  white-space: nowrap;
  margin: 0;
  line-height: 1.75;
}

@media (width <= 64rem) {
  #nav ul li.menu-item-has-children ul li {
    margin: var(--space-8) 0;
  }
}

#nav ul li.menu-item-has-children ul li a {
  color: var(--color-white);
}

@media (width <= 64rem) {
  #nav ul li.menu-item-has-children ul li a {
    font-size: var(--text-size-base);
    padding-left: var(--space-16);
  }
}

#nav ul li.menu-item-has-children ul li a:hover {
  text-decoration: underline;
}

#nav ul li a {
  color: var(--color-white);
  font-size: var(--text-size-h2);
  font-weight: var(--font-weight-bold);
  align-items: center;
  text-decoration: none;
  transition: color .3s;
  display: inline-flex;
}

@media (width >= 64rem) {
  #nav ul li a {
    font-weight: var(--font-weight-normal);
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: .064em;
    font-size: var(--text-size-small);
  }
}

#nav ul li a:hover {
  color: var(--color-white);
}

@media (width >= 64rem) {
  #nav ul li a:hover {
    color: var(--color-primary);
  }
}

#nav ul li a .nav__chevron-wrapper {
  margin-left: var(--space-8);
  line-height: 0;
  display: inline-flex;
}

#nav ul li a .nav__chevron {
  width: 1rem;
  height: auto;
  display: block;
}

#nav ul li a .nav__chevron path {
  stroke: var(--color-white);
}

@media (width >= 64rem) {
  #nav ul li a .nav__chevron path {
    stroke: var(--color-primary);
  }
}

.footer {
  padding: var(--space-48) 0;
  background-color: var(--color-gray);
  color: var(--color-white);
  font-size: var(--text-size-smaller);
}

@media screen and (width >= 80em) {
  .footer {
    padding: var(--space-24) 0;
  }
}

.footer a {
  color: var(--color-white);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (width >= 80em) {
  .footer .row {
    flex-wrap: nowrap;
  }
}

.footer .row .footer--social {
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-48);
  flex-direction: column;
  width: 100%;
  display: flex;
}

@media screen and (width >= 80em) {
  .footer .row .footer--social {
    gap: var(--space-32);
    flex-direction: row;
    width: auto;
    margin-bottom: 0;
  }
}

.footer .row .footer--social a {
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.footer .row .footer--social a svg {
  height: var(--space-24);
  width: auto;
}

.footer .row .footer--social a svg path {
  fill: var(--color-white);
}

.footer .row .footer--right {
  align-items: center;
  gap: var(--space-16);
  flex-direction: column;
  width: 100%;
  display: flex;
}

@media screen and (width >= 80em) {
  .footer .row .footer--right {
    flex-direction: row;
    gap: 0;
    width: auto;
  }
}

.footer .row .footer--right p {
  margin: 0 0 0 var(--space-32);
}

.footer .row .footer--right ul {
  gap: var(--space-32);
  margin: 0;
  padding: 0;
  display: flex;
}

.footer .row .footer--right ul li {
  list-style: none;
}

.footer .footer--linkedin {
  height: var(--space-24);
  margin-left: var(--space-16);
}

.footer .footer--linkedin svg {
  height: var(--space-24);
  width: auto;
}

.footer .footer--linkedin svg path {
  fill: var(--color-white);
}

.website-hrm-academy .footer {
  text-transform: uppercase;
}

.website-hrm-academy .footer .row .footer--social a svg path {
  fill: #3ca7ad;
}

.block-hero {
  color: var(--color-white);
  padding: var(--space-96) 0;
  background-color: #1c6a74;
  height: clamp(40rem, 70vh, 50rem);
  position: relative;
}

.block-hero--lower {
  height: clamp(32rem, 65vh, 40rem);
  padding: var(--space-64) 0;
}

.block-hero--lower h1 {
  margin-bottom: var(--space-24);
}

.block-hero--lower .block-hero--illustration {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (width >= 105em) {
  .block-hero--lower .block-hero--illustration {
    aspect-ratio: 877 / 446;
    height: clamp(32rem, 65vh, 40rem);
  }
}

.block-hero--lower .block-hero--illustration img {
  object-fit: cover;
  object-position: bottom right;
  width: 100%;
  height: 100%;
}

@media screen and (width >= 80em) {
  .block-hero--lower .block-hero--illustration img {
    object-fit: contain;
  }
}

.block-hero .container, .block-hero .grid, .block-hero .col {
  height: 100%;
}

.block-hero--content {
  flex-direction: column;
  justify-content: center;
  height: 100%;
  display: flex;
}

.block-hero--award {
  margin-bottom: var(--space-24);
}

.block-hero--illustration {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (width >= 105em) {
  .block-hero--illustration {
    aspect-ratio: 1486 / 635;
    height: clamp(40rem, 70vh, 50rem);
  }
}

.block-hero--illustration img {
  object-fit: cover;
  object-position: bottom right;
  width: 100%;
  height: 100%;
}

@media screen and (width >= 105em) {
  .block-hero--illustration img {
    object-fit: contain;
  }
}

.block-hero--content-meta {
  border-top: 1px solid var(--color-white);
  max-width: 30rem;
  font-size: var(--text-size-smaller);
}

.block-hero--content-meta .row {
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--color-white);
  padding: var(--space-8) 0;
  text-shadow: var(--shadow-secondary);
}

.block-hero--content-meta .row .title {
  width: 12.8rem;
}

.block-hero--award img {
  height: var(--space-80);
  width: auto;
}

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

.block-hero .button {
  justify-content: center;
  width: 100%;
}

@media screen and (width >= 32em) {
  .block-hero .button {
    width: auto;
  }
}

.block-hero--hrm--lower .block-hero--illustration {
  background-color: var(--color-black);
}

@media screen and (width >= 105em) {
  .block-hero--hrm--lower .block-hero--illustration {
    z-index: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
  }
}

.block-hero--hrm--lower .block-hero--illustration img {
  object-fit: cover;
  object-position: center;
  opacity: .8;
  width: 100%;
  height: 100%;
}

@media screen and (width >= 105em) {
  .block-hero--hrm--lower .block-hero--illustration img {
    object-fit: cover;
  }
}

.block-actions {
  gap: var(--space-16);
  flex-wrap: wrap;
  display: flex;
}

.block-hero--hrm {
  position: relative;
  overflow: hidden;
}

.block-hero--hrm .block-hero--hrm--content {
  height: 90vh;
  padding-top: var(--space-96);
}

.block-hero--hrm .block-hero--hrm--content .button-scroll {
  bottom: var(--space-144);
  z-index: 1;
  width: var(--space-56);
  height: var(--space-56);
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  animation: 2s ease-in-out infinite blink;
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.block-hero--hrm .block-hero--hrm--content .button-scroll svg {
  width: var(--space-32);
  height: var(--space-32);
}

.block-hero--hrm .block-hero--hrm--content .button-scroll button {
  all: unset;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.block-hero--hrm .block-hero--hrm--content .button-scroll.hidden {
  opacity: 0;
  visibility: hidden;
}

.block-hero--hrm .block-hero--hrm--content h1 {
  color: var(--color-white);
}

.block-hero--hrm .block-hero--hrm--illustration {
  z-index: -1;
  background-color: var(--color-black);
  width: 100%;
  height: 90vh;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
}

.block-hero--hrm .block-hero--hrm--illustration img {
  object-fit: cover;
  object-position: center;
  opacity: .8;
  width: 100%;
  height: 90vh;
}

.website-hrm-academy .block-hero-single-cursus .block-hero--content-wrapper {
  padding: var(--space-32);
  color: var(--color-black);
  background-color: #ffffff80;
}

.website-hrm-academy .block-hero-single-cursus .block-hero--content-wrapper h1 {
  color: var(--color-black);
}

.website-hrm-academy .block-hero-single-cursus .block-hero--content-wrapper h1.drop-shadow {
  text-shadow: none;
}

.website-hrm-academy .block-hero-single-cursus .block-hero--content-wrapper .block-hero--content-meta {
  border-top: 1px solid var(--color-black);
}

.website-hrm-academy .block-hero-single-cursus .block-hero--content-wrapper .block-hero--content-meta .row {
  text-shadow: none;
  border-bottom: 1px solid var(--color-black);
}

.block-intros {
  margin-top: calc(var(--space-96) * -1);
}

.block-intros a {
  color: var(--color-white);
  text-decoration: none;
}

.block-intros--card {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-large);
  padding: var(--space-32);
  height: 100%;
  color: var(--color-white);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.block-intros--card a {
  color: var(--color-white);
  text-decoration: none;
}

.block-intros--card a:after {
  content: "";
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.block-intros--card h2 {
  margin-bottom: var(--space-24);
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-bold);
}

.block-intros--button {
  margin-top: auto;
}

.block-intros--hrm {
  margin-top: 0;
  margin-bottom: var(--space-48);
}

.block-intros--hrm .block-intros--card {
  background-color: var(--color-white);
  color: var(--color-black);
}

.block-intros--hrm .block-intros--card .button.button-outline {
  color: var(--color-cta);
}

.block-intros--hrm .block-intros--card .button.button-outline:after {
  border: 1px solid var(--color-cta);
}

.block-intros--hrm .block-intros--card .button.button-outline:hover {
  background-color: var(--color-cta);
  color: var(--color-white);
}

.block-home-content-hrm {
  background-color: var(--color-white);
  padding: 1px 0;
}

.block-home-content-hrm .niveau-pyramid {
  margin-top: var(--space-48);
  position: relative;
}

@media screen and (width >= 60em) {
  .block-home-content-hrm .niveau-pyramid {
    margin-top: 0;
  }
}

.block-home-content-hrm svg {
  pointer-events: none;
}

.block-home-content-hrm svg .niveau-pyramid-link {
  pointer-events: all;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  display: block;
}

.block-home-content-hrm svg .niveau-pyramid-link:hover .niveau-pyramid-level {
  opacity: .8;
}

.block-home-content-hrm svg .niveau-pyramid-link .niveau-pyramid-level {
  pointer-events: all;
  transition: opacity .2s;
}

.block-home-content-hrm svg .niveau-pyramid-link path {
  pointer-events: all;
}

.block-usps {
  background-color: var(--color-blue-15);
  padding: var(--space-64) 0;
}

.block-usps--hrm {
  background-color: var(--color-gray-5);
}

@media screen and (width >= 60em) {
  .block-usps {
    padding: var(--space-96) 0;
  }
}

.block-usps h2 {
  text-wrap: pretty;
}

.block-usps .usp {
  color: var(--color-gray);
  text-align: center;
}

.block-usps .usp img {
  width: var(--space-96);
  height: auto;
  margin: 0 auto;
}

@media screen and (width >= 60em) {
  .block-usps .usp img {
    width: var(--space-144);
  }
}

.block-single-content h2.text-size--h2-large {
  padding-right: var(--space-48);
}

.block-content h2, .block-content h3, .block-content h4 {
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-size-larger);
  margin-bottom: var(--space-8);
}

.block-content p + ul, .block-content p + ol {
  margin-top: calc(var(--space-24) * -1);
}

.block-text p:last-child {
  margin-bottom: 0;
}

.block-text .button + .button {
  margin-top: var(--space-16);
  margin-left: var(--space-20);
}

@media screen and (width >= 32em) {
  .block-text .button + .button {
    margin-top: 0;
  }
}

.block-clients {
  overflow: hidden;
}

.block-clients h2 {
  color: var(--color-gray);
  text-transform: uppercase;
  font-weight: var(--font-weight-normal);
  font-size: var(--text-size-large);
  font-family: var(--secondary-font);
  letter-spacing: .064em;
  margin-bottom: var(--space-48);
  display: inline-block;
  position: relative;
}

.block-clients h2:after, .block-clients h2:before {
  content: "";
  background-color: var(--color-gray);
  width: 9999rem;
  height: 1px;
  position: absolute;
  top: 50%;
}

.block-clients h2:after {
  margin-left: var(--space-24);
  left: 100%;
}

.block-clients h2:before {
  margin-right: var(--space-24);
  right: 100%;
}

.block-clients .swiper-wrapper {
  transition-timing-function: linear;
}

.block-clients .swiper-clients .swiper-slide {
  height: var(--space-96);
  width: auto;
  margin: 0 var(--space-48);
  justify-content: center;
  align-items: center;
  display: flex;
}

.block-clients .swiper-clients .swiper-slide img {
  max-width: var(--space-128);
  max-height: var(--space-64);
  width: auto;
  height: auto;
  margin: 0 auto;
}

.block-news h2 {
  text-align: center;
  margin-bottom: var(--space-32);
}

.block-agenda h2 {
  margin-bottom: var(--space-32);
  transition: all .3s ease-in-out;
}

.block-agenda .swiper {
  margin-left: calc(var(--space-20) * -1);
  margin-right: calc(var(--space-20) * -1);
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}

.block-agenda .button + .button {
  margin-left: var(--space-16);
}

.block-agenda .swiper-slide {
  height: auto;
  padding: var(--space-16) 0;
  align-items: stretch;
  display: flex;
}

.block-agenda .swiper-slide .card-cursus {
  width: 100%;
  height: 100%;
}

.block-categories {
  z-index: 2;
  background-color: var(--color-white);
  padding-bottom: var(--space-24);
}

.block-categories .row {
  justify-content: space-between;
  gap: var(--space-12);
  margin-top: var(--space-24);
  flex-wrap: wrap;
}

@media screen and (width >= 60em) {
  .block-categories .row {
    gap: var(--space-24);
    flex-wrap: nowrap;
  }
}

.block-categories .category-filter-dropdown {
  width: 100%;
}

@media screen and (width >= 60em) {
  .block-categories .category-filter-dropdown {
    width: 50%;
  }
}

.block-categories .category-filter-dropdown select {
  padding: var(--space-16);
}

.block-categories ul {
  background-color: var(--color-white);
  gap: var(--space-24);
  margin: var(--space-24) 0 0 0;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
  display: grid;
}

@media (width <= 48em) {
  .block-categories ul {
    gap: var(--space-16);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 32em) {
  .block-categories ul {
    gap: var(--space-12);
    grid-template-columns: 1fr;
  }
}

.block-categories ul li {
  width: 100%;
}

.block-categories ul li button {
  width: 100%;
  font-weight: var(--font-weight-bold);
  padding: 0 var(--space-16);
  height: var(--space-64);
  line-height: 1.1;
  transition: all .3s ease-in-out;
}

.block-categories ul li button:hover, .block-categories ul li button.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #00000026;
}

.website-hrm-academy .block-categories ul li button {
  background-color: #cdb5d4;
}

.website-hrm-academy .block-categories ul li button:hover, .website-hrm-academy .block-categories ul li button.active {
  background-color: var(--color-primary);
}

.website-hrm-academy .block-categories ul.categories-list li button {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #0000;
}

.website-hrm-academy .block-categories ul.categories-list li button:hover, .website-hrm-academy .block-categories ul.categories-list li button.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

form.search-courses-form {
  align-items: center;
  display: flex;
  position: relative;
}

form.search-courses-form input {
  width: 100%;
  padding: var(--space-16);
  border-radius: var(--border-radius-small);
}

form.search-courses-form button {
  width: var(--space-64);
  justify-content: center;
  padding: 0;
  position: absolute;
  top: .25rem;
  bottom: 0;
  right: 0;
  background-color: #0000 !important;
}

form.search-courses-form svg {
  width: var(--space-24);
  height: var(--space-24);
}

form.search-courses-form svg path {
  fill: var(--color-black);
}

.block-banner {
  display: none;
}

@media screen and (width >= 60em) {
  .block-banner {
    display: block;
  }
}

.block-team h2 {
  margin-bottom: var(--space-32);
}

.block-reviews .reviews {
  border-top: 1px solid var(--color-black);
}

.block-all-posts form {
  padding-right: var(--space-16);
  position: relative;
}

@media screen and (width >= 60em) {
  .block-all-posts form {
    width: calc(50% - var(--space-16));
  }
}

.block-all-posts form button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.block-all-posts #search-status {
  margin-bottom: var(--space-16);
}

.block-btw-choice .choices {
  gap: var(--space-16);
  margin: var(--space-8) 0 var(--space-24) 0;
  display: flex;
}

.block-btw-choice .choices .choice {
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.block-btw-choice .choices .choice input {
  margin: 0;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.card {
  height: 100%;
  box-shadow: var(--shadow-secondary);
  font-size: var(--text-size-smaller);
  flex-direction: column;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  display: flex;
  position: relative;
}

.card:hover figure img {
  transform: scale(1.1);
}

.card--category {
  margin: 0 0 var(--space-16) 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
}

.card--excerpt {
  margin: 0;
}

.card--content {
  padding: var(--space-24) var(--space-16) 0 var(--space-16);
  order: 2;
}

.card--content p {
  margin: 0 0 var(--space-24) 0;
}

.card a {
  text-decoration: none;
}

.card a:after {
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.card figure {
  aspect-ratio: 16 / 11;
  flex-shrink: 0;
  order: 1;
  position: relative;
  overflow: hidden;
}

.card figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .2s;
}

p.card-news--category {
  margin: 0 0 var(--space-16) 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-family: var(--secondary-font);
  border-bottom: 2px solid var(--color-primary);
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
}

p.card-news--category a {
  color: var(--color-primary);
  text-decoration: none;
}

.card-cursus--date {
  top: var(--space-16);
  right: var(--space-16);
  background-color: var(--color-white);
  z-index: 2;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-size-larger);
  color: var(--color-gray);
  font-weight: var(--font-weight-bold);
  flex-flow: column wrap;
  display: flex;
  position: absolute;
}

.card-cursus--date span {
  display: block;
}

.card-cursus--date span:first-child {
  border-bottom: 1px solid var(--color-gray);
}

.card-cursus--label {
  top: var(--space-16);
  background-color: var(--color-white);
  z-index: 2;
  border-top-right-radius: var(--border-radius-medium);
  border-bottom-right-radius: var(--border-radius-medium);
  padding: var(--space-4) var(--space-12) var(--space-4) var(--space-8);
  font-weight: var(--font-weight-bold);
  color: var(--color-red);
  font-size: var(--text-size-base);
  display: flex;
  position: absolute;
  left: 0;
}

.card-cursus--meta {
  padding: 0 var(--space-16) var(--space-24) var(--space-16);
  order: 3;
  margin-top: auto;
}

.card-cursus--meta .button {
  margin-top: var(--space-24);
}

.card-cursus--meta-item {
  display: flex;
}

.card-cursus--meta-item .card-cursus--meta-item-label {
  font-weight: var(--font-weight-bold);
  margin-right: var(--space-8);
  flex-shrink: 0;
  width: 5rem;
}

.card-location {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.card-location--content {
  order: 2;
}

.card-location--content h3 {
  margin-bottom: var(--space-4);
}

.card-location--content p {
  margin-bottom: var(--space-24);
}

.card-location--image {
  aspect-ratio: 16 / 11;
  border-radius: var(--border-radius-medium);
  margin-bottom: var(--space-16);
  order: 1;
  position: relative;
  overflow: hidden;
}

.card-location--image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .2s;
}

.card-team {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.card-team--content {
  text-align: center;
  order: 2;
}

.card-team--content h3 {
  margin-bottom: var(--space-4);
}

.card-team--social {
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-direction: row;
  display: flex;
}

.card-team--social svg {
  width: 2rem;
  height: 2rem;
}

.card-team--social a {
  display: block;
}

.card-team--image {
  aspect-ratio: 2 / 2.25;
  border-radius: var(--border-radius-medium);
  margin-bottom: var(--space-16);
  order: 1;
  position: relative;
  overflow: hidden;
}

.card-team--image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .2s;
}

.card-team .more-info {
  cursor: pointer;
}

.modal {
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: var(--space-48);
  background-color: #00000080;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.modal--content {
  background-color: var(--color-white);
  padding: var(--space-48);
  border-radius: var(--border-radius-medium);
  max-width: 40rem;
  margin: 0 auto;
  position: relative;
}

.modal--content p:last-child {
  margin-bottom: 0;
}

.modal--close {
  top: var(--space-16);
  right: var(--space-16);
  cursor: pointer;
  position: absolute;
}

.card-review {
  padding: var(--space-24) 0;
  border-bottom: 1px solid var(--color-black);
}

.card-review svg path {
  fill: var(--color-primary);
}

.card-review p {
  margin: var(--space-8) 0 0 0;
  font-size: var(--text-size-larger);
}

.card-review .card-review--meta {
  margin-top: var(--space-16);
  justify-content: flex-start;
  gap: var(--space-4);
  color: var(--color-gray);
  display: flex;
}

blockquote {
  margin: var(--space-48) 0;
  padding: var(--space-24);
  font-size: var(--text-size-large);
}

blockquote p:last-child {
  margin: 0;
}

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

img.alignright {
  float: right;
  margin-bottom: 2.4rem;
  margin-left: 2.4rem;
}

img.alignleft {
  float: left;
  margin-bottom: 2.4rem;
  margin-right: 2.4rem;
}

img.aligncenter {
  margin: var(--space-48) auto;
}

img.alignnone {
  margin: var(--space-48) 0;
}

.wp-block-image.size-full {
  width: 100%;
  margin-bottom: var(--space-48);
}

.wp-block-image.size-full img {
  width: 100%;
  height: auto;
}

.wp-caption-text, .wp-element-caption {
  font-size: var(--text-size-smaller);
  margin-top: var(--space-8);
}

.embed-container {
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

button, .gform_footer input[type="submit"], .gform_footer input[type="button"], .button {
  background: var(--color-cta);
  color: var(--color-white);
  padding: var(--space-12) var(--space-32);
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  letter-spacing: .064em;
  text-transform: uppercase;
  text-align: left;
  transition: var(--animation-secondary);
  border-radius: var(--border-radius-small);
  font-size: var(--text-size-smaller);
  align-items: center;
  gap: var(--space-8);
  border: 0;
  text-decoration: none;
  display: inline-flex;
}

button:hover:not(:disabled), .gform_footer input[type="submit"]:hover:not(:disabled), .gform_footer input[type="button"]:hover:not(:disabled), .button:hover:not(:disabled) {
  background-color: var(--color-black);
}

button:disabled, .gform_footer input[type="submit"]:disabled, .gform_footer input[type="button"]:disabled, button.disabled, .gform_footer input.disabled[type="submit"], .gform_footer input.disabled[type="button"], .button:disabled, .button.disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

button.button-white, .gform_footer input.button-white[type="submit"], .gform_footer input.button-white[type="button"], .button.button-white {
  background-color: var(--color-white);
  color: var(--color-black);
}

button.button-white svg path, .gform_footer input.button-white[type="submit"] svg path, .gform_footer input.button-white[type="button"] svg path, .button.button-white svg path {
  stroke: var(--color-black);
}

button.button-white:hover, .gform_footer input.button-white[type="submit"]:hover, .gform_footer input.button-white[type="button"]:hover, .button.button-white:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}

button.button-white:hover svg path, .gform_footer input.button-white[type="submit"]:hover svg path, .gform_footer input.button-white[type="button"]:hover svg path, .button.button-white:hover svg path {
  stroke: var(--color-white);
}

button.button-lowercase, .gform_footer input.button-lowercase[type="submit"], .gform_footer input.button-lowercase[type="button"], .button.button-lowercase {
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-size-larger);
  font-family: var(--secondary-font);
}

button.button-fullwidth, .gform_footer input.button-fullwidth[type="submit"], .gform_footer input.button-fullwidth[type="button"], .button.button-fullwidth {
  width: 100%;
  padding: var(--space-16) var(--space-32);
  justify-content: space-between;
}

button.button-small, .gform_footer input.button-small[type="submit"], .gform_footer input.button-small[type="button"], .button.button-small {
  padding: var(--space-4) var(--space-12);
  font-size: var(--text-size-small);
  letter-spacing: .065em;
}

button.button-primary-color, .gform_footer input.button-primary-color[type="submit"], .gform_footer input.button-primary-color[type="button"], .button.button-primary-color {
  background-color: var(--color-primary);
}

button.button-secondary-color, .gform_footer input.button-secondary-color[type="submit"], .gform_footer input.button-secondary-color[type="button"], .button.button-secondary-color {
  background-color: var(--color-secondary);
}

button.button-chevron, .gform_footer input.button-chevron[type="submit"], .gform_footer input.button-chevron[type="button"], .button.button-chevron {
  padding: var(--space-16) var(--space-24);
  font-size: var(--text-size-larger);
  justify-content: space-between;
}

button.button-chevron svg, .gform_footer input.button-chevron[type="submit"] svg, .gform_footer input.button-chevron[type="button"] svg, .button.button-chevron svg {
  width: .75rem;
  height: auto;
}

button.button-shadow, .gform_footer input.button-shadow[type="submit"], .gform_footer input.button-shadow[type="button"], .button.button-shadow {
  box-shadow: var(--shadow-primary);
}

button.button-outline, .gform_footer input.button-outline[type="submit"], .gform_footer input.button-outline[type="button"], .button.button-outline {
  color: var(--color-white);
  border-radius: var(--space-192);
  text-transform: none;
  padding: var(--space-8) var(--space-24);
  letter-spacing: 0;
  background-color: #0000;
  border: 0;
  position: relative;
}

button.button-outline:hover, .gform_footer input.button-outline[type="submit"]:hover, .gform_footer input.button-outline[type="button"]:hover, .button.button-outline:hover {
  color: var(--color-black);
  background-color: #fff;
}

button.button-outline:hover:after, .gform_footer input.button-outline[type="submit"]:hover:after, .gform_footer input.button-outline[type="button"]:hover:after, .button.button-outline:hover:after {
  display: none;
}

button.button-outline:after, .gform_footer input.button-outline[type="submit"]:after, .gform_footer input.button-outline[type="button"]:after, .button.button-outline:after {
  content: "";
  border: 1px solid var(--color-white);
  border-radius: var(--space-192);
  pointer-events: none;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000 0% 50%, #0000 50% 100%);
  mask-image: linear-gradient(#000 0% 50%, #0000 50% 100%);
}

button#hamburger, .gform_footer input#hamburger[type="submit"], .gform_footer input#hamburger[type="button"] {
  background: none;
  background-color: var(--color-primary);
  z-index: 4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  line-height: 1;
  display: flex;
  position: relative;
}

@media (width >= 60em) {
  button#hamburger, .gform_footer input#hamburger[type="submit"], .gform_footer input#hamburger[type="button"] {
    display: none;
  }
}

button#hamburger span, .gform_footer input#hamburger[type="submit"] span, .gform_footer input#hamburger[type="button"] span {
  background: var(--color-white);
  width: 2rem;
  height: .15rem;
  margin: 0;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: block;
  position: absolute;
}

button#hamburger span:first-child, .gform_footer input#hamburger[type="submit"] span:first-child, .gform_footer input#hamburger[type="button"] span:first-child {
  transform: translateY(-.5rem);
}

button#hamburger span:nth-child(3), .gform_footer input#hamburger[type="submit"] span:nth-child(3), .gform_footer input#hamburger[type="button"] span:nth-child(3) {
  transform: translateY(.5rem);
}

button#hamburger[aria-expanded="true"] span:first-child, .gform_footer input#hamburger[aria-expanded="true"][type="submit"] span:first-child, .gform_footer input#hamburger[aria-expanded="true"][type="button"] span:first-child {
  transform: translateY(0)rotate(45deg);
}

button#hamburger[aria-expanded="true"] span:nth-child(2), .gform_footer input#hamburger[aria-expanded="true"][type="submit"] span:nth-child(2), .gform_footer input#hamburger[aria-expanded="true"][type="button"] span:nth-child(2) {
  opacity: 0;
}

button#hamburger[aria-expanded="true"] span:nth-child(3), .gform_footer input#hamburger[aria-expanded="true"][type="submit"] span:nth-child(3), .gform_footer input#hamburger[aria-expanded="true"][type="button"] span:nth-child(3) {
  transform: translateY(0)rotate(-45deg);
}

input[type="text"], input[type="search"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="file"], input[type="number"], textarea, select {
  border: 1px solid var(--color-gray-10);
  width: 100%;
  padding: var(--space-12) var(--space-16);
  background: var(--color-gray-5);
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--border-radius-small);
  display: block;
}

input[type="text"]:focus, input[type="search"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="file"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
  box-shadow: none;
  border: 1px solid var(--color-black);
  outline-style: none;
}

input[type="text"]:focus-visible, input[type="search"]:focus-visible, input[type="password"]:focus-visible, input[type="email"]:focus-visible, input[type="url"]:focus-visible, input[type="tel"]:focus-visible, input[type="file"]:focus-visible, input[type="number"]:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

textarea {
  height: var(--space-192);
}

.ginput_container_select {
  position: relative;
}

.gform-grid-row {
  flex-flow: wrap;
  display: flex;
}

.gform_fields {
  gap: var(--space-36);
  grid-template-columns: repeat(12, 1fr);
  display: grid;
}

.gform_fields .gfield {
  grid-column: 1 / -1;
}

@media screen and (width >= 48em) {
  .gform_fields .gfield.gfield--width-half {
    grid-column: span 6;
  }
}

@media screen and (width >= 60em) {
  .gform_fields .gfield.gfield--width-third {
    grid-column: span 4;
  }
}

.gform_fields .gfield.gfield_visibility_hidden {
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.gform_fields .gfield label.gfield_label {
  font-weight: var(--font-weight-bold);
  margin-bottom: .6rem;
  display: inline-block;
}

.gform_fields .gfield label.gfield_label .gfield_required {
  margin-left: .2rem;
}

.gform_fields .gfield label.gfield_label .gfield_required .gfield_required_text {
  display: none;
}

.gform_fields .gfield .gfield_description {
  font-size: var(--text-size-smaller);
  clear: both;
  margin-top: .6rem;
}

.gform_fields fieldset {
  border: 0;
  padding: 0;
}

.gform_fields fieldset legend.gfield_label {
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-12);
}

.gform_required_legend {
  font-size: var(--text-size-smaller);
  margin-bottom: var(--space-24);
}

.gform-grid-row {
  gap: var(--space-24);
  grid-template-columns: repeat(12, 1fr);
  display: grid;
}

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

@media screen and (width >= 48em) {
  .gform-grid-row .gform-grid-col {
    grid-column: span 6;
  }
}

.ginput_container_select {
  width: 100%;
  position: relative;
}

.ginput_container_select:after {
  top: 50%;
  right: var(--space-16);
  content: "";
  height: var(--space-24);
  width: var(--space-24);
  z-index: 1;
  background: url("../chevron.7f5fd3da.svg") center no-repeat;
  background-size: var(--space-16);
  pointer-events: none;
  transition: transform .2s;
  display: block;
  position: absolute;
  transform: translateY(-50%);
}

.ginput_container_select select {
  cursor: pointer;
  width: 100%;
}

.gchoice, .ginput_container_consent {
  align-items: center;
  display: flex;
}

input[type="checkbox"], input[type="radio"] {
  accent-color: var(--color-primary);
  width: var(--space-16);
  height: var(--space-16);
  margin: 0;
  margin-right: var(--space-12);
  align-items: center;
  padding: 0;
  display: flex;
}

:is(input[type="checkbox"]:focus-visible, input[type="radio"]:focus-visible) {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.gform_footer {
  margin: var(--space-32) 0 0 0;
  position: relative;
}

h2.gform_submission_error {
  margin: 0 0 var(--space-48) 0;
}

.gfield_validation_message {
  color: var(--color-alert);
}

.gform_validation_container {
  display: none;
}

::placeholder {
  color: var(--color-black);
  opacity: .5;
  opacity: .5;
}

select:focus + .ginput_container_select:after {
  transform: translateY(-50%)rotate(180deg);
}

.accordion-item {
  margin: 0 0 var(--space-12) 0;
}

.accordion-item--smaller {
  margin: 0;
}

.accordion-item--smaller .accordion-button {
  font-size: var(--text-size-base);
  font-family: var(--primary-font);
  font-weight: var(--font-weight-normal);
}

.accordion-item--smaller .accordion-button:before {
  width: var(--space-16);
  height: var(--space-16);
  margin-right: var(--space-8);
  background-size: 50%;
}

.accordion-item--smaller .accordion-button[aria-expanded="true"] {
  font-weight: var(--font-weight-bold);
}

.accordion-item--smaller h2 {
  margin: 0;
}

.accordion-item--smaller .accordion-collapse {
  padding-left: var(--space-24);
}

.accordion-item--smaller .accordion-collapse p {
  margin-bottom: var(--space-24);
}

button.accordion-button {
  all: unset;
  padding: var(--space-12) 0;
  font-size: var(--text-size-h3);
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-light);
  cursor: pointer;
  align-items: center;
  display: flex;
}

button.accordion-button:hover {
  background-color: #0000 !important;
}

button.accordion-button:before {
  content: "";
  margin-right: var(--space-12);
  width: var(--space-24);
  height: var(--space-24);
  background: var(--color-primary) url("../chevron-right.8792416b.svg") no-repeat center center;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(90deg);
}

button.accordion-button[aria-expanded="true"]:before {
  transform: rotate(270deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
}

.show {
  max-height: none;
}

.language-picker {
  text-transform: uppercase;
  display: none;
  position: relative;
}

@media (width >= 60em) {
  .language-picker {
    display: block;
  }
}

.language-picker ul.list-languages {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}

.language-picker ul.list-languages li a {
  color: var(--color-white);
  padding: var(--space-12) var(--space-36);
  background-color: var(--color-primary);
  text-align: center;
  text-decoration: none;
  display: block;
}

.language-picker ul.list-languages li a:hover {
  color: var(--color-white);
}

#language-picker-button {
  text-transform: uppercase;
  align-items: center;
}

#language-picker-button:hover svg path {
  stroke: var(--color-primary);
}

#language-picker-button svg {
  width: auto;
  height: .5rem;
  margin-left: .5rem;
}

#language-picker-button svg path {
  stroke: var(--color-white);
}

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

a:hover, a:active {
  outline: 0;
}

ul, ol {
  margin: 0 0 var(--space-32) 0;
}

ul.list-reset, ol.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.hidden, ol.hidden {
  display: none;
}

ul.dates-list, ol.dates-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.dates-list li, ol.dates-list li {
  margin-bottom: var(--space-32);
  padding: var(--space-8) var(--space-16);
  flex-wrap: wrap;
  display: flex;
}

@media screen and (width >= 48em) {
  ul.dates-list li, ol.dates-list li {
    gap: var(--space-32);
    margin: 0;
  }
}

ul.dates-list li:nth-child(odd), ol.dates-list li:nth-child(odd) {
  background-color: var(--color-gray-5);
}

ul.dates-list li.date-item--header, ol.dates-list li.date-item--header {
  display: none;
}

@media screen and (width >= 48em) {
  ul.dates-list li.date-item--header, ol.dates-list li.date-item--header {
    display: flex;
  }
}

ul.dates-list li span, ol.dates-list li span {
  width: 100%;
}

@media screen and (width >= 48em) {
  ul.dates-list li span, ol.dates-list li span {
    width: 7.2rem;
  }
}

.pagination {
  margin-top: var(--space-48);
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  display: flex;
}

.pagination .screen-reader-text {
  display: none;
}

.pagination .page-numbers:not(.next, .prev) {
  width: var(--space-32);
  height: var(--space-32);
  background-color: var(--color-primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.pagination .page-numbers:not(.next, .prev):hover {
  background-color: var(--color-secondary);
}

.pagination .page-numbers:not(.next, .prev).next, .pagination .page-numbers:not(.next, .prev).prev {
  width: auto;
  padding: 0 var(--space-12);
  display: flex;
}

.pagination .page-numbers:not(.next, .prev).current {
  background-color: var(--color-secondary);
}

.pagination .page-numbers:not(.next, .prev).dots {
  background-color: #0000;
}

.swiper {
  position: relative;
}

.swiper:hover .swiper-button-next, .swiper:hover .swiper-button-prev:not(.swiper-button-disabled) {
  opacity: 1;
}

.swiper-button {
  width: var(--space-64);
  height: var(--space-64);
  z-index: 1;
  cursor: pointer;
  backdrop-filter: blur(24px);
  background-color: #0000004d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: opacity .3s ease-in-out;
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (width >= 60em) {
  .swiper-button {
    display: flex;
  }
}

.swiper-button svg {
  width: var(--space-24);
  height: var(--space-24);
  z-index: 2;
  fill: var(--color-secondary);
  position: relative;
}

.swiper-button:hover svg:first-child {
  width: var(--space-24);
  margin-right: 0;
}

.swiper-button-disabled {
  opacity: 0;
}

.swiper-button-prev {
  left: var(--space-48);
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-next {
  right: var(--space-48);
}

.swiper-pagination {
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  width: 100%;
  margin-top: var(--space-24);
  display: flex;
  position: relative;
  bottom: 0;
  left: 0;
}

.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  display: block;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-black);
}

.tabs {
  gap: var(--space-32);
  z-index: 2;
  background-color: var(--color-white);
}

@media screen and (width >= 48em) {
  .tabs {
    top: var(--space-96);
    margin-right: var(--space-48);
    border-bottom: 1px solid var(--color-black);
    border-top: 1px solid var(--color-black);
    flex-wrap: wrap;
    display: flex;
    position: sticky;
  }
}

.tab-button {
  all: unset;
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  padding: var(--space-8) 0;
  border-bottom: 3px solid #0000;
  width: 100%;
}

@media screen and (width >= 48em) {
  .tab-button {
    width: auto;
    padding: var(--space-12) 0;
    border-bottom: 5px solid #0000;
  }
}

.tab-button:hover {
  border-color: var(--color-primary);
  background-color: #0000 !important;
}

.tab-button.active {
  border-color: var(--color-primary);
  background-color: #0000;
}

.tab-content {
  margin: var(--space-48) 0;
  padding-right: var(--space-48);
}

.tab-content[hidden] {
  display: block;
}

@media screen and (width >= 48em) {
  .tab-content[hidden] {
    display: none;
  }
}
/*# sourceMappingURL=index.css.map */
