/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

/* Auto Height */

.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 {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

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

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

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

/* CSS Mode */

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

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

/* Slide styles end */

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

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

:root {
  --color-primary: #1C2B39;
  --color-secondary: #FFFFFF;
  --color-tertiary: #C85DAE;
  --color-4: #F5B175;
  --color-5: #7842F2;
  --color-6: #511DD1;
  --color-7: linear-gradient(to right, #7842F2, #511DD1);
}

/* ======================================================================== */

/* BREAKPOINTS                                                              */

/* ======================================================================== */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2"), url("../fonts/Poppins-Regular.woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2"), url("../fonts/Poppins-Medium.woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2"), url("../fonts/Poppins-SemiBold.woff");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2"), url("../fonts/Poppins-Bold.woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2"), url("../fonts/Poppins-ExtraBold.woff");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2"), url("../fonts/Poppins-Light.woff");
  font-weight: 300;
  font-display: swap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: all;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: visible;
  border-radius: max(6.25rem, 6.944vw);
  padding: max(1.25rem, 1.39vw) max(2.5rem, 3vw);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: max(0.875rem, 1.25vw);
  line-height: max(1rem, 1.424vw);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.btn--label {
  position: relative;
  z-index: 1;
}

.btn--char {
  display: inline-block;
}

.btn--char-space {
  display: inline-block;
  width: 0.3em;
}

.btn--picto {
  display: none;
}

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

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

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

.btn--4 {
  background: var(--color-4);
}

.btn--5 {
  background: var(--color-5);
}

.btn--6 {
  background: var(--color-6);
}

.btn--secondary {
  color: var(--color-primary);
}

.btn--gradient {
  overflow: hidden;
  background: linear-gradient(to right, var(--color-5), var(--color-tertiary));
}

.btn--gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(/wp-content/uploads/2026/06/noise-1.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: 130px 130px;
  opacity: 0.1;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1px;
  height: 27px;
}

#amispam {
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.d-grid {
  display: grid;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-ext {
  margin-left: 6.25vw;
  margin-right: 6.25vw;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: max(21px, 1.389vw);
       column-gap: max(21px, 1.389vw);
  word-break: break-all;
}

.row * {
  direction: ltr;
  word-break: break-word;
}

.reverse {
  direction: rtl;
}

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

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

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

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

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

.align-items-start {
  align-self: start;
  align-items: start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

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

.offset-0 {
  grid-column-start: unset;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.389vw;
  grid-auto-rows: calc(50vh / 6);
}

.masonry > div {
  grid-row-end: span 6;
}

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

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

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

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

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

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

@media (min-width: 100%) {
  .container {
    width: calc(90% - 33px);
  }
  .reverse-xs {
    direction: rtl;
  }
  .justify-content-xs-start {
    justify-self: start;
    justify-items: start;
  }
  .justify-content-xs-center {
    justify-self: center;
    justify-items: center;
  }
  .justify-content-xs-end {
    justify-self: end;
    justify-items: end;
  }
  .justify-content-xs-between {
    justify-content: space-between;
  }
  .justify-content-xs-around {
    justify-content: space-around;
  }
  .align-items-xs-start {
    align-self: start;
    align-items: start;
  }
  .align-items-xs-center {
    align-self: center;
    align-items: center;
  }
  .align-items-xs-end {
    align-self: end;
    align-items: end;
  }
  .align-items-xs-stretch {
    align-self: stretch;
    align-items: stretch;
  }
  .col-xs-1 {
    grid-column-end: span 1;
  }
  .col-xs-2 {
    grid-column-end: span 2;
  }
  .col-xs-3 {
    grid-column-end: span 3;
  }
  .col-xs-4 {
    grid-column-end: span 4;
  }
  .col-xs-5 {
    grid-column-end: span 5;
  }
  .col-xs-6 {
    grid-column-end: span 6;
  }
  .col-xs-7 {
    grid-column-end: span 7;
  }
  .col-xs-8 {
    grid-column-end: span 8;
  }
  .col-xs-9 {
    grid-column-end: span 9;
  }
  .col-xs-10 {
    grid-column-end: span 10;
  }
  .col-xs-11 {
    grid-column-end: span 11;
  }
  .col-xs-12 {
    grid-column-end: span 12;
  }
  .order-xs-0 {
    order: 0;
  }
  .order-xs-1 {
    order: 1;
  }
  .order-xs-2 {
    order: 2;
  }
  .order-xs-3 {
    order: 3;
  }
  .order-xs-4 {
    order: 4;
  }
  .order-xs-5 {
    order: 5;
  }
  .order-xs-6 {
    order: 6;
  }
  .order-xs-7 {
    order: 7;
  }
  .order-xs-8 {
    order: 8;
  }
  .order-xs-9 {
    order: 9;
  }
  .order-xs-10 {
    order: 10;
  }
  .order-xs-11 {
    order: 11;
  }
  .order-xs-12 {
    order: 12;
  }
  .offset-xs-0 {
    grid-column-start: 1;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-1 {
    grid-column-start: 2;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-2 {
    grid-column-start: 3;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-3 {
    grid-column-start: 4;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-4 {
    grid-column-start: 5;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-5 {
    grid-column-start: 6;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-6 {
    grid-column-start: 7;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-7 {
    grid-column-start: 8;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-8 {
    grid-column-start: 9;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-9 {
    grid-column-start: 10;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-10 {
    grid-column-start: 11;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .offset-xs-11 {
    grid-column-start: 12;
  }
  .offset-xs-0 {
    grid-column-start: unset;
  }
  .masonry > div {
    grid-row-end: span 6;
  }
  .masonry .level-xs-1 {
    grid-row-end: span 1;
  }
  .masonry .level-xs-2 {
    grid-row-end: span 2;
  }
  .masonry .level-xs-3 {
    grid-row-end: span 3;
  }
  .masonry .level-xs-4 {
    grid-row-end: span 4;
  }
  .masonry .level-xs-5 {
    grid-row-end: span 5;
  }
  .masonry .level-xs-6 {
    grid-row-end: span 6;
  }
}

@media (min-width: 576px) {
  .container {
    width: 507px;
  }
  .reverse-sm {
    direction: rtl;
  }
  .justify-content-sm-start {
    justify-self: start;
    justify-items: start;
  }
  .justify-content-sm-center {
    justify-self: center;
    justify-items: center;
  }
  .justify-content-sm-end {
    justify-self: end;
    justify-items: end;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .align-items-sm-start {
    align-self: start;
    align-items: start;
  }
  .align-items-sm-center {
    align-self: center;
    align-items: center;
  }
  .align-items-sm-end {
    align-self: end;
    align-items: end;
  }
  .align-items-sm-stretch {
    align-self: stretch;
    align-items: stretch;
  }
  .col-sm-1 {
    grid-column-end: span 1;
  }
  .col-sm-2 {
    grid-column-end: span 2;
  }
  .col-sm-3 {
    grid-column-end: span 3;
  }
  .col-sm-4 {
    grid-column-end: span 4;
  }
  .col-sm-5 {
    grid-column-end: span 5;
  }
  .col-sm-6 {
    grid-column-end: span 6;
  }
  .col-sm-7 {
    grid-column-end: span 7;
  }
  .col-sm-8 {
    grid-column-end: span 8;
  }
  .col-sm-9 {
    grid-column-end: span 9;
  }
  .col-sm-10 {
    grid-column-end: span 10;
  }
  .col-sm-11 {
    grid-column-end: span 11;
  }
  .col-sm-12 {
    grid-column-end: span 12;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    grid-column-start: 1;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-1 {
    grid-column-start: 2;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-2 {
    grid-column-start: 3;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-3 {
    grid-column-start: 4;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-4 {
    grid-column-start: 5;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-5 {
    grid-column-start: 6;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-6 {
    grid-column-start: 7;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-7 {
    grid-column-start: 8;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-8 {
    grid-column-start: 9;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-9 {
    grid-column-start: 10;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-10 {
    grid-column-start: 11;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .offset-sm-11 {
    grid-column-start: 12;
  }
  .offset-sm-0 {
    grid-column-start: unset;
  }
  .masonry > div {
    grid-row-end: span 6;
  }
  .masonry .level-sm-1 {
    grid-row-end: span 1;
  }
  .masonry .level-sm-2 {
    grid-row-end: span 2;
  }
  .masonry .level-sm-3 {
    grid-row-end: span 3;
  }
  .masonry .level-sm-4 {
    grid-row-end: span 4;
  }
  .masonry .level-sm-5 {
    grid-row-end: span 5;
  }
  .masonry .level-sm-6 {
    grid-row-end: span 6;
  }
}

@media (min-width: 768px) {
  .container {
    width: 687px;
  }
  .reverse-md {
    direction: rtl;
  }
  .justify-content-md-start {
    justify-self: start;
    justify-items: start;
  }
  .justify-content-md-center {
    justify-self: center;
    justify-items: center;
  }
  .justify-content-md-end {
    justify-self: end;
    justify-items: end;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .align-items-md-start {
    align-self: start;
    align-items: start;
  }
  .align-items-md-center {
    align-self: center;
    align-items: center;
  }
  .align-items-md-end {
    align-self: end;
    align-items: end;
  }
  .align-items-md-stretch {
    align-self: stretch;
    align-items: stretch;
  }
  .col-md-1 {
    grid-column-end: span 1;
  }
  .col-md-2 {
    grid-column-end: span 2;
  }
  .col-md-3 {
    grid-column-end: span 3;
  }
  .col-md-4 {
    grid-column-end: span 4;
  }
  .col-md-5 {
    grid-column-end: span 5;
  }
  .col-md-6 {
    grid-column-end: span 6;
  }
  .col-md-7 {
    grid-column-end: span 7;
  }
  .col-md-8 {
    grid-column-end: span 8;
  }
  .col-md-9 {
    grid-column-end: span 9;
  }
  .col-md-10 {
    grid-column-end: span 10;
  }
  .col-md-11 {
    grid-column-end: span 11;
  }
  .col-md-12 {
    grid-column-end: span 12;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    grid-column-start: 1;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-1 {
    grid-column-start: 2;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-2 {
    grid-column-start: 3;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-3 {
    grid-column-start: 4;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-4 {
    grid-column-start: 5;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-5 {
    grid-column-start: 6;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-6 {
    grid-column-start: 7;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-7 {
    grid-column-start: 8;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-8 {
    grid-column-start: 9;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-9 {
    grid-column-start: 10;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-10 {
    grid-column-start: 11;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .offset-md-11 {
    grid-column-start: 12;
  }
  .offset-md-0 {
    grid-column-start: unset;
  }
  .masonry > div {
    grid-row-end: span 6;
  }
  .masonry .level-md-1 {
    grid-row-end: span 1;
  }
  .masonry .level-md-2 {
    grid-row-end: span 2;
  }
  .masonry .level-md-3 {
    grid-row-end: span 3;
  }
  .masonry .level-md-4 {
    grid-row-end: span 4;
  }
  .masonry .level-md-5 {
    grid-row-end: span 5;
  }
  .masonry .level-md-6 {
    grid-row-end: span 6;
  }
}

@media (min-width: 992px) {
  .container {
    width: 897px;
  }
  .reverse-lg {
    direction: rtl;
  }
  .justify-content-lg-start {
    justify-self: start;
    justify-items: start;
  }
  .justify-content-lg-center {
    justify-self: center;
    justify-items: center;
  }
  .justify-content-lg-end {
    justify-self: end;
    justify-items: end;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .align-items-lg-start {
    align-self: start;
    align-items: start;
  }
  .align-items-lg-center {
    align-self: center;
    align-items: center;
  }
  .align-items-lg-end {
    align-self: end;
    align-items: end;
  }
  .align-items-lg-stretch {
    align-self: stretch;
    align-items: stretch;
  }
  .col-lg-1 {
    grid-column-end: span 1;
  }
  .col-lg-2 {
    grid-column-end: span 2;
  }
  .col-lg-3 {
    grid-column-end: span 3;
  }
  .col-lg-4 {
    grid-column-end: span 4;
  }
  .col-lg-5 {
    grid-column-end: span 5;
  }
  .col-lg-6 {
    grid-column-end: span 6;
  }
  .col-lg-7 {
    grid-column-end: span 7;
  }
  .col-lg-8 {
    grid-column-end: span 8;
  }
  .col-lg-9 {
    grid-column-end: span 9;
  }
  .col-lg-10 {
    grid-column-end: span 10;
  }
  .col-lg-11 {
    grid-column-end: span 11;
  }
  .col-lg-12 {
    grid-column-end: span 12;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    grid-column-start: 1;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-1 {
    grid-column-start: 2;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-2 {
    grid-column-start: 3;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-3 {
    grid-column-start: 4;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-4 {
    grid-column-start: 5;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-5 {
    grid-column-start: 6;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-6 {
    grid-column-start: 7;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-7 {
    grid-column-start: 8;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-8 {
    grid-column-start: 9;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-9 {
    grid-column-start: 10;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-10 {
    grid-column-start: 11;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .offset-lg-11 {
    grid-column-start: 12;
  }
  .offset-lg-0 {
    grid-column-start: unset;
  }
  .masonry > div {
    grid-row-end: span 6;
  }
  .masonry .level-lg-1 {
    grid-row-end: span 1;
  }
  .masonry .level-lg-2 {
    grid-row-end: span 2;
  }
  .masonry .level-lg-3 {
    grid-row-end: span 3;
  }
  .masonry .level-lg-4 {
    grid-row-end: span 4;
  }
  .masonry .level-lg-5 {
    grid-row-end: span 5;
  }
  .masonry .level-lg-6 {
    grid-row-end: span 6;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1097px;
  }
  .reverse-xl {
    direction: rtl;
  }
  .justify-content-xl-start {
    justify-self: start;
    justify-items: start;
  }
  .justify-content-xl-center {
    justify-self: center;
    justify-items: center;
  }
  .justify-content-xl-end {
    justify-self: end;
    justify-items: end;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
  .align-items-xl-start {
    align-self: start;
    align-items: start;
  }
  .align-items-xl-center {
    align-self: center;
    align-items: center;
  }
  .align-items-xl-end {
    align-self: end;
    align-items: end;
  }
  .align-items-xl-stretch {
    align-self: stretch;
    align-items: stretch;
  }
  .col-xl-1 {
    grid-column-end: span 1;
  }
  .col-xl-2 {
    grid-column-end: span 2;
  }
  .col-xl-3 {
    grid-column-end: span 3;
  }
  .col-xl-4 {
    grid-column-end: span 4;
  }
  .col-xl-5 {
    grid-column-end: span 5;
  }
  .col-xl-6 {
    grid-column-end: span 6;
  }
  .col-xl-7 {
    grid-column-end: span 7;
  }
  .col-xl-8 {
    grid-column-end: span 8;
  }
  .col-xl-9 {
    grid-column-end: span 9;
  }
  .col-xl-10 {
    grid-column-end: span 10;
  }
  .col-xl-11 {
    grid-column-end: span 11;
  }
  .col-xl-12 {
    grid-column-end: span 12;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    grid-column-start: 1;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-1 {
    grid-column-start: 2;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-2 {
    grid-column-start: 3;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-3 {
    grid-column-start: 4;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-4 {
    grid-column-start: 5;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-5 {
    grid-column-start: 6;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-6 {
    grid-column-start: 7;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-7 {
    grid-column-start: 8;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-8 {
    grid-column-start: 9;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-9 {
    grid-column-start: 10;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-10 {
    grid-column-start: 11;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .offset-xl-11 {
    grid-column-start: 12;
  }
  .offset-xl-0 {
    grid-column-start: unset;
  }
  .masonry > div {
    grid-row-end: span 6;
  }
  .masonry .level-xl-1 {
    grid-row-end: span 1;
  }
  .masonry .level-xl-2 {
    grid-row-end: span 2;
  }
  .masonry .level-xl-3 {
    grid-row-end: span 3;
  }
  .masonry .level-xl-4 {
    grid-row-end: span 4;
  }
  .masonry .level-xl-5 {
    grid-row-end: span 5;
  }
  .masonry .level-xl-6 {
    grid-row-end: span 6;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1287px;
  }
  .reverse-xxl {
    direction: rtl;
  }
  .justify-content-xxl-start {
    justify-self: start;
    justify-items: start;
  }
  .justify-content-xxl-center {
    justify-self: center;
    justify-items: center;
  }
  .justify-content-xxl-end {
    justify-self: end;
    justify-items: end;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
  .align-items-xxl-start {
    align-self: start;
    align-items: start;
  }
  .align-items-xxl-center {
    align-self: center;
    align-items: center;
  }
  .align-items-xxl-end {
    align-self: end;
    align-items: end;
  }
  .align-items-xxl-stretch {
    align-self: stretch;
    align-items: stretch;
  }
  .col-xxl-1 {
    grid-column-end: span 1;
  }
  .col-xxl-2 {
    grid-column-end: span 2;
  }
  .col-xxl-3 {
    grid-column-end: span 3;
  }
  .col-xxl-4 {
    grid-column-end: span 4;
  }
  .col-xxl-5 {
    grid-column-end: span 5;
  }
  .col-xxl-6 {
    grid-column-end: span 6;
  }
  .col-xxl-7 {
    grid-column-end: span 7;
  }
  .col-xxl-8 {
    grid-column-end: span 8;
  }
  .col-xxl-9 {
    grid-column-end: span 9;
  }
  .col-xxl-10 {
    grid-column-end: span 10;
  }
  .col-xxl-11 {
    grid-column-end: span 11;
  }
  .col-xxl-12 {
    grid-column-end: span 12;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    grid-column-start: 1;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-1 {
    grid-column-start: 2;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-2 {
    grid-column-start: 3;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-3 {
    grid-column-start: 4;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-4 {
    grid-column-start: 5;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-5 {
    grid-column-start: 6;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-6 {
    grid-column-start: 7;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-7 {
    grid-column-start: 8;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-8 {
    grid-column-start: 9;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-9 {
    grid-column-start: 10;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-10 {
    grid-column-start: 11;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .offset-xxl-11 {
    grid-column-start: 12;
  }
  .offset-xxl-0 {
    grid-column-start: unset;
  }
  .masonry > div {
    grid-row-end: span 6;
  }
  .masonry .level-xxl-1 {
    grid-row-end: span 1;
  }
  .masonry .level-xxl-2 {
    grid-row-end: span 2;
  }
  .masonry .level-xxl-3 {
    grid-row-end: span 3;
  }
  .masonry .level-xxl-4 {
    grid-row-end: span 4;
  }
  .masonry .level-xxl-5 {
    grid-row-end: span 5;
  }
  .masonry .level-xxl-6 {
    grid-row-end: span 6;
  }
}

@media (width > 2000px) {
  .container {
    width: 100rem;
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(2.25rem, 4.9vw);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-thickness: max(0.6rem, 0.65vw);
  text-underline-offset: max(0.525rem, 0.8vw);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  white-space: pre-wrap;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: max(1.875rem, 4.514vw);
  line-height: max(3rem, 5.556vw);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-thickness: max(0.6rem, 0.65vw);
  text-underline-offset: max(0.525rem, 0.8vw);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  white-space: pre-wrap;
}

h2.small {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: max(0.9375rem, 1.042vw);
  line-height: max(1.28125rem, 1.424vw);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-flex > * {
  flex: 1 0 0%;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-flex > * {
    flex: 1 0 0%;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-flex > * {
    flex: 1 0 0%;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .bg-md-gray {
    background-color: rgb(246, 247, 247);
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-flex > * {
    flex: 1 0 0%;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-flex > * {
    flex: 1 0 0%;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-flex > * {
    flex: 1 0 0%;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive::before {
  display: block;
  content: "";
}

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

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.centerX {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.centerY {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.centerXY {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

* {
  outline: none !important;
}

*::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

*::selection {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  display: flex;
  flex: 1;
  flex-direction: column;
}

img,
svg {
  width: 100%;
  height: 100%;
}

.reveal {
  visibility: hidden;
}

.no-gutter {
  -moz-column-gap: unset;
       column-gap: unset;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.space {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.page-id-14 .footer {
  display: none;
}

.page-id-12 .footer--inner {
  border-radius: 0;
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal=up] {
  transform: translateY(40px);
}

[data-reveal=down] {
  transform: translateY(-40px);
}

[data-reveal=left] {
  transform: translateX(-40px);
}

[data-reveal=right] {
  transform: translateX(40px);
}

[data-reveal=zoom] {
  transform: scale(0.92);
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

[data-word-reveal] .wr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

[data-word-reveal].is-visible .wr-word {
  opacity: 1;
  transform: translateY(0);
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  overflow-y: auto !important;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: left;
  background-color: #fff;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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

@media screen and (min-width: 768px) {
  body.admin-bar .header {
    top: 32px;
  }
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

dl {
  padding: 0;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
}

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 500;
  font-variation-settings: "wght" 720;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
  background: white;
  z-index: 9999;
  position: relative;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
}

.list-inline > li:not(:last-child) {
  margin-right: 0.5rem;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #333;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

a {
  text-decoration: none;
  color: currentColor;
}

.text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: max(0.9375rem, 1.042vw);
  line-height: max(1.34375rem, 1.493vw);
  letter-spacing: 0.01em;
  color: var(--color-primary);
}

.colored--none {
  background-color: transparent;
}

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

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

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

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

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

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

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

.colored--img {
  color: var(--color-secondary);
  overflow: hidden;
  position: relative;
}

.colored--img > img {
  position: absolute;
  width: auto;
  height: 100%;
  z-index: -1;
}

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

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

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

.color--4 {
  color: var(--color-4);
}

.color--none {
  color: transparent;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  outline: none;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: currentColor;
}

.hamburger-box {
  width: max(28px, 1.94vw);
  height: max(21px, 1.4vw);
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: min(-1.5px, -0.1vw);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: max(28px, 2.37vw);
  height: max(2px, 0.24vw);
  background-color: currentColor;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: min(-9px, -0.6vw);
}

.hamburger-inner::after {
  bottom: min(-9px, -0.6vw);
}

/*
 * Slider
 */

.hamburger--slider .hamburger-inner {
  top: max(2px, 0.1vw);
}

.hamburger--slider .hamburger-inner::before {
  top: max(10px, 0.6vw);
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: max(20px, 1.3vw);
  width: 60%;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  top: 20px;
  width: 100%;
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.buttonlist--btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact {
  position: relative;
}

.contact--title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-6);
}

.contact--text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: max(0.813rem, 0.903vw);
  letter-spacing: 0.05em;
}

.contact--field {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}

.contact--field-label {
  position: absolute;
  top: max(1.25rem, 1.5vw);
  left: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: max(0.813rem, 0.903vw);
  line-height: 1.605;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--color-primary);
  pointer-events: none;
  transition: all 0.2s ease;
}

.contact--field-input, .contact--field-textarea {
  width: 100%;
  border: none;
  border-bottom: max(0.094rem, 0.104vw) solid var(--color-primary);
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: max(0.875rem, 1.1vw);
  padding: max(0.9rem, 0.6vw) 0;
  outline: none;
  color: inherit;
}

.contact--field-input::-moz-placeholder, .contact--field-textarea::-moz-placeholder {
  color: transparent;
}

.contact--field-input::placeholder, .contact--field-textarea::placeholder {
  color: transparent;
}

.contact--field-input:focus, .contact--field-textarea:focus {
  border-bottom-color: currentColor;
}

.contact--field-textarea {
  resize: none;
  min-height: max(7rem, 10vw);
}

.contact--field-file {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: max(0.75rem, 1vw);
  height: 100%;
  padding-bottom: max(0.4rem, 0.6vw);
  margin-bottom: 1.75rem;
}

.contact--file-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--color-primary);
  flex-shrink: 0;
  margin: 0;
}

.contact--file-label svg {
  width: max(1.2rem, 1.4vw);
  height: auto;
}

.contact input[type=file] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: max(0.875rem, 1.1vw);
  color: inherit;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.contact input[type=file]::file-selector-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: max(0.875rem, 1.1vw);
  color: inherit;
  cursor: pointer;
  padding: 0 max(0.5rem, 0.6vw) 0 0;
}

.contact--checkbox-container {
  display: flex;
  align-items: center;
  gap: max(0.75rem, 1vw);
  cursor: pointer;
}

.contact--input-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact--input-checkbox:checked + .contact--checkbox {
  background-color: var(--color-primary);
}

.contact--input-checkbox:checked + .contact--checkbox::after {
  opacity: 1;
}

.contact--checkbox {
  position: relative;
  flex-shrink: 0;
  width: max(18px, 1.3vw);
  height: max(18px, 1.3vw);
  border: max(0.094rem, 0.104vw) solid var(--color-primary);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact--checkbox::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  width: max(5px, 0.3vw);
  height: max(10px, 0.7vw);
  border: solid var(--color-secondary);
  border-width: 0 max(0.094rem, 0.104vw) max(0.094rem, 0.104vw) 0;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.contact--checkbox-title {
  font-family: "Poppins", sans-serif;
  font-variation-settings: 400;
  font-size: max(0.563rem, 0.625vw);
  letter-spacing: 0.02em;
  line-height: 1.5;
  cursor: pointer;
}

.contact--rgpd-link {
  color: inherit;
}

.contact--submit-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact--submit {
  display: none;
}

.contact--submit.is-active {
  display: flex;
}

.contact--field:has(.contact--field-input:not(:-moz-placeholder)) .contact--field-label, .contact--field:has(.contact--field-textarea:not(:-moz-placeholder)) .contact--field-label {
  top: max(-0.625rem, -0.694vw);
  font-size: max(0.65rem, 0.75vw);
}

.contact--field:has(.contact--field-input:focus) .contact--field-label,
.contact--field:has(.contact--field-input:not(:placeholder-shown)) .contact--field-label,
.contact--field:has(.contact--field-textarea:focus) .contact--field-label,
.contact--field:has(.contact--field-textarea:not(:placeholder-shown)) .contact--field-label {
  top: max(-0.625rem, -0.694vw);
  font-size: max(0.65rem, 0.75vw);
}

.double-image {
  position: relative;
}

.double-image .btn--secondary {
  color: var(--color-5);
}

.double-image--content {
  margin-bottom: 100px;
}

.double-image--bg {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 max(2.5rem, 2.778vw) 0;
}

.double-image--bg-image {
  top: auto;
  height: 45%;
  background-size: cover;
  background-position: center;
  border-radius: max(2.5rem, 2.778vw) 0 max(2.5rem, 2.778vw) 0;
}

.double-image--on-image .double-image--title {
  color: var(--color-5);
  text-decoration-color: var(--color-5);
  margin-left: max(-5.625rem, -6.25vw);
}

.double-image--on-image .double-image--left-text {
  color: var(--color-primary);
}

.double-image--on-image .double-image--right-text {
  color: var(--color-secondary);
  width: 65%;
  font-size: small;
}

.double-image--on-image .btn {
  background: var(--color-secondary);
  color: var(--color-5);
}

.double-image--right {
  padding-top: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.double-image--right-text {
  padding-top: max(1.875rem, 2.083vw);
}

.double-image--left {
  margin-bottom: 100px;
}

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

.double-image--title {
  width: -moz-max-content;
  width: max-content;
  color: var(--color-secondary);
  text-decoration-color: var(--color-5);
  margin-bottom: max(3.125rem, 3.472vw);
}

.double-image--left-text, .double-image--right-text {
  color: var(--color-secondary);
}

.double-image--left-img {
  margin-top: max(3.125rem, 3.472vw);
}

.double-image--left-img, .double-image--right-img {
  width: 100%;
  height: max(33.3125rem, 37.014vw);
  border-top-left-radius: max(2.5rem, 2.778vw);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
}

.double-image--left-img img, .double-image--right-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.double-image--actions {
  padding-top: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}

.double-image--right-img {
  position: relative;
}

.double-image--right-img::before {
  content: "";
  position: absolute;
  bottom: calc(max(0.5rem, 0.556vw) * -1);
  left: 0;
  width: 65%;
  height: max(0.5rem, 0.556vw);
  background: var(--color-secondary);
  z-index: 2;
}

.double-image {
  padding-bottom: max(3rem, 12vw);
}

.double-image--on-image .double-image--bg-image {
  height: 49%;
}

.double-image--on-image .double-image--title {
  margin-left: 0;
}

.double-image--on-image .double-image--title span {
  margin-left: 0 !important;
}

@media (min-width: 992px) {
  .double-image--inverted:not(.double-image--on-image) {
    padding-bottom: max(6.25rem, 8.681vw);
  }
  .double-image--inverted .double-image--right-img::before {
    content: none;
  }
  .double-image--inverted .double-image--left-img {
    position: relative;
  }
  .double-image--inverted .double-image--left-img::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: calc(max(0.5rem, 0.556vw) * -1);
    width: max(0.5rem, 0.556vw);
    height: 65%;
    background: var(--color-secondary);
    z-index: 2;
  }
  .double-image--inverted .double-image--title {
    width: -moz-max-content;
    width: max-content;
    text-align: end;
  }
  .double-image--inverted .double-image--title span:first-child {
    margin-right: max(6.25rem, 7vw);
  }
  .double-image--inverted:not(.double-image--on-image) .double-image--title {
    transform: translateX(max(5rem, 9.5vw));
  }
  .double-image--inverted .double-image--left-text {
    text-align: right;
    padding-left: 70px;
  }
  .double-image--inverted .double-image--left {
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-bottom: 0em;
  }
  .double-image--inverted .double-image--right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .double-image--inverted .double-image--right::before {
    content: "";
    position: absolute;
    top: calc(max(56.875rem, 63.194vw) * 0.81);
    left: calc(max(0.5rem, 0.556vw) * -1);
    width: max(0.5rem, 0.556vw);
    height: 22.277em;
    background: var(--color-secondary);
    z-index: 2;
  }
}

.faq--top .ws-100 {
  display: none;
}

.faq--col-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.faq--col-img {
  position: relative;
}

.faq--liseret {
  position: absolute;
  top: 100%;
  left: -6.25vw;
  width: 30%;
  height: max(0.5rem, 0.694vw);
  background-color: var(--color-6);
}

.faq--media {
  border-radius: 0;
  margin-left: -6.25vw;
  margin-right: -6.25vw;
  overflow: hidden;
  height: 80vw;
}

.faq--media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq--col-content {
  margin: 0 max(1.4rem, 4.167vw);
}

.faq--content {
  display: flex;
  flex-direction: column;
  gap: max(1.5rem, 2.083vw);
}

.faq--title {
  text-decoration-color: var(--color-5);
}

.faq--text {
  font-size: max(0.9375rem, 1.042vw);
  font-weight: 600;
  line-height: max(1.34375rem, 1.493vw);
  letter-spacing: 0.01em;
  color: var(--color-secondary);
}

.faq--subtitle {
  font-size: max(1.875rem, 2.083vw);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.195em;
  text-transform: uppercase;
}

.faq--questions {
  display: flex;
  flex-direction: column;
}

.faq--trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: max(1rem, 1.389vw) 0 max(0.5rem, 0.556vw);
  background: none;
  border: none;
  border-bottom: max(0.1875rem, 0.208vw) solid currentColor;
  cursor: pointer;
  text-align: left;
  color: inherit;
  gap: max(1rem, 1.389vw);
}

.faq--trigger-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.faq--question {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.faq--subquestion {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-6);
}

.faq--icon {
  font-size: 2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq--response {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding-right: calc(max(1.25rem, 1.528vw) + max(1rem, 1.389vw));
}

.faq--response-inner {
  padding-top: max(1.4375rem, 1.597vw);
  padding-bottom: max(1.25rem, 1.736vw);
  font-size: max(0.8125rem, 0.903vw);
  font-weight: 400;
  line-height: max(1.34375rem, 1.493vw);
  letter-spacing: 0.01em;
  color: var(--color-6);
}

.faq--btns {
  display: flex;
  flex-wrap: wrap;
  gap: max(0.75rem, 1.042vw);
  justify-content: center;
}

.faq--item--open .faq--response {
  max-height: 600px;
}

.faq--item--open .faq--icon {
  transform: rotate(45deg);
}

.faq--body.faq--overlap {
  padding-top: 0;
  transform: none;
}

.faq--body.faq--overlap .faq--col-content {
  padding-top: 0;
}

@media (min-width: 992px) {
  .faq--liseret {
    left: 0;
  }
  .faq--btns {
    justify-content: center;
  }
  .faq--media {
    margin-left: 0;
    margin-right: 0;
    border-top-left-radius: max(2.5rem, 2.778vw);
    border-bottom-right-radius: max(2.5rem, 2.778vw);
    height: max(56.25rem, 62.5vw);
  }
  .faq--question {
    font-size: max(1.375rem, 1.528vw);
  }
  .faq--trigger-inner {
    flex-direction: row;
    align-items: baseline;
    gap: max(0.5rem, 0.694vw);
  }
  .faq--icon {
    font-size: max(2.75rem, 3.472vw);
  }
  .faq--top .ws-100 {
    display: block;
  }
  .faq--body.faq--overlap {
    transform: translateY(-18%);
  }
  .faq--body.faq--overlap .faq--col-content {
    padding-top: max(10.125rem, 11.25vw);
  }
  .faq--body.faq--overlap .faq--subtitle {
    margin-top: max(5.5rem, 6.111vw);
  }
}

.footer--inner {
  position: relative;
  overflow: hidden;
  border-top-left-radius: max(1.5rem, 2vw);
  color: var(--color-secondary);
}

.footer--bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer--content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: max(2rem, 4vw);
  min-height: max(12rem, 16vw);
}

.footer--logo {
  display: block;
  z-index: 1;
  width: max(11rem, 17vw);
  color: var(--color-secondary);
  position: relative;
  margin: 0 auto;
}

.footer--contact-col {
  position: relative;
  width: 90%;
  text-align: center;
}

.footer--contact-col::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.5px;
  height: max(7.56rem, 8.4vw);
  background: rgb(255, 255, 255);
  display: none;
}

.footer--contact {
  position: relative;
  z-index: 1;
}

.footer--contact-link {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  letter-spacing: 0.05em;
}

.footer--contact-link::before {
  content: "";
  position: absolute;
  inset: max(-0.4rem, -0.5vw) max(-0.6rem, -0.7vw);
  z-index: -1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer--contact-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer--socials {
  display: flex;
  gap: max(0.75rem, 1vw);
  margin-top: max(0.75rem, 1vw);
  justify-content: center;
}

.footer--social {
  position: relative;
  display: block;
  width: max(1.25rem, 1.4vw);
  height: max(1.25rem, 1.4vw);
  color: var(--color-secondary);
}

.footer--social::before {
  content: "";
  position: absolute;
  inset: max(-0.6rem, -0.7vw);
  z-index: -1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer--social:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer--social svg, .footer--social img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer--menu-list {
  z-index: 1;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer--menu-list li {
  position: relative;
}

.footer--menu-list li a {
  position: relative;
  display: inline-block;
  padding: max(0.5rem, 0.6vw) max(1.25rem, 1.4vw);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(1.25rem, 1.389vw);
  line-height: max(2.375rem, 2.639vw);
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer--menu-list li a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer--menu-list li a:hover {
  transform: translateX(15%);
}

.footer--menu-list li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer--mentions {
  position: relative;
}

.footer--mentions ul {
  padding: 0;
  list-style-type: none;
  display: inline-flex;
}

.footer--mentions ul li {
  margin-right: max(4px, 0.3vw);
}

.footer--mentions ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: max(0.688rem, 0.764vw);
  letter-spacing: 0.05em;
}

.footer .justify-items-center {
  justify-items: center;
}

@media (min-width: 992px) {
  .footer--logo {
    margin: unset;
    padding: 0;
  }
  .footer--socials {
    justify-content: start;
  }
  .footer--contact-col {
    text-align: left;
  }
  .footer--contact-col::after {
    display: block;
  }
}

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

.header--menu-hamburger .hamburger {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: max(20px, 1.89vw);
}

.header .hamburger-inner,
.header .hamburger-inner::before,
.header .hamburger-inner::after {
  background-color: currentColor;
  transition: background-color 0.4s ease, transform 0.15s ease;
}

.header--menu-hamburger {
  pointer-events: auto;
}

.header--menu-hamburger .hamburger-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(0.64rem, 0.83vw);
  line-height: 1.167;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: currentColor;
  transition: opacity 0.2s ease, color 0.3s ease;
}

.header--menu-hamburger:hover {
  color: var(--color-primary);
}

.header .hamburger.is-active .hamburger-text {
  opacity: 0;
  pointer-events: none;
}

.header .hamburger-box::after {
  content: "";
  position: absolute;
  top: calc(50% + max(2px, 0.1vw) + 7px + max(2px, 0.24vw) / 2 - max(21px, 1.4vw) / 2);
  left: calc(50% + (max(28px, 2.37vw) - max(28px, 1.94vw)) / 2);
  width: max(3.5rem, 4vw);
  height: max(3.5rem, 4vw);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.header .hamburger.is-active .hamburger-box::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.header--nav-list {
  padding: 0;
  gap: max(1.56rem, 1.74vw);
  margin: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.header--nav-list li {
  position: relative;
  list-style-type: none;
}

.header--nav-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(max(1.56rem, 1.74vw) / -2);
  width: 1px;
  height: max(0.875rem, 0.972vw);
  background: currentColor;
  transform: translate(50%, -50%);
}

.header--nav-list li a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(0.75rem, 0.833vw);
  line-height: max(0.875rem, 0.972vw);
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.header--nav.is-white .header--nav-list {
  opacity: 0;
  pointer-events: none;
}

.header--nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(1.25rem, 1.74vw) max(1.25rem, 2.74vw);
  color: var(--color-secondary);
  z-index: 111;
}

.header--nav.is-on-secondary {
  color: var(--color-primary);
}

.header--toggle {
  position: absolute;
  top: max(3.5rem, 4vw);
  left: max(1.25rem, 2.74vw);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.4s ease;
}

.header--toggle svg {
  width: max(2.1875rem, 2.43vw);
  height: auto;
}

.header--logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: max(7rem, 8.68vw);
  transition: color 0.4s ease;
}

.header--logo svg {
  transition: filter 0.4s ease;
}

.header--logo svg, .header--logo img {
  width: 100%;
  height: auto;
}

.header--menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  color: var(--color-secondary);
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  display: grid;
  pointer-events: none;
  align-items: center;
}

.header--menu.is-full {
  pointer-events: all;
  transform: translateY(0);
}

.header--menu-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.header--menu-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header.is-light .header--toggle {
  color: var(--color-secondary);
}

.header.is-light .header--logo {
  color: var(--color-secondary);
}

.header.is-light .header--logo svg {
  filter: brightness(0) invert(1);
}

.header.is-menu-open .header--toggle {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scale(0.6);
  pointer-events: none;
}

.header--menu.is-full .header--close svg {
  transform: scale(1);
}

.header--menu-logo {
  position: absolute;
  top: max(3.5rem, 4vw);
  left: 50%;
  transform: translate(-50%, -50%);
  width: max(8rem, 9vw);
  color: var(--color-secondary);
}

.header--menu-logo svg {
  filter: brightness(0) invert(1);
}

.header--menu-logo svg, .header--menu-logo img {
  width: 100%;
  height: auto;
}

.header--menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 calc(max(1.25rem, 1.4vw) * -1);
}

.header--menu-list li {
  margin-bottom: max(0.5rem, 0.7vw);
}

.header--menu-list a {
  position: relative;
  display: inline-block;
  padding: max(0.5rem, 0.6vw) max(1.25rem, 1.4vw);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(1.25rem, 1.25vw);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header--menu-list a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header--menu-list a:hover {
  transform: translateX(15%);
}

.header--menu-list a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header--menu-tel a, .header--menu-mail a {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: max(0.9375rem, 1.042vw);
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header--menu-tel a::before, .header--menu-mail a::before {
  content: "";
  position: absolute;
  inset: max(-0.4rem, -0.5vw) max(-0.6rem, -0.7vw);
  z-index: -1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header--menu-tel a:hover::before, .header--menu-mail a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header--menu-socials {
  display: flex;
  flex-direction: column;
  gap: max(1rem, 1.25vw);
}

.header--menu-social {
  position: relative;
  display: block;
  width: max(1.25rem, 1.4vw);
  height: max(1.25rem, 1.4vw);
  color: var(--color-secondary);
  transition: opacity 0.3s ease;
}

.header--menu-social::before {
  content: "";
  position: absolute;
  inset: max(-0.6rem, -0.7vw);
  z-index: -1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header--menu-social:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header--menu-social svg, .header--menu-social img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 992px) {
  .header--menu-socials {
    align-content: flex-end;
    flex-wrap: wrap;
  }
}

.hero {
  position: relative;
  height: 80vh;
  overflow: visible;
  z-index: 1;
}

.hero--media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero--bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero--bg .hero--bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero--inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: max(5rem, 7vw);
}

.hero--title {
  color: var(--color-secondary);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero--actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 3;
}

.hero--btns {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero {
    height: calc(100vh - max(4rem, 5.556vw));
  }
  .hero--inner {
    padding-bottom: max(4rem, 5.5vw);
  }
  .hero--title {
    white-space: nowrap;
  }
}

.image--inner {
  overflow: hidden;
}

.image--media {
  width: 100%;
  height: max(39.125rem, 43.472vw);
}

.image--media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  .image--inner {
    border-top-left-radius: max(2.5rem, 2.778vw);
    border-bottom-right-radius: max(2.5rem, 2.778vw);
  }
}

.image-texte--col-img {
  position: relative;
}

.image-texte--liseret {
  position: absolute;
  top: 0;
  left: 100%;
  height: 82%;
  width: max(0.3rem, 0.556vw);
  background-color: var(--color-5);
}

.image-texte--media {
  overflow: hidden;
  border-top-left-radius: max(2.5rem, 2.778vw);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
}

.image-texte--media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-texte--col-content {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.image-texte--content {
  display: flex;
  flex-direction: column;
  gap: max(3.625rem, 4.028vw);
  padding-left: max(0.9375rem, 1.042vw);
}

.image-texte--text {
  font-size: max(0.9375rem, 1.042vw);
  font-weight: 600;
  line-height: max(1.34375rem, 1.493vw);
  letter-spacing: 0.01em;
  width: max(18.5625rem, 20.625vw);
  max-width: 100%;
}

.image-texte--btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.image-texte--col-title--right {
  text-align: right;
}

.image-texte--title {
  font-size: max(2.25rem, 4.375vw);
  font-weight: 800;
  line-height: max(3rem, 5.7vw);
  letter-spacing: 0.04em;
  color: var(--color-5);
}

@media (min-width: 992px) {
  .image-texte--btns {
    justify-content: flex-start;
  }
  .image-texte {
    padding: 0;
  }
  .image-texte--title {
    font-size: max(3.9375rem, 4.375vw);
    line-height: max(5rem, 5.556vw);
  }
  .image-texte--media {
    margin-left: 0;
    margin-right: 0;
    height: max(31.75rem, 35.278vw);
  }
}

.masonry-grid {
  position: relative;
}

.masonry-grid--filter-intro {
  font-family: "Poppins", sans-serif;
  font-variation-settings: 400;
  color: var(--color-primary);
  margin-bottom: max(12px, 1vw);
  text-align: center;
}

.masonry-grid--filter {
  overflow: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.masonry-grid--filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: max(2.4rem, 3.125vw);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.masonry-grid--filter li {
  cursor: pointer;
}

.masonry-grid--filter-label {
  font-family: "Poppins", sans-serif;
  font-variation-settings: 700;
  font-size: max(0.693rem, 0.903vw);
  line-height: 3.69;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2rem;
}

li.is-active .masonry-grid--filter-label {
  position: relative;
  width: max(8.76rem, 10.708vw);
  height: max(2.827rem, 3.681vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/wp-content/uploads/2026/06/twist-degrade-btn.webp");
  background-size: cover;
  background-position: center;
  color: var(--color-secondary);
}

.masonry-grid--filter-label:hover {
  position: relative;
  width: max(8.76rem, 10.708vw);
  height: max(2.827rem, 3.681vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/wp-content/uploads/2026/06/twist-degrade-btn.webp");
  background-size: cover;
  background-position: center;
  color: var(--color-secondary);
}

.masonry-grid--masonry {
  position: relative;
}

.masonry-grid--item {
  display: block;
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  padding: max(0.427rem, 0.6vw);
}

@media (min-width: 992px) {
  .masonry-grid--item {
    width: 33.333%;
  }
}

.masonry-grid--card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.masonry-grid--card:hover .masonry-grid--card-img img {
  transform: scale(1.04);
}

.masonry-grid--card-img {
  position: relative;
  width: 100%;
  height: max(21.387rem, 27.847vw);
  overflow: hidden;
  border-radius: max(2.5rem, 2.778vw) 0;
}

.masonry-grid--card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(10, 17, 29, 0.65) 79%);
}

.masonry-grid--card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-grid--card-title {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  color: var(--color-secondary) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(1.6rem, 2.083vw);
  line-height: max(2.133rem, 2.778vw);
  letter-spacing: 0.03em;
  text-align: center;
  z-index: 1;
  text-decoration: unset;
}

.masonry-grid--card-cat {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: max(1.125rem, 1.25vw);
  line-height: max(1.563rem, 1.736vw);
  letter-spacing: 0em;
  text-align: left;
  color: var(--color-primary);
  text-transform: uppercase;
}

.masonry-grid--card-cats {
  margin-top: max(1rem, 1.083vw);
}

.masonry-grid--cards-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: max(1.125rem, 1.25vw);
  line-height: max(1.563rem, 1.736vw);
  letter-spacing: 0em;
  text-align: left;
}

@media (min-width: 992px) {
  .masonry-grid--filter-intro {
    text-align: left;
  }
  .masonry-grid--filter ul {
    justify-content: flex-start;
  }
}

.slider-double {
  position: relative;
}

.slider-double.colored--6 .slider-double--title {
  text-decoration-color: var(--color-5);
}

.slider-double.colored--secondary .slider-double--title {
  color: var(--color-5);
}

.slider-double--small-slider, .slider-double--big-slider, .slider-double--text-slider {
  overflow: hidden;
}

.slider-double--small-slider .swiper-slide, .slider-double--big-slider .swiper-slide, .slider-double--text-slider .swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.slider-double--small-slider .swiper-slide, .slider-double--big-slider .swiper-slide {
  height: 100%;
}

.slider-double--small-slider, .slider-double--big-slider {
  border-top-left-radius: max(2.5rem, 2.778vw);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
}

.slider-double--big-slider {
  position: relative;
  z-index: 1;
}

.slider-double--small-slider {
  position: absolute;
  z-index: 2;
}

.slider-double--small-img, .slider-double--big-img {
  width: 100%;
  height: 100%;
}

.slider-double--small-img img, .slider-double--big-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-double--text-slider {
  width: 100%;
}

.slider-double--text-slider .swiper-slide {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider-double--text-slider .swiper-slide-active {
  opacity: 1;
}

.slider-double--text-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: max(1.125rem, 1.25vw);
  line-height: max(1.34375rem, 1.493vw);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: max(0.625rem, 0.694vw);
}

.slider-double--text {
  color: inherit;
}

.slider-double--nav {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
}

.slider-double--nav .swiper-button-prev,
.slider-double--nav .swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(3.125rem, 3.47vw);
  height: max(3.125rem, 3.47vw);
  padding: max(0.75rem, 1.04vw);
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-primary);
  transition: color 0.3s ease;
  z-index: 3;
}

.slider-double--nav .swiper-button-prev::after,
.slider-double--nav .swiper-button-next::after {
  display: none;
}

.slider-double--nav .swiper-button-prev svg,
.slider-double--nav .swiper-button-next svg {
  overflow: visible;
  flex-shrink: 0;
  width: max(1.125rem, 1.25vw);
  height: max(1.9375rem, 2.153vw);
}

.slider-double--nav .swiper-button-prev:hover,
.slider-double--nav .swiper-button-next:hover {
  color: var(--color-secondary);
}

.slider-double.colored--secondary .slider-double--nav .swiper-button-prev:hover,
.slider-double.colored--secondary .slider-double--nav .swiper-button-next:hover {
  color: var(--color-primary);
  opacity: 0.45;
}

.slider-double.colored--6 .slider-double--nav .swiper-button-prev,
.slider-double.colored--6 .slider-double--nav .swiper-button-next {
  color: var(--color-secondary);
}

.slider-double.colored--6 .slider-double--nav .swiper-button-prev:hover,
.slider-double.colored--6 .slider-double--nav .swiper-button-next:hover {
  color: var(--color-primary);
}

.slider-double--medias {
  position: relative;
}

.slider-double--big-slider {
  width: 85%;
  aspect-ratio: 1/1;
}

.slider-double--small-slider {
  top: 44vw;
  right: 0;
  width: 58%;
  aspect-ratio: 4/5;
}

.slider-double--nav {
  top: 80vw;
  left: 4vw;
}

.slider-double--bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: max(1.5rem, 5vw);
  margin-top: 48vw;
}

.slider-double--text-slider {
  order: -1;
}

.slider-double--text-wrap {
  text-align: center;
}

.slider-double--actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slider-double--actions .btn {
  width: -moz-fit-content;
  width: fit-content;
}

.slider-double--title {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: var(--color-secondary);
  text-decoration-color: var(--color-5);
  margin-bottom: max(3.125rem, 3.472vw);
}

.slider-double--side .slider-double--title {
  margin-left: auto;
  text-align: right;
}

@media (min-width: 992px) {
  .slider-double {
    min-height: 68.264vw;
  }
  .slider-double--medias {
    position: static;
  }
  .slider-double--right {
    position: absolute;
    top: 15.069vw;
    left: 35.415vw;
    width: 52.778vw;
  }
  .slider-double--small-slider {
    top: 31.319vw;
    left: 12.431vw;
    right: auto;
    width: 29.583vw;
    height: 36.944vw;
    aspect-ratio: auto;
  }
  .slider-double--small-slider::before {
    content: none;
  }
  .slider-double--big-slider {
    width: 100%;
    height: 34.931vw;
    aspect-ratio: auto;
  }
  .slider-double--text-slider {
    position: relative;
    margin-top: 4vw;
    z-index: 3;
    order: 0;
  }
  .slider-double--text-wrap {
    padding-left: 11.5vw;
    text-align: left;
  }
  .slider-double--nav {
    top: 26vw;
    left: 12.431vw;
  }
  .slider-double--bottom {
    display: contents;
    margin-top: 0;
  }
  .slider-double--title {
    margin-bottom: 0;
    line-height: max(2.5rem, 1.5vw);
  }
  .slider-double--actions .btn {
    width: 100%;
  }
  .slider-double--side .slider-double--small-slider {
    left: auto;
    right: 12.431vw;
  }
  .slider-double--side .slider-double--right {
    left: auto;
    right: 35.415vw;
  }
  .slider-double--side .slider-double--nav {
    left: auto;
    right: 12.431vw;
  }
  .slider-double--side .slider-double--text-wrap {
    padding-left: 0;
    padding-right: 11.5vw;
  }
  .slider-double--side .slider-double--title {
    text-align: right;
  }
  .slider-double--has-btns .slider-double--right::after {
    content: "";
    position: absolute;
    top: 34.931vw;
    height: 18.263vw;
    width: max(0.375rem, 0.417vw);
    background: var(--color-6);
  }
  .slider-double--has-btns .slider-double--bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: max(1.5rem, 2vw);
    margin-top: 7.7vw;
  }
  .slider-double--has-btns .slider-double--text-slider {
    width: 50%;
    margin-top: 0;
  }
  .slider-double--has-btns .slider-double--text-wrap {
    padding-left: 0;
    padding-right: 0;
    width: 78%;
  }
  .slider-double--has-btns .slider-double--actions {
    width: 50%;
    display: flex;
    justify-content: center;
    align-self: center;
  }
  .slider-double--has-btns .slider-double--actions .btn {
    white-space: nowrap;
  }
  .slider-double--has-btns.slider-double--side .slider-double--bottom {
    padding-right: 8.6vw;
    margin-top: max(4.0625rem, 4.514vw);
  }
  .slider-double--has-btns.slider-double--side .slider-double--text-wrap {
    text-align: right;
    margin-left: auto;
    margin-right: max(1.125rem, 1.25vw);
  }
  .slider-double--has-btns.slider-double--side .slider-double--right::after {
    right: 6.6vw;
  }
  .slider-double--has-btns:not(.slider-double--side) .slider-double--bottom {
    flex-direction: row-reverse;
    padding-left: 8.6vw;
    margin-top: max(4.0625rem, 4.514vw);
  }
  .slider-double--has-btns:not(.slider-double--side) .slider-double--text-wrap {
    text-align: left;
    margin-right: auto;
    margin-left: max(1.125rem, 1.25vw);
  }
  .slider-double--has-btns:not(.slider-double--side) .slider-double--right::after {
    left: 6.6vw;
  }
}

.slider-hero {
  position: relative;
  z-index: 1;
  background: var(--color-secondary);
}

.slider-hero .overlap {
  margin-top: max(2rem, 8vw);
}

.slider-hero--bg {
  width: 100%;
  height: 71%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 max(2.5rem, 2.778vw) 0;
}

.slider-hero > .container-ext {
  position: relative;
  z-index: 1;
}

.slider-hero--subtitle {
  color: var(--color-primary);
}

.slider-hero--title {
  position: relative;
  z-index: 2;
  color: var(--color-secondary);
  text-align: start;
  font-size: max(2.25rem, 7vw);
  line-height: max(3rem, 9.1vw);
  word-break: break-word;
  text-decoration-thickness: max(0.6rem, 0.65vw);
}

.slider-hero--slider-main {
  overflow: hidden;
  border-top-left-radius: max(2.5rem, 2.778vw);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
  width: 100%;
  height: max(20rem, 95vw);
}

.slider-hero--slider-secondary {
  overflow: hidden;
}

.slider-hero br {
  display: none;
}

.slider-hero--about-text {
  margin-top: max(2rem, 8vw);
  padding-right: max(3.25rem, 1.389vw);
  text-align: start;
  word-break: break-all;
}

.slider-hero--buttons {
  display: none;
}

.slider-hero--image-img {
  width: 100%;
  height: 100%;
}

.slider-hero--image-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-hero--container-big {
  width: max(40.375rem, 44.861vw);
  height: max(56.875rem, 63.194vw);
  overflow: hidden;
  border-top-left-radius: max(2.5rem, 2.778vw);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
}

.slider-hero--container-big .slider-hero--image {
  width: 100%;
  height: 100%;
}

.slider-hero--container-big .slider-hero--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.slider-hero--btns {
  display: flex;
  justify-content: center;
}

.slider-hero--btns .btn {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  height: max(2.9375rem, 3.264vw);
  padding: 0 max(1.5rem, 1.667vw);
}

@media (min-width: 992px) {
  .slider-hero .overlap {
    margin-top: -100px;
  }
  .slider-hero--about-text {
    text-align: end;
    margin-top: auto;
  }
  .slider-hero > .container-ext .col-lg-5 {
    display: flex;
    flex-direction: column;
  }
  .slider-hero > .container-ext .col-lg-6 {
    position: relative;
  }
  .slider-hero > .container-ext .col-lg-6::before {
    content: "";
    position: absolute;
    top: calc(max(56.875rem, 63.194vw) * 0.772);
    left: calc(max(0.5rem, 0.556vw) * -1);
    width: max(0.5rem, 0.556vw);
    height: calc(max(58.875rem, 65.194vw) * 0.22);
    background: var(--color-5);
    z-index: 2;
  }
  .slider-hero--slider-main {
    position: absolute;
    width: max(19.1875rem, 21.319vw);
    height: max(25rem, 27.778vw);
    top: max(35.5625rem, 29.514vw);
    margin-left: 0;
    margin-right: 7.5vw;
  }
  .slider-hero--slider-secondary {
    width: 100%;
  }
  .slider-hero--buttons {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 60%;
    left: 43%;
    transform: translateX(-50%);
    margin-top: 0;
    margin-bottom: max(2.1875rem, 2.431vw);
  }
  .slider-hero--buttons .swiper-button-prev,
  .slider-hero--buttons .swiper-button-next {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(3.125rem, 3.47vw);
    height: max(3.125rem, 3.47vw);
    padding: max(0.75rem, 1.04vw);
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-secondary);
    transition: color 0.3s ease;
    z-index: 3;
  }
  .slider-hero--buttons .swiper-button-prev::after,
  .slider-hero--buttons .swiper-button-next::after {
    display: none;
  }
  .slider-hero--buttons .swiper-button-prev svg,
  .slider-hero--buttons .swiper-button-next svg {
    overflow: visible;
    flex-shrink: 0;
    width: max(1.125rem, 1.25vw);
    height: max(1.9375rem, 2.153vw);
  }
  .slider-hero--buttons .swiper-button-prev:hover,
  .slider-hero--buttons .swiper-button-next:hover {
    color: var(--color-primary);
  }
  .slider-hero--btns {
    width: 100%;
    padding-top: max(2.1875rem, 2.431vw);
  }
  .slider-hero--title {
    width: 100%;
  }
  .slider-hero--container-big {
    width: 100%;
  }
}

.title {
  position: relative;
}

.title--content {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: max(2.5rem, 4.722vw);
  line-height: max(2.875rem, 5.43vw);
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-align: center;
  text-decoration: none;
}

@media (min-width: 992px) {
  .title--content {
    font-size: max(4.25rem, 4.722vw);
    line-height: max(4.8125rem, 5.347vw);
  }
}

.title-cta {
  position: relative;
  border-radius: max(2.5rem, 2.778vw) 0 0 0;
}

.title-cta .row {
  align-items: center;
}

.title-cta--title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.title-cta--text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.title-cta--btns {
  display: flex;
  flex-wrap: wrap;
  gap: max(1rem, 1.111vw);
  justify-content: center;
  margin-top: max(1.6rem, 2.083vw);
}

@media (min-width: 992px) {
  .title-cta--btns {
    justify-content: flex-start;
  }
}

.titletext .row {
  align-items: center;
}

.titletext--surtitle {
  font-size: max(0.75rem, 0.833vw);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.titletext--title {
  color: var(--color-5);
}

.titletext--col-title--full {
  text-align: right;
}

.titletext--col-title--full .titletext--title {
  font-size: max(2.5rem, 9vw);
  line-height: max(3.3rem, 12vw);
  text-align: center;
}

.titletext--col-text--full {
  text-align: center;
}

.titletext--col-text-btns {
  margin-left: auto;
}

.titletext--col-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
}

.titletext--col-btns {
  display: flex;
  justify-content: flex-end;
}

.titletext--text {
  font-size: max(0.9375rem, 1.042vw);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}

.titletext--text strong {
  font-weight: 600;
}

.titletext--btns {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .titletext--col-title--full .titletext--title {
    font-size: max(1.875rem, 4.514vw);
    line-height: max(2rem, 5.556vw);
    text-align: right;
  }
}

.triple-image {
  position: relative;
}

.triple-image--bg {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}

.triple-image--bg-top {
  top: 0;
  bottom: calc(50% + 50px);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
}

.triple-image--bg-bottom {
  top: calc(75% - 50px);
  bottom: 0;
  border-top-left-radius: max(2.5rem, 2.778vw);
}

.triple-image--text {
  text-align: right;
  margin-bottom: 70px;
}

.triple-image--img {
  position: relative;
  width: max(23.094rem, 25.66vw);
  height: max(25.375rem, 28.194vw);
  border-top-left-radius: max(2.5rem, 2.778vw);
  border-bottom-right-radius: max(2.5rem, 2.778vw);
}

.triple-image--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.triple-image.is-bg-top h2 {
  color: var(--color-secondary);
}

.triple-image.is-bg-top .triple-image--right-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(max(0.5rem, 0.556vw) * -1);
  width: max(0.5rem, 0.556vw);
  height: 65%;
  background: var(--color-primary);
  z-index: 2;
}

.triple-image.is-bg-bottom .triple-image--left-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(max(0.5rem, 0.556vw) * -1);
  width: max(0.5rem, 0.556vw);
  height: 65%;
  background: var(--color-6);
  z-index: 2;
}

.triple-image.is-bg-bottom h2 {
  color: var(--color-5);
}

.triple-image.is-bg-bottom .triple-image--text {
  color: var(--color-primary);
}

.triple-image.is-bg-bottom .btn {
  background-color: var(--color-secondary);
  color: var(--color-6);
}

.triple-image.is-bg-bottom .btn:hover {
  color: var(--color-6);
}

.triple-image--left-img {
  margin-top: 80px;
}

.triple-image .main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.triple-image .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.triple-image--actions {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triple-image--desktop {
  display: none;
}

.triple-image--slider {
  width: 100%;
  padding-bottom: max(1.5rem, 6vw);
}

.triple-image--slide-img {
  width: 100%;
  aspect-ratio: 23/25;
  overflow: hidden;
  border-top-left-radius: max(1.25rem, 5vw);
  border-bottom-right-radius: max(1.25rem, 5vw);
}

.triple-image--slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.triple-image--slider .swiper-pagination {
  display: none;
}

.triple-image--mobile .triple-image--text {
  text-align: center;
  margin: max(1.5rem, 6vw) 0;
  color: var(--color-primary);
}

.triple-image.is-bg-bottom .triple-image--mobile .triple-image--text {
  color: var(--color-secondary);
}

.triple-image--mobile .triple-image--actions {
  flex: none;
  justify-content: center;
  margin-top: max(0.5rem, 2vw);
}

@media (min-width: 992px) {
  .triple-image--desktop {
    display: grid;
  }
  .triple-image--bg-top {
    bottom: 50%;
  }
  .triple-image--bg-bottom {
    top: 65%;
  }
  .triple-image.is-bg-top .triple-image--text {
    color: var(--color-secondary);
  }
}

.ws {
  height: max(10px, 0.693vw);
}

.ws-0 {
  height: max(0px, 0vw);
}

.ws-10 {
  height: max(10px, 0.693vw);
}

.ws-20 {
  height: max(20px, 1.386vw);
}

.ws-30 {
  height: max(30px, 2.079vw);
}

.ws-40 {
  height: max(40px, 2.772vw);
}

.ws-50 {
  height: max(50px, 3.465vw);
}

.ws-60 {
  height: max(60px, 4.158vw);
}

.ws-70 {
  height: max(70px, 4.851vw);
}

.ws-80 {
  height: max(80px, 5.544vw);
}

.ws-90 {
  height: max(90px, 6.237vw);
}

.ws-100 {
  height: max(100px, 6.93vw);
}

.ws-n {
  margin-top: max(-10px, -0.693vw);
}

.ws-n-0 {
  margin-top: max(-0px, -0vw);
}

.ws-n-10 {
  margin-top: max(-10px, -0.693vw);
}

.ws-n-20 {
  margin-top: max(-20px, -1.386vw);
}

.ws-n-30 {
  margin-top: max(-30px, -2.079vw);
}

.ws-n-40 {
  margin-top: max(-40px, -2.772vw);
}

.ws-n-50 {
  margin-top: max(-50px, -3.465vw);
}

.ws-n-60 {
  margin-top: max(-60px, -4.158vw);
}

.ws-n-70 {
  margin-top: max(-70px, -4.851vw);
}

.ws-n-80 {
  margin-top: max(-80px, -5.544vw);
}

.ws-n-90 {
  margin-top: max(-90px, -6.237vw);
}

.ws-n-100 {
  margin-top: max(-100px, -6.93vw);
}

@media (min-width: 100%) {
  .ws-xs {
    height: max(10px, 0.693vw);
  }
  .ws-xs-0 {
    height: max(0px, 0vw);
  }
  .ws-xs-10 {
    height: max(10px, 0.693vw);
  }
  .ws-xs-20 {
    height: max(20px, 1.386vw);
  }
  .ws-xs-30 {
    height: max(30px, 2.079vw);
  }
  .ws-xs-40 {
    height: max(40px, 2.772vw);
  }
  .ws-xs-50 {
    height: max(50px, 3.465vw);
  }
  .ws-xs-60 {
    height: max(60px, 4.158vw);
  }
  .ws-xs-70 {
    height: max(70px, 4.851vw);
  }
  .ws-xs-80 {
    height: max(80px, 5.544vw);
  }
  .ws-xs-90 {
    height: max(90px, 6.237vw);
  }
  .ws-xs-100 {
    height: max(100px, 6.93vw);
  }
  .ws-n-xs {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-xs-0 {
    margin-top: max(-0px, -0vw);
  }
  .ws-n-xs-10 {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-xs-20 {
    margin-top: max(-20px, -1.386vw);
  }
  .ws-n-xs-30 {
    margin-top: max(-30px, -2.079vw);
  }
  .ws-n-xs-40 {
    margin-top: max(-40px, -2.772vw);
  }
  .ws-n-xs-50 {
    margin-top: max(-50px, -3.465vw);
  }
  .ws-n-xs-60 {
    margin-top: max(-60px, -4.158vw);
  }
  .ws-n-xs-70 {
    margin-top: max(-70px, -4.851vw);
  }
  .ws-n-xs-80 {
    margin-top: max(-80px, -5.544vw);
  }
  .ws-n-xs-90 {
    margin-top: max(-90px, -6.237vw);
  }
  .ws-n-xs-100 {
    margin-top: max(-100px, -6.93vw);
  }
}

@media (min-width: 576px) {
  .ws-sm {
    height: max(10px, 0.693vw);
  }
  .ws-sm-0 {
    height: max(0px, 0vw);
  }
  .ws-sm-10 {
    height: max(10px, 0.693vw);
  }
  .ws-sm-20 {
    height: max(20px, 1.386vw);
  }
  .ws-sm-30 {
    height: max(30px, 2.079vw);
  }
  .ws-sm-40 {
    height: max(40px, 2.772vw);
  }
  .ws-sm-50 {
    height: max(50px, 3.465vw);
  }
  .ws-sm-60 {
    height: max(60px, 4.158vw);
  }
  .ws-sm-70 {
    height: max(70px, 4.851vw);
  }
  .ws-sm-80 {
    height: max(80px, 5.544vw);
  }
  .ws-sm-90 {
    height: max(90px, 6.237vw);
  }
  .ws-sm-100 {
    height: max(100px, 6.93vw);
  }
  .ws-n-sm {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-sm-0 {
    margin-top: max(-0px, -0vw);
  }
  .ws-n-sm-10 {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-sm-20 {
    margin-top: max(-20px, -1.386vw);
  }
  .ws-n-sm-30 {
    margin-top: max(-30px, -2.079vw);
  }
  .ws-n-sm-40 {
    margin-top: max(-40px, -2.772vw);
  }
  .ws-n-sm-50 {
    margin-top: max(-50px, -3.465vw);
  }
  .ws-n-sm-60 {
    margin-top: max(-60px, -4.158vw);
  }
  .ws-n-sm-70 {
    margin-top: max(-70px, -4.851vw);
  }
  .ws-n-sm-80 {
    margin-top: max(-80px, -5.544vw);
  }
  .ws-n-sm-90 {
    margin-top: max(-90px, -6.237vw);
  }
  .ws-n-sm-100 {
    margin-top: max(-100px, -6.93vw);
  }
}

@media (min-width: 768px) {
  .ws-md {
    height: max(10px, 0.693vw);
  }
  .ws-md-0 {
    height: max(0px, 0vw);
  }
  .ws-md-10 {
    height: max(10px, 0.693vw);
  }
  .ws-md-20 {
    height: max(20px, 1.386vw);
  }
  .ws-md-30 {
    height: max(30px, 2.079vw);
  }
  .ws-md-40 {
    height: max(40px, 2.772vw);
  }
  .ws-md-50 {
    height: max(50px, 3.465vw);
  }
  .ws-md-60 {
    height: max(60px, 4.158vw);
  }
  .ws-md-70 {
    height: max(70px, 4.851vw);
  }
  .ws-md-80 {
    height: max(80px, 5.544vw);
  }
  .ws-md-90 {
    height: max(90px, 6.237vw);
  }
  .ws-md-100 {
    height: max(100px, 6.93vw);
  }
  .ws-n-md {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-md-0 {
    margin-top: max(-0px, -0vw);
  }
  .ws-n-md-10 {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-md-20 {
    margin-top: max(-20px, -1.386vw);
  }
  .ws-n-md-30 {
    margin-top: max(-30px, -2.079vw);
  }
  .ws-n-md-40 {
    margin-top: max(-40px, -2.772vw);
  }
  .ws-n-md-50 {
    margin-top: max(-50px, -3.465vw);
  }
  .ws-n-md-60 {
    margin-top: max(-60px, -4.158vw);
  }
  .ws-n-md-70 {
    margin-top: max(-70px, -4.851vw);
  }
  .ws-n-md-80 {
    margin-top: max(-80px, -5.544vw);
  }
  .ws-n-md-90 {
    margin-top: max(-90px, -6.237vw);
  }
  .ws-n-md-100 {
    margin-top: max(-100px, -6.93vw);
  }
}

@media (min-width: 992px) {
  .ws-lg {
    height: max(10px, 0.693vw);
  }
  .ws-lg-0 {
    height: max(0px, 0vw);
  }
  .ws-lg-10 {
    height: max(10px, 0.693vw);
  }
  .ws-lg-20 {
    height: max(20px, 1.386vw);
  }
  .ws-lg-30 {
    height: max(30px, 2.079vw);
  }
  .ws-lg-40 {
    height: max(40px, 2.772vw);
  }
  .ws-lg-50 {
    height: max(50px, 3.465vw);
  }
  .ws-lg-60 {
    height: max(60px, 4.158vw);
  }
  .ws-lg-70 {
    height: max(70px, 4.851vw);
  }
  .ws-lg-80 {
    height: max(80px, 5.544vw);
  }
  .ws-lg-90 {
    height: max(90px, 6.237vw);
  }
  .ws-lg-100 {
    height: max(100px, 6.93vw);
  }
  .ws-n-lg {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-lg-0 {
    margin-top: max(-0px, -0vw);
  }
  .ws-n-lg-10 {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-lg-20 {
    margin-top: max(-20px, -1.386vw);
  }
  .ws-n-lg-30 {
    margin-top: max(-30px, -2.079vw);
  }
  .ws-n-lg-40 {
    margin-top: max(-40px, -2.772vw);
  }
  .ws-n-lg-50 {
    margin-top: max(-50px, -3.465vw);
  }
  .ws-n-lg-60 {
    margin-top: max(-60px, -4.158vw);
  }
  .ws-n-lg-70 {
    margin-top: max(-70px, -4.851vw);
  }
  .ws-n-lg-80 {
    margin-top: max(-80px, -5.544vw);
  }
  .ws-n-lg-90 {
    margin-top: max(-90px, -6.237vw);
  }
  .ws-n-lg-100 {
    margin-top: max(-100px, -6.93vw);
  }
}

@media (min-width: 1200px) {
  .ws-xl {
    height: max(10px, 0.693vw);
  }
  .ws-xl-0 {
    height: max(0px, 0vw);
  }
  .ws-xl-10 {
    height: max(10px, 0.693vw);
  }
  .ws-xl-20 {
    height: max(20px, 1.386vw);
  }
  .ws-xl-30 {
    height: max(30px, 2.079vw);
  }
  .ws-xl-40 {
    height: max(40px, 2.772vw);
  }
  .ws-xl-50 {
    height: max(50px, 3.465vw);
  }
  .ws-xl-60 {
    height: max(60px, 4.158vw);
  }
  .ws-xl-70 {
    height: max(70px, 4.851vw);
  }
  .ws-xl-80 {
    height: max(80px, 5.544vw);
  }
  .ws-xl-90 {
    height: max(90px, 6.237vw);
  }
  .ws-xl-100 {
    height: max(100px, 6.93vw);
  }
  .ws-n-xl {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-xl-0 {
    margin-top: max(-0px, -0vw);
  }
  .ws-n-xl-10 {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-xl-20 {
    margin-top: max(-20px, -1.386vw);
  }
  .ws-n-xl-30 {
    margin-top: max(-30px, -2.079vw);
  }
  .ws-n-xl-40 {
    margin-top: max(-40px, -2.772vw);
  }
  .ws-n-xl-50 {
    margin-top: max(-50px, -3.465vw);
  }
  .ws-n-xl-60 {
    margin-top: max(-60px, -4.158vw);
  }
  .ws-n-xl-70 {
    margin-top: max(-70px, -4.851vw);
  }
  .ws-n-xl-80 {
    margin-top: max(-80px, -5.544vw);
  }
  .ws-n-xl-90 {
    margin-top: max(-90px, -6.237vw);
  }
  .ws-n-xl-100 {
    margin-top: max(-100px, -6.93vw);
  }
}

@media (min-width: 1400px) {
  .ws-xxl {
    height: max(10px, 0.693vw);
  }
  .ws-xxl-0 {
    height: max(0px, 0vw);
  }
  .ws-xxl-10 {
    height: max(10px, 0.693vw);
  }
  .ws-xxl-20 {
    height: max(20px, 1.386vw);
  }
  .ws-xxl-30 {
    height: max(30px, 2.079vw);
  }
  .ws-xxl-40 {
    height: max(40px, 2.772vw);
  }
  .ws-xxl-50 {
    height: max(50px, 3.465vw);
  }
  .ws-xxl-60 {
    height: max(60px, 4.158vw);
  }
  .ws-xxl-70 {
    height: max(70px, 4.851vw);
  }
  .ws-xxl-80 {
    height: max(80px, 5.544vw);
  }
  .ws-xxl-90 {
    height: max(90px, 6.237vw);
  }
  .ws-xxl-100 {
    height: max(100px, 6.93vw);
  }
  .ws-n-xxl {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-xxl-0 {
    margin-top: max(-0px, -0vw);
  }
  .ws-n-xxl-10 {
    margin-top: max(-10px, -0.693vw);
  }
  .ws-n-xxl-20 {
    margin-top: max(-20px, -1.386vw);
  }
  .ws-n-xxl-30 {
    margin-top: max(-30px, -2.079vw);
  }
  .ws-n-xxl-40 {
    margin-top: max(-40px, -2.772vw);
  }
  .ws-n-xxl-50 {
    margin-top: max(-50px, -3.465vw);
  }
  .ws-n-xxl-60 {
    margin-top: max(-60px, -4.158vw);
  }
  .ws-n-xxl-70 {
    margin-top: max(-70px, -4.851vw);
  }
  .ws-n-xxl-80 {
    margin-top: max(-80px, -5.544vw);
  }
  .ws-n-xxl-90 {
    margin-top: max(-90px, -6.237vw);
  }
  .ws-n-xxl-100 {
    margin-top: max(-100px, -6.93vw);
  }
}
/*# sourceMappingURL=main.css.map */
