@import url(https://unpkg.com/open-props/easings.min.css);
@charset "UTF-8";
:root {
  --grey: #6c707a;
}

[data-theme=dark] {
  --grey: #9299aa;
}

:root {
  --mainfont: "Inter";
  --secondfont: "Inter";
  --unit: 0.8rem;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  font-family: var(--mainfont);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  color: #000;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.says,
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  /* many screen reader and browser combinations announce broken words as they would appear visually */
  word-wrap: normal !important;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
  background-color: #f1f1f1;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #21759b;
  display: block;
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  left: -9999em;
  outline: none;
  padding: 15px 23px 14px;
  text-decoration: none;
  text-transform: none;
  top: -9999em;
}

.logged-in .site .skip-link {
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
}

.site .skip-link:focus {
  clip: auto;
  height: auto;
  left: 6px;
  top: 7px;
  width: auto;
  z-index: 100000;
}

[type=submit] {
  cursor: pointer;
}

button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* disable animations styles when reduced rotion is enabled */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  /* avoid min-width: auto on flex and grid children */
  min-width: 0;
  min-height: 0;
}

@font-face {
  font-family: "Marianne";
  font-style: normal;
  font-weight: 400;
  src: local("Marianne"), url(../fonts/Marianne-Regular.woff) format("woff");
}
@font-face {
  font-family: "Marianne";
  font-style: normal;
  font-weight: 700;
  src: local("Marianne"), url(../fonts/Marianne-Bold.woff) format("woff");
}
@font-face {
  font-family: "Marianne";
  font-style: normal;
  font-weight: 300;
  src: local("Marianne"), url(../fonts/Marianne-Light.woff) format("woff");
}
.sun-and-moon {
  height: 20px;
  width: 20px;
  translate: 0 1px;
}

.sun-and-moon > :is(.moon, .sun, .sun-beams) {
  transform-origin: center center;
}

.sun-and-moon rect {
  width: 100%;
  height: 100%;
}

.sun-and-moon > :is(.moon, .sun) {
  fill: var(--menu-color);
}

.theme-toggle:is(:hover, :focus-visible) > .sun-and-moon > :is(.moon, .sun) {
  fill: var(--menu-color-hover);
  transition: 0.2s var(--ease-3);
}

.sun-and-moon > .sun-beams {
  stroke: var(--menu-color);
  stroke-width: 2px;
}

.theme-toggle:is(:hover, :focus-visible) .sun-and-moon > .sun-beams {
  stroke: var(--secondary);
}

[data-theme=dark] .sun-and-moon > .sun {
  transform: scale(1.75);
}

[data-theme=dark] .sun-and-moon > .sun-beams {
  opacity: 0;
}

[data-theme=dark] .sun-and-moon > .moon > circle {
  transform: translate(-7px);
}

@supports (cx: 1) {
  [data-theme=dark] .sun-and-moon > .moon > circle {
    transform: translate(0);
    cx: 17;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .sun-and-moon > .sun {
    transition: transform 0.5s var(--ease-elastic-3);
  }
  .sun-and-moon > .sun-beams {
    transition: transform 0.5s var(--ease-elastic-4), opacity 0.5s var(--ease-3);
  }
  .sun-and-moon .moon > circle {
    transition: transform 0.25s var(--ease-out-5);
  }
  @supports (cx: 1) {
    .sun-and-moon .moon > circle {
      transition: cx 0.25s var(--ease-out-5);
    }
  }
  [data-theme=dark] .sun-and-moon > .sun {
    transform: scale(1.75);
    transition-timing-function: var(--ease-3);
    transition-duration: 0.25s;
  }
  [data-theme=dark] .sun-and-moon > .sun-beams {
    transform: rotate(-25deg);
    transition-duration: 0.15s;
  }
  [data-theme=dark] .sun-and-moon > .moon > circle {
    transition-delay: 0.25s;
    transition-duration: 0.5s;
  }
}
.theme-toggle {
  --size: 30px;
  background: none;
  border: none;
  padding: 0;
  inline-size: var(--size);
  block-size: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  outline-offset: 5px;
}

.theme-toggle > svg {
  stroke-linecap: round;
}

html[data-theme=dark] {
  color-scheme: dark;
}
@keyframes octocat-wave {
  0%, to {
    transform: rotate(0);
  }
  20%, 60% {
    transform: rotate(-25deg);
  }
  40%, 80% {
    transform: rotate(10deg);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: clamp(16px, 3vw, var(--font-size-base));
  font-family: var(--mainfont);
  line-height: 1.5;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.toinfinityandbeyond {
  position: absolute;
  top: -9999px;
  visibility: hidden;
}

.content-body {
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

.hero {
  margin-top: 5rem;
}
@media (max-width: 47.93em) {
  .hero {
    margin-top: 0;
  }
}

.breadcrumb {
  font-size: 1.4rem;
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb a[aria-current=page] {
  color: var(--text-color);
}
.breadcrumb a:hover, .breadcrumb a:focus-visible {
  color: var(--secondary);
}
.breadcrumb span {
  color: var(--grey);
}
.breadcrumb .chevron {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-right: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  margin-right: 5px;
  transform: rotate(-45deg);
  font-size: 0;
  vertical-align: 9px;
}

.radius {
  border-radius: 10px;
  overflow: hidden;
}

.btn,
.button {
  padding: 1.6rem clamp(1.5rem, 2vw, 3rem);
  color: var(--primary);
  background-color: var(--bg-color-200);
  border: 2px solid var(--primary);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: clamp(0px, 2vw, 2px);
  text-transform: uppercase;
  transition: 0.3s ease-out;
}
.btn:hover, .btn:focus-visible,
.button:hover,
.button:focus-visible {
  background-color: var(--bg-color-500);
  color: var(--primary);
}
.btn.ghost,
.button.ghost {
  border: 1px solid var(--tertiary);
  color: var(--tertiary);
  background-color: transparent;
}
.btn.ghost:hover, .btn.ghost:focus-visible,
.button.ghost:hover,
.button.ghost:focus-visible {
  background-color: var(--tertiary-700);
  color: var(--primary);
}
.btn.reverse,
.button.reverse {
  border: 1px solid var(--secondary);
  color: #fff;
  background-color: var(--secondary);
}
.btn.reverse:hover, .btn.reverse:focus-visible,
.button.reverse:hover,
.button.reverse:focus-visible {
  background-color: #fff;
  color: var(--secondary);
}

/* width rules */
.full {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.limited {
  width: 100%;
  max-width: 1180px;
}

.extra-large {
  display: block;
  width: 100%;
  max-width: 1275px;
  margin: 0 auto;
}

.large {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.medium {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.small {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.w25 {
  width: 25%;
}
@media (max-width: 63.93em) {
  .w25 {
    width: 50%;
  }
}
@media (max-width: 47.93em) {
  .w25 {
    width: 100%;
  }
}

.w33 {
  width: 33%;
}
@media (max-width: 63.93em) {
  .w33 {
    width: 100%;
  }
}

.w50 {
  width: 50%;
}
@media (max-width: 63.93em) {
  .w50 {
    width: 100%;
  }
}

.w66 {
  width: 66%;
}
@media (max-width: 63.93em) {
  .w66 {
    width: 100%;
  }
}

.w75 {
  width: 75%;
}
@media (max-width: 63.93em) {
  .w75 {
    width: 100%;
  }
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.h25 {
  min-height: 25vh;
}

.h50 {
  min-height: 25vh;
}

.h80 {
  min-height: 25vh;
}

/* flex rules */
.flex {
  display: flex;
}

.fdc {
  flex-direction: column;
}

.fww {
  flex-wrap: wrap;
}

.aic {
  align-items: center;
}

.jcc {
  justify-content: center;
}

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

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

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

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

.jcsb {
  justify-content: space-between;
}

@media (max-width: 47.93em) {
  .fdc-m {
    flex-direction: column;
  }
  .fdr-m {
    flex-direction: row;
  }
  .fww-m {
    flex-wrap: wrap;
  }
  .aic-m {
    align-items: center;
  }
  .jcc-m {
    justify-content: center;
  }
  .aife-m {
    align-items: flex-end;
  }
  .jcfe-m {
    justify-content: flex-end;
  }
  .jcsb-m {
    justify-content: space-between;
  }
}

.gap0 {
  gap: calc(0 * var(--unit));
}

.gap1 {
  gap: calc(1 * var(--unit));
}

.gap2 {
  gap: calc(2 * var(--unit));
}

.gap3 {
  gap: calc(3 * var(--unit));
}

.gap4 {
  gap: calc(4 * var(--unit));
}

.gap5 {
  gap: calc(5 * var(--unit));
}

.gap6 {
  gap: calc(6 * var(--unit));
}

.gap7 {
  gap: calc(7 * var(--unit));
}

.gap8 {
  gap: calc(8 * var(--unit));
}

.gap9 {
  gap: calc(9 * var(--unit));
}

.gap10 {
  gap: calc(10 * var(--unit));
}

.gap11 {
  gap: calc(11 * var(--unit));
}

.gap12 {
  gap: calc(12 * var(--unit));
}

.gap13 {
  gap: calc(13 * var(--unit));
}

.gap14 {
  gap: calc(14 * var(--unit));
}

.gap15 {
  gap: calc(15 * var(--unit));
}

.fsh0 {
  flex-shrink: 0;
}

.fsh1 {
  flex-shrink: 1;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.dif {
  display: inline-flex;
}

/* common rules */
.ma {
  margin: 0 auto;
}

.m0 {
  margin: calc(0 * var(--unit));
}

.m1 {
  margin: calc(1 * var(--unit));
}

.m2 {
  margin: calc(2 * var(--unit));
}

.m3 {
  margin: calc(3 * var(--unit));
}

.m4 {
  margin: calc(4 * var(--unit));
}

.m5 {
  margin: calc(5 * var(--unit));
}

.mta {
  margin-top: auto;
}

.mt0 {
  margin-top: calc(0 * var(--unit));
}

.mt1 {
  margin-top: calc(1 * var(--unit));
}

.mt2 {
  margin-top: calc(2 * var(--unit));
}

.mt3 {
  margin-top: calc(3 * var(--unit));
}

.mt4 {
  margin-top: calc(4 * var(--unit));
}

.mt5 {
  margin-top: calc(5 * var(--unit));
}

.mba {
  margin-bottom: auto;
}

.mb0 {
  margin-bottom: calc(0 * var(--unit));
}

.mb1 {
  margin-bottom: calc(1 * var(--unit));
}

.mb2 {
  margin-bottom: calc(2 * var(--unit));
}

.mb3 {
  margin-bottom: calc(3 * var(--unit));
}

.mb4 {
  margin-bottom: calc(4 * var(--unit));
}

.mb5 {
  margin-bottom: calc(5 * var(--unit));
}

.mla {
  margin-left: auto;
}

.ml0 {
  margin-left: calc(0 * var(--unit));
}

.ml1 {
  margin-left: calc(1 * var(--unit));
}

.ml2 {
  margin-left: calc(2 * var(--unit));
}

.ml3 {
  margin-left: calc(3 * var(--unit));
}

.ml4 {
  margin-left: calc(4 * var(--unit));
}

.ml5 {
  margin-left: calc(5 * var(--unit));
}

.mra {
  margin-right: auto;
}

.mr0 {
  margin-right: calc(0 * var(--unit));
}

.mr1 {
  margin-right: calc(1 * var(--unit));
}

.mr2 {
  margin-right: calc(2 * var(--unit));
}

.mr3 {
  margin-right: calc(3 * var(--unit));
}

.mr4 {
  margin-right: calc(4 * var(--unit));
}

.mr5 {
  margin-right: calc(5 * var(--unit));
}

@media (max-width: 47.93em) {
  .m-m0 {
    margin: calc(0 * var(--unit));
  }
  .m-m1 {
    margin: calc(1 * var(--unit));
  }
  .m-m2 {
    margin: calc(2 * var(--unit));
  }
  .m-m3 {
    margin: calc(3 * var(--unit));
  }
  .m-m4 {
    margin: calc(4 * var(--unit));
  }
  .m-m5 {
    margin: calc(5 * var(--unit));
  }
  .m-mt0 {
    margin-top: calc(0 * var(--unit));
  }
  .m-mt1 {
    margin-top: calc(1 * var(--unit));
  }
  .m-mt2 {
    margin-top: calc(2 * var(--unit));
  }
  .m-mt3 {
    margin-top: calc(3 * var(--unit));
  }
  .m-mt4 {
    margin-top: calc(4 * var(--unit));
  }
  .m-mt5 {
    margin-top: calc(5 * var(--unit));
  }
  .m-mr0 {
    margin-right: calc(0 * var(--unit));
  }
  .m-mr1 {
    margin-right: calc(1 * var(--unit));
  }
  .m-mr2 {
    margin-right: calc(2 * var(--unit));
  }
  .m-mr3 {
    margin-right: calc(3 * var(--unit));
  }
  .m-mr4 {
    margin-right: calc(4 * var(--unit));
  }
  .m-mr5 {
    margin-right: calc(5 * var(--unit));
  }
  .m-mb0 {
    margin-bottom: calc(0 * var(--unit));
  }
  .m-mb1 {
    margin-bottom: calc(1 * var(--unit));
  }
  .m-mb2 {
    margin-bottom: calc(2 * var(--unit));
  }
  .m-mb3 {
    margin-bottom: calc(3 * var(--unit));
  }
  .m-mb4 {
    margin-bottom: calc(4 * var(--unit));
  }
  .m-mb5 {
    margin-bottom: calc(5 * var(--unit));
  }
  .m-ml0 {
    margin-left: calc(0 * var(--unit));
  }
  .m-ml1 {
    margin-left: calc(1 * var(--unit));
  }
  .m-ml2 {
    margin-left: calc(2 * var(--unit));
  }
  .m-ml3 {
    margin-left: calc(3 * var(--unit));
  }
  .m-ml4 {
    margin-left: calc(4 * var(--unit));
  }
  .m-ml5 {
    margin-left: calc(5 * var(--unit));
  }
}
.p0 {
  padding: calc(0 * var(--unit));
}

.p1 {
  padding: calc(1 * var(--unit));
}

.p2 {
  padding: calc(2 * var(--unit));
}

.p3 {
  padding: calc(3 * var(--unit));
}

.p4 {
  padding: calc(4 * var(--unit));
}

.p5 {
  padding: calc(5 * var(--unit));
}

.pt0 {
  padding-top: calc(0 * var(--unit));
}

.pt1 {
  padding-top: calc(1 * var(--unit));
}

.pt2 {
  padding-top: calc(2 * var(--unit));
}

.pt3 {
  padding-top: calc(3 * var(--unit));
}

.pt4 {
  padding-top: calc(4 * var(--unit));
}

.pt5 {
  padding-top: calc(5 * var(--unit));
}

.pb0 {
  padding-bottom: calc(0 * var(--unit));
}

.pb1 {
  padding-bottom: calc(1 * var(--unit));
}

.pb2 {
  padding-bottom: calc(2 * var(--unit));
}

.pb3 {
  padding-bottom: calc(3 * var(--unit));
}

.pb4 {
  padding-bottom: calc(4 * var(--unit));
}

.pb5 {
  padding-bottom: calc(5 * var(--unit));
}

.pl0 {
  padding-left: calc(0 * var(--unit));
}

.pl1 {
  padding-left: calc(1 * var(--unit));
}

.pl2 {
  padding-left: calc(2 * var(--unit));
}

.pl3 {
  padding-left: calc(3 * var(--unit));
}

.pl4 {
  padding-left: calc(4 * var(--unit));
}

.pl5 {
  padding-left: calc(5 * var(--unit));
}

.pr0 {
  padding-right: calc(0 * var(--unit));
}

.pr1 {
  padding-right: calc(1 * var(--unit));
}

.pr2 {
  padding-right: calc(2 * var(--unit));
}

.pr3 {
  padding-right: calc(3 * var(--unit));
}

.pr4 {
  padding-right: calc(4 * var(--unit));
}

.pr5 {
  padding-right: calc(5 * var(--unit));
}

@media (max-width: 47.93em) {
  .m-p0 {
    padding: calc(0 * var(--unit));
  }
  .m-p1 {
    padding: calc(1 * var(--unit));
  }
  .m-p2 {
    padding: calc(2 * var(--unit));
  }
  .m-p3 {
    padding: calc(3 * var(--unit));
  }
  .m-p4 {
    padding: calc(4 * var(--unit));
  }
  .m-p5 {
    padding: calc(5 * var(--unit));
  }
  .m-pt0 {
    padding-top: calc(0 * var(--unit));
  }
  .m-pt1 {
    padding-top: calc(1 * var(--unit));
  }
  .m-pt2 {
    padding-top: calc(2 * var(--unit));
  }
  .m-pt3 {
    padding-top: calc(3 * var(--unit));
  }
  .m-pt4 {
    padding-top: calc(4 * var(--unit));
  }
  .m-pt5 {
    padding-top: calc(5 * var(--unit));
  }
  .m-pr0 {
    padding-right: calc(0 * var(--unit));
  }
  .m-pr1 {
    padding-right: calc(1 * var(--unit));
  }
  .m-pr2 {
    padding-right: calc(2 * var(--unit));
  }
  .m-pr3 {
    padding-right: calc(3 * var(--unit));
  }
  .m-pr4 {
    padding-right: calc(4 * var(--unit));
  }
  .m-pr5 {
    padding-right: calc(5 * var(--unit));
  }
  .m-pb0 {
    padding-bottom: calc(0 * var(--unit));
  }
  .m-pb1 {
    padding-bottom: calc(1 * var(--unit));
  }
  .m-pb2 {
    padding-bottom: calc(2 * var(--unit));
  }
  .m-pb3 {
    padding-bottom: calc(3 * var(--unit));
  }
  .m-pb4 {
    padding-bottom: calc(4 * var(--unit));
  }
  .m-pb5 {
    padding-bottom: calc(5 * var(--unit));
  }
  .m-pl0 {
    padding-left: calc(0 * var(--unit));
  }
  .m-pl1 {
    padding-left: calc(1 * var(--unit));
  }
  .m-pl2 {
    padding-left: calc(2 * var(--unit));
  }
  .m-pl3 {
    padding-left: calc(3 * var(--unit));
  }
  .m-pl4 {
    padding-left: calc(4 * var(--unit));
  }
  .m-pl5 {
    padding-left: calc(5 * var(--unit));
  }
}
.bg {
  background-position: center center;
  background-size: cover;
}

img,
picture,
figure {
  height: auto;
  max-width: 100%;
  font-size: 0;
  font-style: italic;
}

.ofc {
  -o-object-fit: cover;
     object-fit: cover;
}

.rel {
  position: relative;
}

.oh {
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.z-1 {
  z-index: -1;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: 0.3s;
}
a:focus, a:hover, a:active {
  color: var(--secondary);
  text-decoration: none;
}

a.cta,
button.cta {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  text-decoration: none;
  color: var(--bg-color);
}
a.cta:hover, a.cta:focus,
button.cta:hover,
button.cta:focus {
  color: var(--bg-color);
  background-color: var(--secondary-200);
}
a.cta.border,
button.cta.border {
  border: 1px solid currentColor;
}
a.cta.selected,
button.cta.selected {
  text-decoration: underline;
  text-underline-offset: 5px;
  background-color: var(--secondary-200);
}

.all-over {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.link-over::before {
  content: "";
  position: absolute;
  inset: 0;
}

.tdn {
  text-decoration: none;
}
.tdn:hover {
  text-decoration: underline;
}

.bump {
  display: inline-block;
  transform: translateY(0);
  transition: 0.3s ease-out;
}
.bump:hover {
  transform: translateY(-5px);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  margin-top: 0;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.ttu {
  text-transform: uppercase;
}

.ttn {
  text-transform: none;
}

.fw300 {
  font-weight: 300;
}

.fw500 {
  font-weight: 500;
}

.fw700,
strong {
  font-weight: 700;
}

/* RTL settings */
.rtl {
  direction: rtl;
}

.pen {
  pointer-events: none;
}

.hide {
  display: none;
}

@media (min-width: 64.06em) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 64.06em) {
  .hide-mobile {
    display: none !important;
  }
}

figcaption {
  display: block;
  padding: 1rem 0;
  text-align: right;
  font-family: var(--mainfont);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-color-300);
}
figcaption a {
  text-decoration: underline !important;
}

.content-wrapper {
  width: 100%;
  flex-grow: 1;
}

.border {
  border: 1px solid var(--grey);
}

h1,
.h1-like {
  font-size: clamp(32px, 5vw, var(--heading-1-size));
  font-family: var(--heading-1-font);
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 1em;
}

.h1-small {
  font-size: calc(var(--heading-1-size) / 2);
}

h2, .h2-like {
  font-size: var(--heading-2-size);
  font-family: var(--heading-2-font);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color);
  margin-top: 0.25em;
  margin-bottom: 0.33em;
}
@media (max-width: 63.93em) {
  h2, .h2-like {
    font-size: calc(var(--heading-2-size) * 0.8);
  }
}
h2[style="text-align: center;"]::after, .h2-like[style="text-align: center;"]::after {
  margin: 1rem auto;
}

h3, .h3-like {
  font-family: var(--heading-3-font);
  font-size: var(--heading-3-size);
  font-weight: 700;
  color: var(--text-color);
  margin-top: 0.25em;
  margin-bottom: 1em;
}
@media (max-width: 63.93em) {
  h3, .h3-like {
    font-size: calc(var(--heading-3-size) * 0.8);
  }
}

h4, .h4-like {
  font-family: var(--heading-4-font);
  font-size: var(--heading-4-size);
  font-weight: 500;
  color: var(--text-color);
  margin-top: 0.25em;
  margin-bottom: 1em;
}

h5, .h5-like {
  font-family: var(--heading-5-font);
  font-size: var(--heading-5-size);
  font-weight: 500;
  color: var(--text-color);
  margin-top: 0.25em;
  margin-bottom: 1em;
}

h6, .h6-like {
  font-family: var(--heading-6-font);
  font-size: var(--heading-5-size);
  font-weight: 500;
  color: var(--text-color);
  margin-top: 0.25em;
  margin-bottom: 1em;
}

.clamp0 {
  display: -webkit-box;
  -webkit-line-clamp: 0;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 63.93em) {
  .m-clamp0 {
    display: -webkit-box;
    -webkit-line-clamp: 0;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .m-clamp1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .m-clamp2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .m-clamp3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .m-clamp4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .m-clamp5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.order0 {
  order: 0;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.order3 {
  order: 3;
}

.order4 {
  order: 4;
}

.order5 {
  order: 5;
}

.fz12 {
  font-size: 1.2rem;
}
@media screen and (max-width: var(--small)) {
  .fz12 {
    font-size: 1rem;
  }
}

.fz14 {
  font-size: 1.4rem;
}
@media screen and (max-width: var(--small)) {
  .fz14 {
    font-size: 1.2rem;
  }
}

.fz16 {
  font-size: 1.6rem;
}
@media screen and (max-width: var(--small)) {
  .fz16 {
    font-size: 1.4rem;
  }
}

.fz18 {
  font-size: 1.8rem;
}
@media screen and (max-width: var(--small)) {
  .fz18 {
    font-size: 1.6rem;
  }
}

.fz20 {
  font-size: 2rem;
}
@media screen and (max-width: var(--small)) {
  .fz20 {
    font-size: 1.8rem;
  }
}

select {
  padding: 1rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.4rem;
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: var(--bg-primary);
  gap: 1.6rem;
}
@media (max-width: 63.93em) {
  .pagination {
    gap: 0.3rem;
  }
}
.pagination li a,
.pagination li.current span {
  display: flex;
  padding: 0.8rem 1.55rem;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 63.93em) {
  .pagination li a,
  .pagination li.current span {
    padding: 0.8rem 1.15rem;
    font-size: 1.4rem;
  }
}
.pagination .current a {
  display: block;
  color: var(--bg-primary);
  border-radius: 4px;
  background: var(--bg-color-500);
}
.pagination li:hover,
.pagination li:focus {
  color: var(--primary);
  border-radius: 4px;
  background: var(--neutral-200, #EEF0F6);
}
.pagination [disabled], .pagination .disabled {
  opacity: 1;
  color: #767D92;
  pointer-events: none;
}
.pagination .dots {
  pointer-events: none;
}
@media (max-width: 63.93em) {
  .pagination .dots {
    font-size: 1rem;
  }
}
.pagination .chevron {
  content: "";
  display: block;
  align-self: center;
  height: 20px;
  width: 20px;
  background-size: contain;
  background-position: center center;
}
.pagination .prev {
  display: flex;
  align-content: center;
  text-decoration: none;
}
@media (max-width: 63.93em) {
  .pagination .prev {
    font-size: 0;
  }
}
.pagination .prev a, .pagination .prev span {
  display: flex;
  text-decoration: none;
  padding: 0.8rem;
}
@media (max-width: 63.93em) {
  .pagination .prev a, .pagination .prev span {
    font-size: 0;
    padding: 0.8rem 0.6rem;
  }
}
.pagination .next {
  display: flex;
  align-content: center;
}
.pagination .next a, .pagination .next span {
  display: flex;
  text-decoration: none;
  padding: 0.8rem;
}
@media (max-width: 63.93em) {
  .pagination .next a, .pagination .next span {
    font-size: 0;
  }
}

.left {
  order: 0;
  padding-right: 2rem;
}
@media (max-width: 47.93em) {
  .left {
    padding: 0;
  }
}

.right {
  order: 1;
  padding-left: 2rem;
}
@media (max-width: 47.93em) {
  .right {
    padding: 0;
  }
}

.video-js {
  height: auto;
  width: 100%;
}
.video-js .vjs-selected span {
  color: var(--text-color) !important;
  background: var(--bg-color) !important;
}
.video-js .vjs-tech {
  position: relative !important;
}
.video-js .vjs-poster img {
  -o-object-fit: cover;
     object-fit: cover;
}
.video-js *::before,
.video-js .vjs-remaining-time span,
.video-js .vjs-menu-item-text {
  color: #fff;
}
.video-js .vjs-big-play-button {
  color: #fff;
}
.video-js .vjs-big-play-button span::before {
  color: #fff;
}
.video-js legend {
  margin-bottom: 1.6rem;
}
.video-js .vjs-text-track-settings fieldset span {
  padding-right: 1.5rem;
}
.video-js .vjs-text-track-settings .vjs-label {
  color: #fff;
}
.video-js .vjs-modal-dialog-content select {
  height: 35px;
  font-size: 1.8rem;
}
.video-js .vjs-track-settings-controls button {
  background-color: white;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
}

dialog {
  border: none;
  background-color: var(--menu-bg);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(0.9rem);
}
[data-theme=dark] dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.66);
}

.icon-mask {
  --icon-size: 3rem;
  --color: var(--primary);
  display: inline-block;
  background-color: var(--color);
  height: var(--icon-size);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  vertical-align: calc((0.75em - var(--icon-size)) * 0.5);
  width: var(--icon-size);
}

.sr-only,
.visually-hidden {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  clip-path: inset(50%) !important; /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; /* 3 */
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

.skiplinks-wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  display: flex;
  padding: 2rem 1rem;
  gap: 2rem;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--text-color);
}
.skiplinks-wrapper a {
  color: var(--text-color);
}
.skiplinks-wrapper:focus-within {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

.header {
  width: 100%;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: var(--menu-bg);
  transition: 0.1s ease-out;
}

.sticky-header {
  top: 0;
}

.show-header {
  opacity: 1;
  pointer-events: auto;
}

.sticky-header:not(.show-header) {
  translate: 0 -101%;
  pointer-events: none;
}
.sticky-header:not(.show-header) .submenu {
  translate: 0 -101%;
}

@media (max-width: 63.93em) {
  .header-wrapper {
    padding: 1rem 2rem;
  }
}

.main-menu {
  display: block;
}

@media (max-width: 63.93em) {
  #nav-main {
    display: none;
  }
}

.submenu {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  width: 100vw;
  top: 100%;
  left: 0;
  z-index: 10;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--bg-color-500);
  background-color: var(--menu-bg);
}
.submenu .menu-item a {
  display: block;
  padding: 2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  border: none;
  white-space: nowrap;
  background-color: var(--menu-bg);
}

.submenu.show {
  display: flex;
}

.menu-item :is(a, button) {
  height: 100%;
  font-size: 1.8rem;
  color: var(--menu-color);
  text-underline-offset: 0.5em;
}
.menu-item :is(a, button):hover, .menu-item :is(a, button):focus {
  color: var(--menu-color-hover);
}

.menu-item button.arrow::after {
  --icon-size: 2rem;
}

.current-menu-parent > :is(a, button) {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.current_page_ancestor > a,
.current_page_item > a,
.current_page_parent > a,
.current-menu-item > a,
.selected {
  color: var(--menu-color-hover);
  text-decoration: underline;
  text-underline-offset: 10px;
}

.hdr-logo-link {
  display: flex;
}
.hdr-logo-link img, .hdr-logo-link svg {
  height: 75px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 63.93em) {
  .hdr-logo-link img {
    height: 50px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.lang_selector {
  min-width: 61px;
  margin-top: 3px;
  margin-left: 2rem;
}
.lang_selector * {
  display: inline-block;
  margin-top: 2px;
  position: relative;
  font-weight: 300;
  transition: 0.3s;
}
.lang_selector *::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  margin-top: 2px;
  background-color: transparent;
  transition: 0.3s;
}
.lang_selector *:hover {
  color: var(--tertiary);
}
.lang_selector *:hover::after {
  content: "";
  width: 100%;
  background-color: var(--tertiary);
}
.lang_selector .active {
  color: var(--tertiary);
  pointer-events: none;
}
.lang_selector .active::after {
  content: "";
  width: 100%;
  background-color: var(--tertiary);
}

.search-dialog {
  width: max(90vw, 1024px);
}
.search-dialog:modal {
  display: flex;
  flex-direction: column;
  height: 300px;
}
.search-dialog .form-search {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.search-dialog h2 {
  margin-bottom: 0;
  text-align: center;
  font-size: 3.8rem;
  letter-spacing: 0.74px;
  color: #fff;
}
.search-dialog p {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 1025px) {
  .search-dialog p {
    font-size: 1.6rem;
  }
}
.search-dialog label {
  width: 100%;
}

.icon-close {
  display: flex;
  align-items: center;
  margin: 0.5rem 0 0.5rem auto;
  gap: 1rem;
  padding: 0.5rem 0;
  transition: 0.3s ease-out;
  color: var(--menu-color);
}
.icon-close:hover {
  background: var(--menu-bg-600);
}
[data-theme=dark] .icon-close:hover {
  background: var(--menu-bg-100);
}
.icon-close svg {
  width: 14px;
  translate: 0, 1px;
}
.icon-close svg path {
  fill: var(--menu-color);
}

.searchform {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 4rem;
  margin: auto;
  position: relative;
}
.searchform input {
  width: 100%;
  padding: 2.25rem 6rem 2.25rem 2rem;
  border: none;
  border-bottom: 2px solid var(--text-color);
  background: none;
  font-family: var(--mainfont);
  font-size: 5rem;
  font-weight: 700;
  color: var(--menu-color);
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.searchform input::-moz-placeholder {
  color: var(--menu-color-300);
}
.searchform input::placeholder {
  color: var(--menu-color-300);
}
@media (max-width: 1025px) {
  .searchform input {
    font-size: 2rem;
  }
}
.searchform .search-field {
  margin-left: 2rem;
}
.searchform .search-submit {
  display: block;
  align-self: center;
  margin: 0 1rem 0 0;
  flex-shrink: 0;
  width: clamp(50px, 6vw, 80px);
  height: clamp(50px, 6vw, 80px);
  border: 1px solid var(--text-color);
  border-radius: 50%;
}
.searchform .search-submit:hover {
  background-color: var(--menu-bg-700);
}
[data-theme=dark] .searchform .search-submit:hover {
  background-color: var(--menu-bg-300);
}
.searchform .search-submit:hover svg path {
  fill: var(--text-color);
}
.searchform .search-submit svg {
  width: clamp(20px, 2vw, 40px);
  height: clamp(20px, 2vw, 40px);
}

.search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 32px;
  transition: 0.3s;
}
.search-icon:hover path, .search-icon:focus-within path {
  fill: var(--menu-color-hover);
}
.search-icon svg {
  height: 24px;
  width: 24px;
}
.search-icon svg path {
  fill: var(--menu-color);
}

.footer {
  background-color: var(--footer-bg);
}
.footer * {
  color: var(--footer-text);
}
.footer img {
  max-height: 150px;
}
.footer .footer-content {
  flex: 2;
  width: 100%;
}
.footer .footer-menu {
  flex: 1;
  width: 100%;
}
.footer .footer-menu a {
  font-size: 1.6rem;
}
.footer .footer-menu li {
  margin: 0;
}
.footer .footer-contact {
  flex: 1;
  width: 100%;
}
.footer .footer-contact a, .footer .footer-contact p {
  font-size: 1.6rem;
}

.footer-menu-wrapper {
  padding: 2rem 0;
  border-top: 1px solid var(--footer-bg-100);
}
.footer-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.footer-menu-wrapper a {
  color: var(--footer-text);
}

.blog .tease {
  position: relative;
}

.blog-hero {
  background-color: var(--secondary);
  margin-bottom: 4rem;
  margin-top: 0;
}
.blog-hero h1 {
  color: var(--bg-color);
  margin-bottom: 2rem;
}

[class*=" grid-"],
[class^=grid-] {
  display: grid;
  grid-auto-flow: dense;
}
[class*=" grid-"].has-gutter,
[class^=grid-].has-gutter {
  grid-gap: 1rem;
}
[class*=" grid-"].has-gutter-l,
[class^=grid-].has-gutter-l {
  grid-gap: 2rem;
}
[class*=" grid-"].has-gutter-xl,
[class^=grid-].has-gutter-xl {
  grid-gap: 4rem;
}
@media (max-width: 30em) {
  [class*=" grid-"],
  [class^=grid-] {
    display: flex;
    flex-direction: column;
  }
  [class*=" grid-"].min-2-cols,
  [class^=grid-].min-2-cols {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.autogrid,
.grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.autogrid.has-gutter,
.grid.has-gutter {
  grid-column-gap: 1rem;
}
.autogrid.has-gutter-l,
.grid.has-gutter-l {
  grid-column-gap: 2rem;
}
.autogrid.has-gutter-xl,
.grid.has-gutter-xl {
  grid-column-gap: 4rem;
}

[class*=grid-2] {
  grid-template-columns: repeat(2, 1fr);
}

[class*=grid-3] {
  grid-template-columns: repeat(3, 1fr);
}

[class*=grid-4] {
  grid-template-columns: repeat(4, 1fr);
}

[class*=grid-5] {
  grid-template-columns: repeat(5, 1fr);
}

[class*=grid-6] {
  grid-template-columns: repeat(6, 1fr);
}

[class*=grid-7] {
  grid-template-columns: repeat(7, 1fr);
}

[class*=grid-8] {
  grid-template-columns: repeat(8, 1fr);
}

[class*=grid-9] {
  grid-template-columns: repeat(9, 1fr);
}

[class*=grid-10] {
  grid-template-columns: repeat(10, 1fr);
}

[class*=grid-11] {
  grid-template-columns: repeat(11, 1fr);
}

[class*=grid-12] {
  grid-template-columns: repeat(12, 1fr);
}

.grid [class*=col-1] {
  grid-column: auto/span 1;
}

.grid [class*=row-1] {
  grid-row: auto/span 1;
}

.grid [class*=col-2] {
  grid-column: auto/span 2;
}

.grid [class*=row-2] {
  grid-row: auto/span 2;
}

.grid [class*=col-3] {
  grid-column: auto/span 3;
}

.grid [class*=row-3] {
  grid-row: auto/span 3;
}

.grid [class*=col-4] {
  grid-column: auto/span 4;
}

.grid [class*=row-4] {
  grid-row: auto/span 4;
}

.grid [class*=col-5] {
  grid-column: auto/span 5;
}

.grid [class*=row-5] {
  grid-row: auto/span 5;
}

.grid [class*=col-6] {
  grid-column: auto/span 6;
}

.grid [class*=row-6] {
  grid-row: auto/span 6;
}

.grid [class*=col-7] {
  grid-column: auto/span 7;
}

.grid [class*=row-7] {
  grid-row: auto/span 7;
}

.grid [class*=col-8] {
  grid-column: auto/span 8;
}

.grid [class*=row-8] {
  grid-row: auto/span 8;
}

.grid [class*=col-9] {
  grid-column: auto/span 9;
}

.grid [class*=row-9] {
  grid-row: auto/span 9;
}

.grid [class*=col-10] {
  grid-column: auto/span 10;
}

.grid [class*=row-10] {
  grid-row: auto/span 10;
}

.grid [class*=col-11] {
  grid-column: auto/span 11;
}

.grid [class*=row-11] {
  grid-row: auto/span 11;
}

.grid [class*=col-12] {
  grid-column: auto/span 12;
}

.grid [class*=row-12] {
  grid-row: auto/span 12;
}

/* intermediate breakpoints */
@media (min-width: 30em) and (max-width: 62.93em) {
  [class*=grid-][class*=-small-1] {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid [class*=col-][class*=-small-1] {
    grid-column: auto/span 1;
  }
  [class*=grid-][class*=-small-2] {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid [class*=col-][class*=-small-2] {
    grid-column: auto/span 2;
  }
  [class*=grid-][class*=-small-3] {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid [class*=col-][class*=-small-3] {
    grid-column: auto/span 3;
  }
  [class*=grid-][class*=-small-4] {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid [class*=col-][class*=-small-4] {
    grid-column: auto/span 4;
  }
  [class*=-small-all] {
    grid-column: 1/-1;
  }
}
.item-first {
  order: -1;
}

.item-last {
  order: 1;
}

.grid-offset {
  visibility: hidden;
}

.col-all {
  grid-column: 1/-1;
}

.row-all {
  grid-row: 1/-1;
}

.post-hero-wrapper {
  min-height: 675px;
}
@media (max-width: 47.93em) {
  .post-hero-wrapper {
    min-height: 432px;
  }
}
.post-hero-wrapper h1 {
  font-size: 5rem;
}
@media (max-width: 63.93em) {
  .post-hero-wrapper h1 {
    font-size: 3.3rem;
  }
}
.post-hero-wrapper span {
  max-width: 700px;
  display: inline-block;
  color: #fff;
  padding: 1rem;
  line-height: 2;
}
.post-hero-wrapper .hero-img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.post-hero-wrapper .hero-img::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.text-image-wrapper picture {
  height: 100%;
}

@media (max-width: 47.93em) {
  .team-wrapper .member-item {
    margin-bottom: 2rem;
  }
}

.iframe-wrapper iframe {
  width: 100%;
}

.button-arrow::after {
  --icon-size: 2rem;
  background-color: currentColor;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: var(--icon-size);
  margin-left: 0.5rem;
  margin-right: 0;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZD0ibTEyIDEzLjE3MiA0Ljk1LTQuOTUgMS40MTQgMS40MTRMMTIgMTYgNS42MzYgOS42MzYgNy4wNSA4LjIyMmw0Ljk1IDQuOTVaIi8+PC9zdmc+);
          mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZD0ibTEyIDEzLjE3MiA0Ljk1LTQuOTUgMS40MTQgMS40MTRMMTIgMTYgNS42MzYgOS42MzYgNy4wNSA4LjIyMmw0Ljk1IDQuOTVaIi8+PC9zdmc+);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  transition: rotate 0.3s;
  vertical-align: calc((0.75em - var(--icon-size)) * 0.5);
  width: var(--icon-size);
}
.button-arrow[aria-expanded=true]::after {
  rotate: -180deg;
}

.cta-wrapper {
  min-height: clamp(300px, 25vw, 600px);
}
.cta-wrapper .cta-wrapper-content {
  font-size: 1.15em;
  max-width: 740px;
}

.toggle-panel {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
}
.toggle-panel.accordion-open {
  max-height: 600px;
  visibility: visible;
  padding-top: 1rem;
  transition: max-height 0.4s;
}
@media (max-width: 63.93em) {
  .toggle-panel.accordion-open {
    max-height: 50vh;
  }
}
.toggle-panel.accordion-open-finish {
  overflow: auto;
}
.toggle-panel.accordion-closed {
  transition: max-height 0s;
}

.accordion-button::after {
  display: inline-flex;
  position: absolute;
  right: 0;
  top: 50%;
  translate: -100% -50%;
}

.quote-wrapper blockquote {
  padding: 7rem 5rem 1rem 10rem;
  position: relative;
  color: var(--secondary);
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
}
.quote-wrapper blockquote::before {
  content: "“";
  position: absolute;
  left: -3rem;
  top: 0;
  z-index: -1;
  font-family: var(--secondfont);
  font-size: 20rem;
  line-height: 1;
  color: var(--tertiary);
  opacity: 0.75;
}
@media screen and (max-width: 63.93em) {
  .quote-wrapper blockquote {
    padding: 3rem 2rem 1rem;
    font-size: 2rem;
  }
  .quote-wrapper blockquote::before {
    font-size: 5rem;
    left: 0;
  }
}

.post-files-wrapper .file-item {
  border: 1px solid var(--secondary);
}
.post-files-wrapper .file-item:hover, .post-files-wrapper .file-item:focus {
  border: 1px solid var(--secondary-700);
  background: var(--bg-color-300);
}
.post-files-wrapper .file-item div {
  transition: 0.3s;
}
.post-files-wrapper .file-item .file-name span {
  color: var(--secondary-600);
}
[data-theme=dark] .post-files-wrapper .file-item .file-name span {
  color: var(--secondary-100);
}
.post-files-wrapper .file-item .file-date {
  font-size: 1.2rem;
  color: var(--grey);
}

.icon-file::before {
  --icon-size: 5rem;
  background-color: var(--secondary);
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: var(--icon-size);
  margin-left: 0.5rem;
  margin-right: 0;
  -webkit-mask-image: url(../images/pdf.svg);
          mask-image: url(../images/pdf.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  transition: transform 0.3s;
  vertical-align: calc((0.75em - var(--icon-size)) * 0.5);
  width: var(--icon-size);
}
.icon-file.secondary::before {
  --icon-size: 2.5rem;
  background-color: var(--bg-color);
}

.file-size {
  color: currentColor;
}

.post-spacer-wrapper .spacer {
  height: 1px;
  width: 100%;
  background-color: var(--primary);
}

.img-wrapper .img-fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  aspect-ratio: 1;
  background-color: var(--bg-color);
  position: absolute;
  padding: 0;
  transition: 0.3s ease-out;
  top: 1.5rem;
  right: 1.5rem;
}
.img-wrapper .img-fullscreen:hover, .img-wrapper .img-fullscreen:focus {
  background-color: var(--text-color);
}
.img-wrapper .img-fullscreen:hover::after, .img-wrapper .img-fullscreen:focus::after {
  background-color: var(--bg-color);
}
.img-wrapper .img-fullscreen::after {
  content: "";
  display: block;
  height: 2rem;
  aspect-ratio: 1;
  background-color: var(--text-color);
  -webkit-mask-image: url(../images/fullscreen.svg);
          mask-image: url(../images/fullscreen.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  transition: 0.3s ease-out;
}
.img-wrapper .img-dialog {
  overflow: clip;
  max-width: 95vw;
  max-height: 85dvh;
}
.img-wrapper .img-dialog[open] {
  display: flex;
  flex-direction: column;
}
.img-wrapper .img-dialog img {
  -o-object-fit: contain;
     object-fit: contain;
}

.post-form-wrapper .form-after {
  font-size: 1.4rem;
}

.table-wrapper {
  overflow-x: auto;
}
@media (max-width: 64.06em) {
  .table-wrapper {
    flex: 0 0 100% !important;
  }
}
.table-wrapper table {
  table-layout: auto;
  width: 100%;
  border: 1px solid var(--bg-color-700);
  vertical-align: middle;
}
.table-wrapper caption {
  font-weight: 700;
  background-color: var(--primary);
  color: var(--bg-color);
  padding: 0.5em 0;
}
.table-wrapper thead {
  position: sticky;
}
.table-wrapper thead th {
  min-width: 100px;
  color: var(--primary);
  background-color: var(--bg-color-200);
}
.table-wrapper th {
  padding: 1rem;
  font-weight: 700;
  border-right: 1px solid var(--bg-color);
  text-align: left;
  vertical-align: middle;
}
.table-wrapper th:last-of-type:not(:first-child) {
  border: none;
}
@media (max-width: 63.93em) {
  .table-wrapper th {
    padding: 0.5rem;
  }
}
.table-wrapper tr:nth-child(even) {
  background-color: var(--bg-color-200);
}
.table-wrapper td {
  vertical-align: middle;
  border-right: 1px solid var(--bg-color);
  padding: 1rem;
}
.table-wrapper td:last-of-type {
  border: none;
}
@media (max-width: 63.93em) {
  .table-wrapper td {
    padding: 0.5rem;
  }
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.post-listing-wrapper svg, .post-listing-wrapper img {
  width: 70px;
  height: auto;
  max-height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-listing-wrapper svg path, .post-listing-wrapper img path {
  fill: var(--secondary);
}
.post-listing-wrapper .list-item {
  width: 100%;
}
.post-listing-wrapper .list-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.75px;
  transform: translateZ(1px);
  background-color: var(--secondary);
}

.post-cards-wrapper .card {
  border: 1px solid var(--bg-color-700);
  border-radius: 15px;
  background-color: var(--bg-color-300);
  font-size: 1.6rem;
}
.post-cards-wrapper .card-mask {
  --icon-size: 3rem;
  background-color: var(--primary);
  height: var(--icon-size);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  vertical-align: calc((0.75em - var(--icon-size)) * 0.5);
  width: var(--icon-size);
}
.post-cards-wrapper h3 {
  margin-top: 0;
}
.post-cards-wrapper .wys + a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-interblock-wrapper {
  width: 100%;
  min-height: 0 !important;
  position: relative;
  z-index: -1;
}

.post-number-wrapper h3 {
  font-size: clamp(3rem, 3vw, 5rem);
  color: var(--secondary);
}

/* CUSTOM RULES*/
.swiper-slide {
  aspect-ratio: 1.66;
  opacity: 0.33;
  background-color: var(--bg-color-700);
}
.swiper-slide.swiper-slide-active {
  opacity: 1;
  transition: 0.3s ease-out;
}

.swiper-slide img {
  display: block;
  margin: auto;
}
@media (max-width: 63.93em) {
  .swiper-slide img {
    border-radius: 0;
  }
}

.swiper-slide.swiper-slide-prev,
.swiper-slide.swiper-slide-next {
  transition: 0.3s ease-out;
}

.swiper-pagination {
  top: clamp(12px, 1.5vmax, 25px) !important;
  bottom: auto !important;
}

.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  display: block;
  height: clamp(12px, 1vmax, 16px) !important;
  width: clamp(12px, 1vmax, 16px) !important;
  margin: 0 10px 10px !important;
  background: var(--bg-color) !important;
  opacity: 0.8 !important;
  border: 2px solid var(--secondary) !important;
}
@media (max-width: 63.93em) {
  .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    margin: 0 6px 6px !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary) !important;
  border: 2px solid #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 0;
  width: clamp(30px, 5vmax, 55px) !important;
  height: clamp(30px, 5vmax, 55px) !important;
  background-color: var(--secondary);
  border-radius: 50%;
}
.swiper-button-next:hover, .swiper-button-next:focus,
.swiper-button-prev:hover,
.swiper-button-prev:focus {
  border: 1px solid white;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem !important;
  translate: 2px 0;
  height: 100% !important;
  width: 100% !important;
  color: var(--bg-color);
  min-width: auto;
}

.swiper-button-prev::after {
  translate: 0 0;
}

/* MENU MOBILE */
.menu-mobile {
  display: none;
}
.menu-mobile.is-sticky {
  padding: 3rem 2rem;
}
.menu-mobile.is-sticky .menu-mobile-hidden {
  padding-top: 2rem;
}
@media (max-width: 63.93em) {
  .menu-mobile {
    display: block;
  }
}
.menu-mobile .burger {
  padding: 0;
}
.menu-mobile .burger svg {
  height: 30px;
  width: 30px;
}
.menu-mobile .burger svg path {
  fill: var(--text-color);
}

.menu-mobile-hidden {
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: fixed;
  margin: 0;
  inset: 0;
  z-index: 10;
  padding: 0;
  background-color: var(--menu-bg);
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
}
.menu-mobile-hidden[open] {
  display: flex;
  animation: open 0.3s forwards;
}
@keyframes open {
  from {
    translate: -100% 0;
  }
  to {
    translate: 0 0;
  }
}
.menu-mobile-hidden .header-mobile {
  background-color: var(--menu-color);
}
[data-theme=dark] .menu-mobile-hidden .header-mobile {
  background: var(--menu-bg-300);
}
.menu-mobile-hidden .theme-toggle {
  height: 50px;
  width: 50px;
  margin-left: auto;
  background: var(--menu-color-300);
}
[data-theme=dark] .menu-mobile-hidden .theme-toggle {
  background: var(--menu-bg);
}
.menu-mobile-hidden .theme-toggle .sun-and-moon {
  height: 25px;
  width: 25px;
}
.menu-mobile-hidden .theme-toggle .sun-and-moon :is(.moon, .sun) {
  fill: var(--menu-bg);
}
[data-theme=dark] .menu-mobile-hidden .theme-toggle .sun-and-moon :is(.moon, .sun) {
  fill: var(--menu-color);
}
.menu-mobile-hidden .theme-toggle .sun-and-moon .sun-beams {
  stroke: var(--menu-bg);
}
[data-theme=dark] .menu-mobile-hidden .theme-toggle .sun-and-moon .sun-beams {
  stroke: var(--menu-color);
}
.menu-mobile-hidden .icon-close {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1rem;
  color: var(--menu-bg);
  background-color: transparent;
}
[data-theme=dark] .menu-mobile-hidden .icon-close {
  color: var(--menu-color);
}
.menu-mobile-hidden .icon-close svg {
  width: 28px;
}
.menu-mobile-hidden .icon-close path {
  fill: var(--menu-bg);
}
[data-theme=dark] .menu-mobile-hidden .icon-close path {
  fill: var(--menu-color);
}
.menu-mobile-hidden .site-lang {
  padding: 1rem 2rem;
}
.menu-mobile-hidden .site-lang a {
  font-size: 1.3rem;
}
.menu-mobile-hidden .site-lang a::before {
  height: 24px;
  width: 21px;
}
.menu-mobile-hidden .lang_selector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 0;
}
.menu-mobile-hidden .lang_selector span {
  height: 26px;
  width: 1px;
  margin: 0 5px;
  font-size: 0;
  background-color: #fff;
}
.menu-mobile-hidden .lang_selector a {
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #fff;
}
.menu-mobile-hidden .lang_selector a.active {
  color: #fff;
  font-weight: 700;
}
.menu-mobile-hidden .search-icon {
  height: 50px;
  width: 50px;
  background-color: var(--menu-color-300);
  border-radius: 100%;
}
[data-theme=dark] .menu-mobile-hidden .search-icon {
  background-color: var(--menu-bg);
}
[data-theme=dark] .menu-mobile-hidden .search-icon span {
  --color: var(--menu-color) !important;
}
.menu-mobile-hidden .nav-main {
  width: 100%;
  flex-grow: 1;
  padding: 2rem 0;
}
.menu-mobile-hidden .nav-main > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.menu-mobile-hidden .nav-main > ul li {
  width: 100%;
  margin: 0;
}
.menu-mobile-hidden .nav-main > ul li:nth-child(even) {
  background-color: var(--menu-bg-500);
}
.menu-mobile-hidden .nav-main > ul li a, .menu-mobile-hidden .nav-main > ul li button {
  width: 100%;
  padding: 1rem 2rem;
}
.menu-mobile-hidden .nav-main > ul .current-menu-parent > :is(a, button) {
  text-underline-offset: 5px;
  text-decoration: underline;
}
.menu-mobile-hidden .nav-main > ul .submenu {
  display: none;
  background-color: var(--menu-bg-100);
  position: static;
  padding: 0 1rem;
  border: none;
}
.menu-mobile-hidden .nav-main > ul .submenu.show {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu-mobile-hidden .nav-main a,
.menu-mobile-hidden .nav-main p,
.menu-mobile-hidden .nav-main button {
  display: block;
  text-align: left;
  font-size: 1.6rem;
  height: auto;
  padding: 0.5rem;
}

/* ----------------------------- */
/* ==WordPress reset             */
/* ----------------------------- */
.comment-navigation,
.paging-navigation,
.post-navigation {
  overflow: hidden;
  margin: 0 0 1.5em;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  width: 50%;
  text-align: right;
}

.alignnone {
  margin: 0.25em 1.5em 1.5em 0;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 1.5em auto;
}

.alignleft {
  float: left;
  margin: 0 1.5em 0.25em 0;
}

.alignright {
  float: right;
  margin: 0 0 0.25em 1.5em;
}

.entry-content,
.comment-content {
  clear: both;
}
.entry-content::after, .entry-content::before,
.comment-content::after,
.comment-content::before {
  content: "";
  display: table;
}

.widget + .widget {
  margin: 1.5em 0 0;
}

.widget select {
  max-width: 100%;
}

/* === 5.1 Posts - post_class === */
/* === 5.3 Posts and Pages - Contents === */
.hentry {
  margin: 0 0 1.5em;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.comment-content a {
  word-wrap: break-word;
}

img.wp-smiley {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  border: none;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}

.wp-caption img {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  margin: 1em 0;
  text-align: center;
}

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  text-align: center;
  vertical-align: top;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.3333333333%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.6666666667%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.2857142857%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.1111111111%;
}

.gallery-caption {
  display: block;
}

@media screen and (max-width: 769px) {
  .flex [class*=col-] {
    flex: 0 0 100%;
  }
}

.col-12 {
  flex: 0 0 100%;
}

.col-11 {
  flex: 0 0 91.666667%;
}

.col-10 {
  flex: 0 0 83.333333%;
}

.col-9 {
  flex: 0 0 75%;
}

.col-8 {
  flex: 0 0 66.666667%;
}

.col-7 {
  flex: 0 0 58.333333%;
}

.col-6 {
  flex: 0 0 50%;
}

.col-5 {
  flex: 0 0 41.666667%;
}

.col-4 {
  flex: 0 0 33.333333%;
}

.col-3 {
  flex: 0 0 25%;
}

.col-2 {
  flex: 0 0 16.666667%;
}

.col-1 {
  flex: 0 0 8.333333%;
}

.col-auto {
  flex: 1;
}

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

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

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

.align-space-evenly {
  justify-content: space-evenly;
}

.align-space-between {
  justify-content: space-between;
}

.align-space-around {
  justify-content: space-around;
}

.valign-stretch {
  align-items: stretch;
}

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

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

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

* {
  color: var(--text-color);
}

.wys :first-child {
  margin-top: 0;
}
.wys :last-child {
  margin-bottom: 0;
}
.wys .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wys .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.wys .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}
.wys.white * {
  color: #fff !important;
}
.wys h2 {
  margin: 1em 0;
}
.wys h2[style="text-align: center;"]::after {
  margin: 1rem auto;
}
.wys h3 {
  margin: 1em 0;
}
.wys h4 {
  margin: 0.75em 0;
}
.wys h5 {
  margin: 0.5em 0;
}
.wys p {
  margin-bottom: 1em;
  line-height: 1.5;
}
.wys p img {
  margin: 1rem 0 2rem;
}
.wys i {
  font-style: italic;
}
.wys em {
  font-style: italic;
}
.wys ul {
  padding: 1rem 0 2rem;
}
.wys ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.wys ul li::before {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background-color: var(--text-color);
}
.wys ol {
  padding: 1rem 0 2rem;
  counter-reset: item;
}
.wys ol li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
.wys ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: -0.2rem;
  font-weight: bold;
}
.wys a:not(.cta) {
  color: var(--secondary);
}

.wpcf7-form {
  --gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.wpcf7-form > div:not(.full):has(input:not(.wpcf7-submit), textarea) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 calc(50% - var(--gap) / 2);
}
@media (max-width: 63.93em) {
  .wpcf7-form > div:not(.full):has(input:not(.wpcf7-submit), textarea) {
    flex: 0 0 100%;
  }
}
.wpcf7-form label {
  display: block;
}
.wpcf7-form :is(input,
textarea) {
  display: block;
  width: 100%;
  padding: 2rem;
  font-size: var(--font-size-base);
}
.wpcf7-form :is(input,
textarea):not(.wpcf7-submit) {
  border: none;
  border-bottom: 1px solid var(--text-color);
}
.wpcf7-form div:not(.full):has(.wpcf7-submit) {
  position: relative;
  flex: 0 0 100%;
}
.wpcf7-form .wpcf7-submit {
  width: auto;
  padding: 2rem 4rem;
  margin-left: auto;
  transition: 0.3s ease-out;
}
.wpcf7-form .wpcf7-spinner {
  margin: auto;
  top: 50%;
  translate: 2rem -50%;
}
.wpcf7-form .wpcf7-response-output {
  width: 100%;
  margin: 0 0 2rem !important;
  border: none !important;
  background-color: #d31d1d;
  color: #fff;
  padding: 2rem !important;
  text-align: center;
}
.wpcf7-form.sent {
  min-height: 100px;
  position: relative;
}
.wpcf7-form.sent *:not(.wpcf7-response-output) {
  display: none;
}
.wpcf7-form.sent .wpcf7-response-output {
  width: auto;
  margin: 0 !important;
  position: absolute;
  background: var(--bg-color);
  color: var(--text-color);
  border: 1px solid var(--text-color) !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7-form .wpcf7-spinner {
  position: absolute;
}

.wpcf7-not-valid-tip {
  color: #fff;
  padding: 0.25rem 0.75rem;
  background: #d31d1d;
}

#header::before, #header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 125px;
  height: 25px;
  -webkit-mask-image: url(../images/motifmenu.svg);
          mask-image: url(../images/motifmenu.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: var(--menu-bg);
  background-repeat: no-repeat;
}
#header::after {
  right: auto;
  left: 0;
  height: 25px;
  width: 135px;
  transform: scaleX(-2);
}

.menu-item :is(a, button) {
  position: relative;
  padding: 0.5rem 2rem;
  text-decoration: none !important;
  border-radius: 8px 0 8px 0;
  z-index: 0;
}
.menu-item :is(a, button):hover, .menu-item :is(a, button):focus {
  background-color: var(--menu-color-hover);
  color: #000;
}

.current_page_ancestor > a, .current_page_item > a, .current_page_parent > a, .current-menu-item > a, .selected {
  background-color: var(--menu-color-hover);
  color: #000;
}
.current_page_ancestor > a::before, .current_page_item > a::before, .current_page_parent > a::before, .current-menu-item > a::before, .selected::before {
  display: none;
}

.content-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 7rem;
}
@media (max-width: 47.93em) {
  .content-wrapper {
    padding-bottom: 5rem;
  }
}

.tease {
  transition: 0.3s ease-out;
}
.tease:hover .article-title, .tease:focus .article-title {
  background-color: var(--secondary-200);
}
.tease:hover a, .tease:focus a {
  text-decoration: none;
}
.tease:hover h3, .tease:focus h3 {
  text-decoration: underline;
}
.tease figure {
  height: 250px;
}
.tease .article-title {
  background-color: var(--secondary);
}
.tease .article-title * {
  color: var(--bg-color);
}

.team-wrapper:has(.member-item:hover) img {
  filter: blur(1px) grayscale(0.5) saturate(1);
}

.member-item:has(.link-over) img {
  transition: 0.3s ease-out;
}
.member-item:has(.link-over):hover img, .member-item:has(.link-over):focus img {
  filter: blur(0) grayscale(0) saturate(1.25);
}

.team-img {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.team-img img {
  height: 100%;
}

.text-image-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.text-image-wrapper .text-image-container {
  flex-wrap: nowrap;
  gap: 10rem;
  padding-block: 8rem;
}
@media (max-width: 80em) {
  .text-image-wrapper .text-image-container {
    min-width: 90%;
    gap: 4rem;
  }
}
@media (max-width: 47.93em) {
  .text-image-wrapper .text-image-container {
    flex-wrap: wrap;
    gap: 2rem;
    padding-block: 0 4rem;
  }
}
.text-image-wrapper .img-container {
  rotate: -5deg;
}
@media (max-width: 47.93em) {
  .text-image-wrapper .img-container {
    rotate: 0deg !important;
  }
}
.text-image-wrapper:nth-child(even) {
  background-color: var(--primary-100);
}
.text-image-wrapper:nth-child(even) .text-image-container {
  flex-direction: row-reverse;
}
.text-image-wrapper:nth-child(even) .text-image-container .img-container {
  rotate: 5deg;
}

.tease-rel h3 {
  font-size: 1.8rem;
}
.tease-rel p {
  font-size: 1.4rem;
  padding-bottom: 0;
}
.tease-rel .order0 {
  display: none !important;
}

@media (min-width: 63.93em) {
  .rel-recette .tease {
    min-height: 400px;
    padding: 0;
  }
  .rel-recette .tease img {
    transition: 0.3s ease-out;
  }
  .rel-recette .tease:hover .article-title, .rel-recette .tease:focus .article-title {
    padding-bottom: 5rem;
  }
  .rel-recette .tease:hover img, .rel-recette .tease:focus img {
    filter: saturate(1.25);
  }
}
.rel-recette a {
  position: relative;
}
.rel-recette figure {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}
.rel-recette .article-title {
  margin-top: auto;
  padding-bottom: 2rem;
  flex-grow: 0;
  background-color: transparent !important;
  position: relative;
  transition: 0.3s ease-out;
}
.rel-recette .article-title::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--secondary);
  opacity: 0.75;
  z-index: -1;
}

.search-results-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.result-item {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--bg-color-700);
}
.result-item:hover, .result-item:focus {
  background: var(--bg-color-500);
}
[data-theme=dark] .result-item:hover, [data-theme=dark] .result-item:focus {
  background: var(--bg-color-100);
}
.result-item .img-wrapper + .tease-content h2 {
  margin: -0.5rem 0 0.5rem;
}
.result-item h2 {
  margin: 0;
}
.result-item .tease-content {
  flex-shrink: 1;
}
.result-item .img-wrapper {
  flex-grow: 1;
  min-width: 150px;
}
[data-theme=dark] .result-item {
  border: 1px solid var(--bg-color-100);
}

.social-link {
  display: none !important;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  border-top: 1px solid var(--footer-text-100);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
}

.floating-element {
  position: absolute;
  left: -50px;
  top: 800px;
  height: 35vmax;
  aspect-ratio: 0.71;
}

.floating-element:nth-child(2) {
  position: absolute;
  top: 1800px;
  left: auto;
  right: -6%;
  height: 45vmax;
  aspect-ratio: 0.44;
}

.floating-element:nth-child(3) {
  position: absolute;
  top: 3200px;
  left: -50px;
  height: 45vmax;
  aspect-ratio: 0.44;
}

.floating-element:nth-child(4) {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: -50px;
  transform: translate(0, 50%) rotate(115deg) scale(1, -1) !important;
  height: 45vmax;
  aspect-ratio: 0.44;
}

#floating-element {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/deco2.avif);
  background-repeat: no-repeat;
  background-size: contain;
}

#floating-element-2 {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/deco.avif);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-15deg);
}

#floating-element-3 {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/deco2.avif);
  background-repeat: no-repeat;
  background-size: contain;
}

#floating-element-4 {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/deco.avif);
  background-repeat: no-repeat;
  background-size: contain;
}

#footer {
  position: relative;
  z-index: 1;
}
#footer a {
  color: var(--tertiary);
}

.footer img {
  max-height: inherit;
}
@media (max-width: 47.93em) {
  .footer img {
    width: 100%;
  }
}

.footer-rs a span {
  transition: 0.3s ease-out;
}
.footer-rs a:hover span, .footer-rs a:focus span {
  background-color: var(--tertiary-200);
}

.reflect-effect {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.reflect-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(49, 130, 206, 0.5);
}

.reflect-effect::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  top: -30px;
  left: -50px;
  transform: rotate(35deg);
  transition: all 0.5s ease;
}

.reflect-effect:hover::before {
  left: 120%;
}

/* ----------------------------- */
/* ==Print (quick print reset)   */
/* ----------------------------- */
@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    width: auto;
    margin: auto;
    font-family: serif;
    font-size: 12pt;
  }
  p,
  .p-like,
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  h4,
  .h4-like,
  h5,
  .h5-like,
  h6,
  .h6-like,
  blockquote,
  label,
  ul,
  ol {
    color: #000;
    margin: auto;
  }
  .print {
    display: block;
  }
  .no-print {
    display: none;
  }
  /* no orphans, no widows */
  p,
  .p-like,
  blockquote {
    orphans: 3;
    widows: 3;
  }
  /* no breaks inside these elements */
  blockquote,
  ul,
  ol {
    page-break-inside: avoid;
  }
  /* page break before main headers
  h1,
  .h1-like {
    page-break-before: always;
  }
  */
  /* no breaks after these elements */
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  caption {
    page-break-after: avoid;
  }
  a {
    color: #000;
  }
  /* displaying URLs
  a[href]::after {
    content: " (" attr(href) ")";
  }
  */
  a[href^="javascript:"]::after,
  a[href^="#"]::after {
    content: "";
  }
  .hdr-logo,
  .menu-mobile,
  dialog {
    display: none;
  }
  .swiper-wrapper {
    height: 100% !important;
    flex-direction: column;
    transform: none !important;
  }
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.col-auto{
  grid-column: auto;
}
.m-auto{
  margin: auto;
}
.block{
  display: block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.list-item{
  display: list-item;
}
.hidden{
  display: none;
}
.h-64{
  height: 16rem;
}
.h-screen{
  height: 100vh;
}
.w-3\/4{
  width: 75%;
}
.w-full{
  width: 100%;
}
.max-w-5xl{
  max-width: 64rem;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-grow{
  flex-grow: 1;
}
.border-collapse{
  border-collapse: collapse;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize{
  resize: both;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-center{
  align-items: center;
}
.gap-1{
  gap: 0.25rem;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.bg-emerald-700{
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.text-center{
  text-align: center;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.underline{
  text-decoration-line: underline;
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 768px){
  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
}
