/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

: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: ease;
  transition-timing-function: initial;
  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-3d .swiper-slide,.swiper-3d .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 */
  }
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
      display: none;
    }
.swiper-css-mode  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
.swiper-css-mode.swiper-horizontal  > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
.swiper-css-mode.swiper-vertical  > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
.swiper-css-mode.swiper-free-mode  > .swiper-wrapper {
      scroll-snap-type: none;
    }
.swiper-css-mode.swiper-free-mode  > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
.swiper-css-mode.swiper-centered  > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
.swiper-css-mode.swiper-centered  > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
.swiper-css-mode.swiper-centered.swiper-horizontal  > .swiper-wrapper > .swiper-slide:first-child {
      margin-left: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-horizontal  > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
.swiper-css-mode.swiper-centered.swiper-vertical  > .swiper-wrapper > .swiper-slide:first-child {
      margin-top: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-vertical  > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .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 #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.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: 44px;

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

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-disabled.swiper-button-prev,.swiper-button-disabled.swiper-button-next {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
.swiper-button-hidden.swiper-button-prev,.swiper-button-hidden.swiper-button-next {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next {
    display: none !important;
  }
.swiper-button-prev svg,.swiper-button-next 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: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (44px / 2));
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: 4px;
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
    transform: rotate(180deg);
  }
.swiper-button-next {
  right: 4px;
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal .swiper-button-prev,.swiper-horizontal .swiper-button-next,.swiper-horizontal  ~ .swiper-button-prev,.swiper-horizontal  ~ .swiper-button-next {
    top: 50%;
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (44px / 2));
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
.swiper-horizontal .swiper-button-prev,.swiper-horizontal ~ .swiper-button-prev,.swiper-horizontal.swiper-rtl .swiper-button-next,.swiper-horizontal.swiper-rtl ~ .swiper-button-next {
    left: 4px;
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
.swiper-horizontal .swiper-button-next,.swiper-horizontal ~ .swiper-button-next,.swiper-horizontal.swiper-rtl .swiper-button-prev,.swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
    right: 4px;
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
.swiper-horizontal .swiper-button-prev:not(.does-not-exist) .swiper-navigation-icon,.swiper-horizontal ~ .swiper-button-prev:not(.does-not-exist) .swiper-navigation-icon,.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,.swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
      transform: rotate(180deg);
    }
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,.swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
      transform: rotate(0deg);
    }
.swiper-vertical .swiper-button-prev,.swiper-vertical .swiper-button-next,.swiper-vertical  ~ .swiper-button-prev,.swiper-vertical  ~ .swiper-button-next {
    left: 50%;
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (44px / 2));
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
.swiper-vertical .swiper-button-prev,.swiper-vertical  ~ .swiper-button-prev {
    top: 4px;
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
  }
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
.swiper-vertical .swiper-button-next,.swiper-vertical  ~ .swiper-button-next {
    bottom: 4px;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
  }
.swiper-vertical .swiper-button-next .swiper-navigation-icon,.swiper-vertical ~ .swiper-button-next .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.swiper-pagination-hidden {
    opacity: 0;
  }
.swiper-pagination-disabled > .swiper-pagination,.swiper-pagination.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: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
.swiper-pagination-bullet:only-child {
    display: none !important;
  }
.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-bullets-dynamic.swiper-pagination-vertical.swiper-pagination-bullets {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-bullets-dynamic.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform, 200ms top;
    }
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-bullets-dynamic.swiper-pagination-horizontal.swiper-pagination-bullets {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-bullets-dynamic.swiper-pagination-horizontal.swiper-pagination-bullets .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: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    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 .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
.swiper-horizontal > .swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
.swiper-vertical > .swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: 4px;
    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: 10px;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: rgba(0, 0, 0, 0.1);
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
  }
.swiper-horizontal > .swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: 4px;
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: auto;
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: 4px;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * 1%);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
.swiper-vertical > .swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-vertical {
    position: absolute;
    left: auto;
    left: var(--swiper-scrollbar-left, auto);
    right: 4px;
    right: var(--swiper-scrollbar-right, 4px);
    top: 1%;
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: 4px;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * 1%);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: 10px;
  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;
}
.swiper-zoom-container  > img,.swiper-zoom-container  > svg,.swiper-zoom-container  > 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-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }


.swiper-fade .swiper-slide .swiper-slide {
      pointer-events: none;
    }


.swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }


.swiper-fade .swiper-slide-active .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-cube .swiper-slide .swiper-slide {
      pointer-events: none;
    }
.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
  }
.swiper-cube .swiper-cube-shadow: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-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .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-flip .swiper-slide .swiper-slide {
      pointer-events: none;
    }
.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .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;
  }

/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #005F75;
}
.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #003642;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #005F75;
  border: 1px solid #004a5c;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #004a5c;
  border: 1px solid #003642;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */

:root{--main-nav-transition-time: 0.1s;--button-animation-time: 0.2s;--button-mobile-animation-time: 0.05s;--home-background-color-animation-time: 0.4s}h1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 75em){h1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:10rem;line-height:100%;letter-spacing:-1%;font-weight:400}}h2,h3{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 75em){h2,h3{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}*,*::after,*::before{margin:0;padding:0;box-sizing:inherit}html{scroll-behavior:smooth;font-size:62.5%;font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;color:#000;hyphenate-limit-chars:auto 5 5;text-rendering:optimizeLegibility;text-rendering:geometricPrecision;-webkit-backface-visibility:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{box-sizing:border-box;font-size:1.6rem;color:#000}::-moz-selection{background-color:#000;color:#fff}::selection{background-color:#000;color:#fff}img{width:100%;height:auto;display:block}.grecaptcha-badge{display:none}.u-generic-wrapper{margin:0 auto;max-width:256rem;width:100%}.u-generic-wrapper-margin{margin:0 2rem}@media only screen and (min-width: 64em){.u-generic-wrapper-margin{margin:0 4rem}}.u-center{text-align:center}.u-neutral-link{-webkit-text-decoration:none;text-decoration:none;color:inherit}.u-no-focus:focus{outline:none}.u-full-width{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;padding:0 2rem}@media only screen and (min-width: 64em){.u-mobile-only{display:none}}.u-desktop-only{display:none}@media only screen and (min-width: 64em){.u-desktop-only{display:block}}.u-is-sticky-item{position:relative;z-index:9;scroll-margin-top:3rem}.u-spacer-top{height:4.7rem}@media only screen and (min-width: 64em){.u-spacer-top{height:12.3rem}}@media only screen and (min-width: 160.0625em){.u-spacer-top{border-left:1px solid #000;border-right:1px solid #000}}.u-margin-right{margin-right:.8rem}input[type=text],input[type=email],input[type=password],input[type=tel],textarea{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}@media only screen and (min-width: 50em){input[type=text],input[type=email],input[type=password],input[type=tel],textarea{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}@media only screen and (min-width: 75em){input[type=text],input[type=email],input[type=password],input[type=tel],textarea{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}input[type=text],input[type=email],input[type=password],input[type=tel],textarea{border:0;padding:1rem 1rem 1rem;margin-top:.7rem}input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder{color:#dddac5;opacity:1}input[type=text]::placeholder,input[type=email]::placeholder,input[type=password]::placeholder,input[type=tel]::placeholder,textarea::placeholder{color:#dddac5;opacity:1}textarea{padding-top:0;padding-bottom:0;margin:1.6rem 0}input.focus-with-mouse:focus,textarea.focus-with-mouse:focus{outline:none;box-shadow:none;border-color:inherit}div.focus-with-mouse:focus{box-shadow:none !important}textarea:focus::-moz-placeholder, input:focus::-moz-placeholder{color:rgba(0,0,0,0)}textarea:focus::placeholder,input:focus::placeholder{color:rgba(0,0,0,0)}body{display:flex;flex-flow:column nowrap;min-height:100svh;background-color:#fff;transition:background-color 0.4s ease-out;transition:background-color var(--home-background-color-animation-time) ease-out}.main{margin:0 auto;max-width:256rem;width:100%;display:flex;flex-flow:column nowrap;flex-grow:1}@media only screen and (min-width: 160.0625em){.main{border-left:1px solid #000;border-right:1px solid #000}}.content{flex:4 1 0%}.hidden{display:none}.header{display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:center;margin:0 2rem}@media only screen and (min-width: 64em){.header{margin:0 4rem}}.header__home{justify-content:space-between;height:100%}@media only screen and (min-width: 64em){.header__home{justify-content:flex-end}}.header__default{height:4.5rem}@media only screen and (min-width: 64em){.header__default{position:absolute;top:0;right:0;bottom:0;left:0;height:4.7rem;height:12.4rem}}.header__wrapper{position:fixed;z-index:13;width:100%;max-width:calc(256rem - 2px);height:4.7rem}@media only screen and (min-width: 64em){.header__wrapper{height:12.4rem}}.header__wrapper--default{background-color:#fff;border-bottom:1px solid #000;transition:background-color 0.1s ease, border-bottom-color 0.1s ease, border-bottom-width 0.1s ease;transition:background-color var(--main-nav-transition-time) ease, border-bottom-color var(--main-nav-transition-time) ease, border-bottom-width var(--main-nav-transition-time) ease}.header__wrapper--home{background-color:#fff;border-bottom:1px solid #000;transition:background-color 0.1s ease, border-bottom-color 0.1s ease, border-bottom-width 0.1s ease;transition:background-color var(--main-nav-transition-time) ease, border-bottom-color var(--main-nav-transition-time) ease, border-bottom-width var(--main-nav-transition-time) ease}@media only screen and (min-width: 64em){.header__wrapper--home{background-color:rgba(0,0,0,0);border-bottom:none}}.header__static-text{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.header__static-text{padding-top:8.3rem;display:flex;flex-flow:column nowrap;padding-left:2rem}@media only screen and (min-width: 64em){.header__static-text{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:6rem;line-height:130%;font-weight:400;letter-spacing:-1%}.header__static-text{padding-top:2rem;padding-left:4rem}}@media only screen and (min-width: 160.0625em){.header__static-text{border-left:1px solid #000;border-right:1px solid #000}}@media only screen and (min-width: 64em){.header__static-title{color:#eceadd}}.header__text-wrapper{position:relative}.header__text{color:#000;-webkit-text-decoration:none;text-decoration:none}.header__text--home{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.header__text--home span:first-of-type{padding-right:.4rem}@media only screen and (min-width: 64em){.header__text--home{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:6rem;line-height:130%;font-weight:400;letter-spacing:-1%;position:absolute;top:2rem;z-index:11}}@media only screen and (min-width: 64em){.header__text--home-nav-open{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.header__text--home-nav-open{position:relative;flex-flow:column nowrap;justify-content:center;align-items:flex-start;gap:initial;display:none}}.header__text--default{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.header__text--default{display:flex;flex-flow:row nowrap;align-items:center;height:100%;gap:.4rem}@media only screen and (min-width: 64em){.header__text--default{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400;flex-flow:column nowrap;justify-content:center;align-items:flex-start;gap:initial}}.header__nav-wrapper{display:flex}.header__language-switcher-nav{display:none}.header__language-switcher{margin-left:1.5rem;height:4.5rem}@media only screen and (min-width: 64em){.header__language-switcher{position:relative;height:4.6rem;z-index:13;width:4.6rem;border-radius:2.4rem;border:1px solid #000}}.header__language-switcher a{-webkit-text-decoration:none;text-decoration:none}.header__language-switcher ul{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.header__language-switcher ul{position:absolute;right:0;top:0;display:flex;flex-flow:column nowrap;list-style:none;align-items:flex-end}@media only screen and (min-width: 64em){.header__language-switcher ul{position:relative;align-items:center;justify-content:center;gap:1.7rem;flex-flow:row nowrap;right:auto;right:initial;top:auto;top:initial}}.header__language-switcher ul li{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.header__language-switcher ul li{line-height:1.6rem;text-transform:capitalize;padding-right:2rem}@media only screen and (min-width: 64em){.header__language-switcher ul li{padding-right:0}}.header__language-switcher ul li.is-active{height:4.6rem;width:auto;order:-1;margin-bottom:1px}@media only screen and (min-width: 64em){.header__language-switcher ul li.is-active{width:100%;height:100%;margin-bottom:0}}.header__language-switcher ul button{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.header__language-switcher ul button{color:#000;line-height:1.6rem;border-radius:2.4rem;cursor:pointer;height:4.5rem;width:auto;text-transform:capitalize;border:none;background:rgba(0,0,0,0);margin:auto;text-align:right}@media only screen and (min-width: 64em){.header__language-switcher ul button{height:4.4rem;width:100%;text-align:center}}@media only screen and (min-width: 64em){.header__language-switcher--toggle span{transform:translateY(1px);display:inline-block}}@media only screen and (min-width: 64em){.header__language-switcher--toggle[aria-expanded=false]::before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to right, #f2f2f2, #f2f2f2);background-size:0% 100%;background-repeat:no-repeat;transition:background-size 0.2s ease-out;transition:background-size var(--button-animation-time) ease-out;border-radius:2.3rem;z-index:-1}}@media only screen and (min-width: 64em){.header__language-switcher--toggle[aria-expanded=false]:hover::before{background-size:100% 100%}}.header__language-switcher--option{display:none}@media only screen and (min-width: 64em){.header__language-switcher.is-open{background-color:#000;width:auto}}.header__language-switcher.is-open .header__language-switcher--option{display:flex;background-color:#fff;border-bottom:1px solid #000;width:100%;text-align:flext-end;padding:1rem 2rem 1rem}@media only screen and (min-width: 64em){.header__language-switcher.is-open .header__language-switcher--option{background-color:#000;padding:0}}.header__language-switcher.is-open .header__language-switcher--option a{color:#000;margin-left:auto;width:2rem;text-align:center}@media only screen and (min-width: 64em){.header__language-switcher.is-open .header__language-switcher--option a{color:#fff;width:auto}}.header__language-switcher.is-open ul{width:100vw}@media only screen and (min-width: 64em){.header__language-switcher.is-open ul{padding:.1rem 3.1rem 0 3.1rem;width:auto}}@media only screen and (min-width: 64em){.header__language-switcher.is-open ul li.is-active{transform:translateY(-1px)}}.header__language-switcher.is-open button{cursor:default;color:#000}@media only screen and (min-width: 64em){.header__language-switcher.is-open button{width:auto;color:#fff;opacity:0.4}}body.nav-is-open .header__language-switcher.is-open .header__language-switcher--option{background-color:rgba(0,0,0,0)}@media only screen and (min-width: 64em){body.nav-is-open .header__home{justify-content:space-between}}body.nav-is-open .header__text--home-nav-open{display:flex}@media only screen and (min-width: 64em){body.nav-is-open .header__nav-wrapper{padding-right:var(--scrollbar-width)}}.main-nav{display:flex;padding-left:2rem;margin:auto 0 6rem}@media only screen and (min-width: 64em){.main-nav{padding-left:4rem}}.main-nav__wrapper{padding-top:6rem;position:fixed;display:flex;flex-flow:column nowrap;top:0;left:50%;transform:translateX(-50%);width:100vw;max-width:calc(256rem - 2px);height:100dvh;background-color:#eceadd;z-index:12;visibility:hidden;overflow-y:auto;overflow-x:hidden;opacity:0;transition:opacity 0.1s ease, visibility 0.1s ease;transition:opacity var(--main-nav-transition-time) ease, visibility var(--main-nav-transition-time) ease}@media only screen and (min-width: 64em){.main-nav__wrapper{padding-top:0;display:grid;grid-template-columns:50% 50%}}.main-nav__primary{display:flex;flex-flow:column nowrap;margin-top:auto;width:100%}.main-nav__secondary{position:relative;max-height:100svh}.main-nav__image{position:absolute;top:0;bottom:0;left:0;right:calc(var(--scrollbar-width)*-1)}.main-nav__image img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.main-nav__info-row a{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.main-nav__info-row a{color:#000;-webkit-text-decoration:none;text-decoration:none}.main-nav__info-row a:hover{color:rgba(0,0,0,.7)}.main-nav__info-row{display:flex;flex-flow:row nowrap;justify-content:space-between}.main-nav__info-row>span{border-top:1px solid #000;padding:1.2rem 0 1rem 2rem}@media only screen and (min-width: 64em){.main-nav__info-row{border-top:1px solid #000;padding:1.8rem 0}.main-nav__info-row>span{border:none;padding:0}.main-nav__info-row>:first-child{padding-left:4rem}.main-nav__info-row>:last-child{padding-right:4rem}}.main-nav__info-row--legal,.main-nav__info-row--contact{display:flex;flex-flow:column nowrap}@media only screen and (min-width: 64em){.main-nav__info-row--legal,.main-nav__info-row--contact{flex-flow:row nowrap}}.main-nav__info-row--legal{flex-flow:column-reverse nowrap}@media only screen and (min-width: 64em){.main-nav__info-row--legal{flex-flow:row nowrap}}.main-nav.is-initialized{display:flex}.main-nav ul{list-style:none;padding:0;margin:0}.main-nav ul>li:not(:first-child){padding-top:1rem}@media only screen and (min-width: 64em){.main-nav ul>li:not(:first-child){padding-top:3.1rem}}@media only screen and (min-width: 64em){.main-nav ul>li:first-child{margin-top:13rem}}.main-nav ul a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4rem;line-height:140%;letter-spacing:-0.5%;font-weight:400}.main-nav ul a{display:block;color:#000;-webkit-text-decoration:none;text-decoration:none}.main-nav ul a:hover{color:rgba(0,0,0,.7)}@media only screen and (min-width: 64em){.main-nav ul a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:6.8rem;line-height:130%;font-weight:400;letter-spacing:-1%}}.main-nav__toggle-button{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.main-nav__toggle-button{position:relative;color:#000;background-color:rgba(0,0,0,0);border:none;margin-right:0}@media only screen and (min-width: 64em){.main-nav__toggle-button{margin-right:0;padding:.9rem 3.2rem 1.2rem;border-radius:2.4rem;border:1px solid #000;cursor:pointer;transition:background-color 0.1s ease, color 0.1s ease;transition:background-color var(--main-nav-transition-time) ease, color var(--main-nav-transition-time) ease}}@media only screen and (min-width: 64em){.main-nav__toggle-button span{transform:translateY(0.2rem)}}.main-nav__toggle-button .main-nav__burger{display:block;width:1.8rem;height:1.2rem;position:relative;cursor:pointer}.main-nav__toggle-button .main-nav__burger span{display:block;position:absolute;height:2px;width:100%;background:#000;opacity:1;left:0;transform:rotate(0deg);transition:.15s ease-in-out}.main-nav__toggle-button .main-nav__burger span:nth-child(1){top:0px}.main-nav__toggle-button .main-nav__burger span:nth-child(2),.main-nav__toggle-button .main-nav__burger span:nth-child(3){top:.5rem;width:80%}.main-nav__toggle-button .main-nav__burger span:nth-child(4){top:1rem;width:60%}@media only screen and (min-width: 64em){.main-nav__toggle-button .main-nav__burger{display:none}}@media only screen and (min-width: 64em){.main-nav__toggle-button[aria-expanded=true]{color:#fff;background-color:#000}}.main-nav__toggle-button[aria-expanded=true] .main-nav__burger span:nth-child(1){top:8px;width:0%;left:50%}.main-nav__toggle-button[aria-expanded=true] .main-nav__burger span:nth-child(2){transform:rotate(45deg);width:100%}.main-nav__toggle-button[aria-expanded=true] .main-nav__burger span:nth-child(3){width:100%;transform:rotate(-45deg)}.main-nav__toggle-button[aria-expanded=true] .main-nav__burger span:nth-child(4){top:8px;width:0%;left:50%}@media only screen and (min-width: 64em){.main-nav__toggle-button[aria-expanded=false]::before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to right, #f2f2f2, #f2f2f2);background-size:0% 100%;background-repeat:no-repeat;transition:background-size 0.2s ease-out;transition:background-size var(--button-animation-time) ease-out;border-radius:2.3rem;z-index:-1}}@media only screen and (min-width: 64em){.main-nav__toggle-button[aria-expanded=false]:hover:before{background-size:100% 100%}}body.nav-is-open .main-nav__wrapper{visibility:visible;opacity:1;scrollbar-gutter:stable;overflow-x:hidden}body.nav-is-open .main-nav__secondary{overflow-x:visible}body.nav-is-open{overflow-y:hidden}body.nav-is-open .header__wrapper--default,body.nav-is-open .header__wrapper--home{background-color:rgba(0,0,0,0)}@media only screen and (min-width: 64em){body.nav-is-open .header__wrapper--default{border-bottom-color:rgba(0,0,0,0);border-bottom-width:0}}.footer{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}@media only screen and (min-width: 160.0625em){.footer{border-left:1px solid #000;border-right:1px solid #000}}.footer{display:flex;flex-flow:column nowrap;width:100%}.footer a{display:block;-webkit-text-decoration:none;text-decoration:none;color:#000}.footer a:hover{color:rgba(0,0,0,.7)}@media only screen and (min-width: 64em){.footer a{display:inline}}.footer ul{display:flex;flex-flow:column nowrap;list-style:none}@media only screen and (min-width: 64em){.footer ul{border-top:1px solid #000;display:grid;grid-template-rows:repeat(3, auto);grid-auto-flow:column}}.footer ul li{padding:1.1rem 1.5rem 1.1rem;border-top:1px solid #000}@media only screen and (min-width: 64em){.footer ul li{padding:1.9rem 0 1.7rem;text-align:center;border-top:none}}@media only screen and (min-width: 64em){.footer ul li:nth-child(-n+3){text-align:left;padding-left:4rem}.footer ul li:nth-last-child(-n+3){text-align:right;padding-right:4rem}.footer ul li:not(:nth-child(3n+1)){border-top:1px solid #000}}.footer__item--1{order:1}@media only screen and (min-width: 64em){.footer__item--1{order:1}}.footer__item--2{order:2}@media only screen and (min-width: 64em){.footer__item--2{order:1}}.footer__item--3{order:3}@media only screen and (min-width: 64em){.footer__item--3{order:1}}.footer__item--4{order:4}@media only screen and (min-width: 64em){.footer__item--4{order:1}}.footer__item--5{order:5}@media only screen and (min-width: 64em){.footer__item--5{order:1}}.footer__item--6{order:6}@media only screen and (min-width: 64em){.footer__item--6{order:1}}.footer__item--7{order:7}@media only screen and (min-width: 64em){.footer__item--7{order:1}}.footer__item--8{order:8}@media only screen and (min-width: 64em){.footer__item--8{order:1}}.footer__item--9{order:9}@media only screen and (min-width: 64em){.footer__item--9{order:1}}.error__title{max-width:105rem;margin:3rem 0 6rem}@media only screen and (min-width: 64em){.error__title{margin:4.5rem 0 6rem}}.error__title h1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 64em){.error__title h1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:10rem;line-height:100%;letter-spacing:-1%;font-weight:400}}.error__title h1 .button{transform:translateY(2.8rem)}@media only screen and (min-width: 64em){.error__title h1 .button{transform:translateY(-1.7rem)}}.error__wave{overflow-x:hidden}.error__wave--desktop{display:none}@media only screen and (min-width: 50em){.error__wave--desktop{display:block}}.error__wave--mobile{display:block}@media only screen and (min-width: 50em){.error__wave--mobile{display:none}}.content-text{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.content-text h1,.content-text h2,.content-text h3,.content-text h4{margin-bottom:.7em}.content-text p{text-wrap:pretty}.content-text p,.content-text ul,.content-text ol{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.content-text p:not(:last-child),.content-text ul:not(:last-child),.content-text ol:not(:last-child){margin-bottom:1em}.content-text ul{display:block;list-style-type:square;padding-left:2rem}.content-text ul li{margin-bottom:.4rem}.content-text ul li ul{margin-top:.4rem;list-style-type:circle}.content-text ul li ul li ul{list-style-type:disc}.content-text ul li::marker{font-size:1.8rem}.content-text ol{counter-reset:item;padding-left:3.1rem}.content-text ol li{margin-bottom:.4rem}.content-text ol li ol{margin-top:.4rem}.content-text ol>li{counter-increment:item}.content-text ol ol>li{display:block}.content-text ol ol>li:before{content:counters(item, ".") ". ";margin-left:-3.1rem}.content-text ol ol ol>li:before{content:counters(item, ".") ". ";margin-left:-4.5rem}.content-text a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400;color:#000;text-underline-offset:.6rem;text-decoration:underline;-webkit-text-decoration:dotted underline;text-decoration:dotted underline}@media only screen and (min-width: 75em){.content-text a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}.content-text a:hover{color:rgba(0,0,0,.8)}.content-text p[data-size=small]{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400;margin-bottom:.1em}.content-text p[data-size=small] a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}.content-text p[data-size=medium]{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}@media only screen and (min-width: 75em){.content-text p[data-size=medium] a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}@media only screen and (min-width: 75em){.content-text p[data-size=medium]{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}.content-text p[data-size=large]{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}@media only screen and (min-width: 75em){.content-text p[data-size=large] a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}@media only screen and (min-width: 75em){.content-text p[data-size=large]{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}.content-text p[data-size=xlarge]{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.content-text p[data-size=xlarge] a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 75em){.content-text p[data-size=xlarge] a{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}@media only screen and (min-width: 75em){.content-text p[data-size=xlarge]{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}.content-text--width-default{max-width:105rem}.content-text--width-wider{max-width:136rem}.button{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}@media(hover: none)and (pointer: coarse){.button{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}}.button{position:relative;display:inline-block;cursor:pointer;color:#000;-webkit-text-decoration:none;text-decoration:none;border:1px solid #000;padding:1.3rem 2.7rem 1rem 3.1rem;border-radius:2.3rem;background-color:inherit}.button::before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to right, #f2f2f2, #f2f2f2);background-size:0% 100%;background-repeat:no-repeat;transition:background-size 0.2s ease-out;transition:background-size var(--button-animation-time) ease-out;border-radius:2.3rem;z-index:-1}@media(hover: hover)and (pointer: fine){.button:hover::before{background-size:100% 100%}}.button--arrow::after{content:"";background-image:url(/assets/dist/ae6b46c37a418e27e61d.svg);background-size:100% 100%;background-position:center;display:inline-block;width:1.5rem;height:1.1rem;margin-left:1rem}a[href^=http]:not([href*="akman.at"])::after{background-image:url(/assets/dist/938bf61d43892242546e.svg);width:1.2rem;height:1.2rem}@media(hover: none)and (pointer: coarse){.button--arrow::after{transition:transform .1s ease}.button--arrow:active::after{transform:translateX(0.5rem)}}.page__title{margin:3.2rem 0 2.5rem}@media only screen and (min-width: 75em){.page__title{margin:4.5rem 0 9rem}}.page__title--80{margin:3.2rem 0 2.5rem}@media only screen and (min-width: 64em){.page__title--80{margin:5.2rem 0 6rem}}.page__title--130{margin:3.2rem 0 2.5rem}@media only screen and (min-width: 75em){.page__title--130{margin:5.2rem 0 13rem}}.page__title--280{margin:3.2rem 0 2.5rem}@media only screen and (min-width: 75em){.page__title--280{margin:5.2rem 0 28rem}}.block-form .choices[data-type*=select-one] .choices__inner{padding-bottom:0}.block-form .choices.is-open .choices__placeholder{color:#000;opacity:.6}.block-form .is-focused .choices__inner{border-color:#000}.block-form .is-open .choices__list--dropdown,.block-form .is-open .choices__list[aria-expanded]{border-color:#000}.block-form .choices{display:inline-flex;margin:0;padding:0;background:rgba(0,0,0,0);position:relative;margin-bottom:0;padding-right:1rem}.block-form .choices:after{display:none}.block-form .choices__inner{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4rem;line-height:140%;letter-spacing:-0.5%;font-weight:400}.block-form .choices__inner{display:inline-flex;width:auto;background:url(/assets/dist/b9592417fceb0f52fa0f.svg) no-repeat right 0 center/1.6rem auto;background-color:rgba(0,0,0,0);color:#000;padding:0 2rem 0 0;border:0;border-bottom:1px solid #000;border-radius:0;text-overflow:ellipsis;min-height:0;min-height:initial}@media only screen and (min-width: 50em){.block-form .choices__inner{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}@media only screen and (min-width: 75em){.block-form .choices__inner{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:6.8rem;line-height:130%;font-weight:400;letter-spacing:-1%}}.block-form .choices__list--single{padding:0 1.6rem 0 0}.block-form .choices__placeholder{color:#dddac5;opacity:1;opacity:initial}.block-form .choices__list--dropdown .choices__item{border-bottom:1px solid #000}.block-form .choices__list--dropdown .choices__item:last-of-type{border-bottom:none}.block-form #choices--legal_topic-item-choice-1,.block-form #choices--client_type-item-choice-1{display:none}.block-form .choices__list--dropdown .choices__list,.block-form .choices__list[aria-expanded] .choices__list{position:relative;max-height:100%;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.block-form .choices__list--dropdown .choices__item--selectable.is-highlighted,.block-form .choices__list[aria-expanded] .choices__item--selectable.is-highlighted{background-color:rgba(0,0,0,0);color:rgba(0,0,0,.6)}.block-form .choices__list--dropdown .choices__item,.block-form .choices__list[aria-expanded] .choices__item{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.block-form .choices__list--dropdown .choices__item,.block-form .choices__list[aria-expanded] .choices__item{color:#dddac5}@media only screen and (min-width: 64em){.block-form .choices__list--dropdown .choices__item,.block-form .choices__list[aria-expanded] .choices__item{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4rem;line-height:140%;letter-spacing:-0.5%;font-weight:400}}.block-form .choices__list--dropdown .choices__item.is-selected,.block-form .choices__list[aria-expanded] .choices__item.is-selected{color:#000}.block-form .choices__list--dropdown,.block-form .choices__list[aria-expanded]{word-break:inherit;z-index:10}.block-form .choices__list--dropdown,.block-form .choices__list[aria-expanded]{max-width:calc(100vw - 4.4rem);width:-moz-fit-content;width:fit-content;min-width:100%}@media only screen and (min-width: 50em){.block-form .choices__list--dropdown,.block-form .choices__list[aria-expanded]{white-space:nowrap}}@media only screen and (min-width: 50em){.block-form .choices__item--selectable{overflow:hidden;text-overflow:ellipsis}}.block-form .choices__list--single .choices__item{max-width:12ch;width:auto;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}@media only screen and (min-width: 50em){.block-form .choices__list--single .choices__item{max-width:17ch}}.block-form:has(.choices__list--single .choices__item[data-value=""]) button[data-next-step="2"]{opacity:.3;pointer-events:none}.block-form__form-page div:focus{box-shadow:0 0 0 3px rgba(59,130,246,.9)}.privacy-policy-banner{position:fixed;top:0;right:0;bottom:0;left:0;align-items:center;justify-content:center;z-index:99999;display:flex}.privacy-policy-banner[hidden]{display:none}.privacy-policy-banner__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.5);backdrop-filter:blur(10px)}.privacy-policy-banner__content{width:min(68rem,92vw);max-height:90vh;position:relative;background:#fff;padding:1.5rem}@media only screen and (min-width: 75em){.privacy-policy-banner__content{padding:3rem}}.privacy-policy-banner__title{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:500}.privacy-policy-banner__title{margin-bottom:1rem}.privacy-policy-banner__text{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}.privacy-policy-banner__text{margin-bottom:3rem}.privacy-policy-banner__actions{display:flex;flex-direction:column;gap:1rem}@media only screen and (min-width: 50em){.privacy-policy-banner__actions{flex-direction:row;justify-content:space-between;gap:1.5rem}}.privacy-policy-modal{position:fixed;top:0;right:0;bottom:0;left:0;display:none;align-items:center;justify-content:center;z-index:99999;padding:2rem}.privacy-policy-modal[aria-hidden=false]{display:flex}.privacy-policy-modal__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.5);backdrop-filter:blur(10px)}.privacy-policy-modal__content{position:relative;background:#fff;padding:1.5rem;width:min(68rem,92vw);max-height:90vh;overflow-y:auto}@media only screen and (min-width: 50em){.privacy-policy-modal__content{padding:2rem}}@media only screen and (min-width: 75em){.privacy-policy-modal__content{padding:3rem}}.privacy-policy-modal__title{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:500}.privacy-policy-modal__title{margin-bottom:1rem}.privacy-policy-modal__description{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}.privacy-policy-modal__description{margin-bottom:3rem}.privacy-policy-modal__categories{margin-bottom:3rem}.privacy-policy-modal__category{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:1rem;border-top:1px solid #dddac5;padding:1.5rem 0}.privacy-policy-modal__category:first-child{border-top:none;padding-top:0}@media only screen and (min-width: 50em){.privacy-policy-modal__category{justify-content:space-between;gap:0;padding:2rem 0}}.privacy-policy-modal__category-info{flex:1}.privacy-policy-modal__category-title{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:500}.privacy-policy-modal__category-title{display:block;margin-bottom:.4rem}.privacy-policy-modal__category-description{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}.privacy-policy-modal__category-description{display:block}.privacy-policy-modal__checkbox{margin-left:0;width:1.8rem;height:1.8rem;cursor:pointer}.privacy-policy-modal__checkbox:disabled{cursor:not-allowed}@media only screen and (min-width: 50em){.privacy-policy-modal__checkbox{align-self:flex-end;margin-left:2rem}}.privacy-policy-modal__actions{display:flex;gap:1rem;flex-direction:column-reverse}@media only screen and (min-width: 50em){.privacy-policy-modal__actions{gap:.8rem;flex-direction:row;justify-content:flex-end}}.privacy-policy-badge{position:fixed;cursor:pointer;bottom:1rem;right:1rem;z-index:99997;background:#fff;display:flex;align-items:center;justify-content:center;padding:0;padding:initial;border:none}.privacy-policy-badge[hidden]{display:none}.privacy-policy-badge:focus{outline:2px solid #00a3e8;outline-offset:2px}@media only screen and (min-width: 31.25em){.privacy-policy-badge{align-items:center}}@media only screen and (min-width: 50em){.privacy-policy-badge{bottom:2rem}}.privacy-policy-badge__icon{flex-shrink:0;width:2.8rem;height:2.8rem;display:flex;align-items:center;justify-content:center}@media only screen and (min-width: 31.25em){.privacy-policy-badge__icon{width:4rem;height:4rem}}.privacy-policy-badge__svg{width:100%;height:100%;fill:#000}.privacy-policy-badge__text{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.privacy-policy-badge__text{display:none;color:#000;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (min-width: 50em){.privacy-policy-badge__text{display:block;width:0;overflow:visible;visibility:hidden;opacity:0}}.privacy-policy-badge:hover{padding:0;padding:initial;padding:1.3rem 3.1rem 1rem 3.1rem;border:1px solid #000}@media only screen and (min-width: 31.25em){.privacy-policy-badge:hover .privacy-policy-badge__icon{width:2rem;height:2rem;margin-right:.8rem}}@media only screen and (min-width: 50em){.privacy-policy-badge:hover .privacy-policy-badge__text{visibility:visible;opacity:1;width:100%;transition:width 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;transition:width var(--button-animation-time) ease-in-out, opacity var(--button-animation-time) ease-in-out, visibility var(--button-animation-time) ease-in-out}}.block-wave{position:relative}.block-wave::after{content:"";position:absolute;bottom:0;left:0;width:100%;height:1px;background-color:#000}@media only screen and (min-width: 50em){.block-wave::after{content:none}}@media only screen and (min-width: 50em){.block-wave{border-bottom:none}}.block-wave__wrapper{margin-bottom:3rem}@media only screen and (min-width: 50em){.block-wave__wrapper{margin-bottom:0}}.block-wave--dynamic{overflow-x:hidden;overflow-y:visible;width:100%}.block-wave--dynamic-desktop{display:none}.block-wave--dynamic-desktop svg{margin:22.5rem 0}@media only screen and (min-width: 50em){.block-wave--dynamic-desktop{display:block;min-height:69.2rem}}.block-wave--dynamic-mobile{display:block}.block-wave--dynamic-mobile svg{margin:8.5rem 0}@media only screen and (min-width: 50em){.block-wave--dynamic-mobile{display:none}}.block-wave--static{overflow-x:hidden;width:100%}.block-wave--static-desktop{display:none}.block-wave--static-desktop svg{margin:2rem 0 14rem}@media only screen and (min-width: 50em){.block-wave--static-desktop{display:block}}.block-wave--static-mobile{display:block}.block-wave--static-mobile svg{margin:2rem 0 12rem}@media only screen and (min-width: 50em){.block-wave--static-mobile{display:none}}.block-images{display:flex;flex-flow:column nowrap;gap:2.4rem}.block-images__wrapper{margin-bottom:2.5rem;border-bottom:1px solid #000}@media only screen and (min-width: 31.25em){.block-images__wrapper{margin-bottom:31.5rem}}.block-images__wrapper--0{margin-bottom:0}.block-images__wrapper--330{margin-bottom:2.5rem}@media only screen and (min-width: 31.25em){.block-images__wrapper--330{margin-bottom:31.5rem}}@media only screen and (min-width: 31.25em){.block-images__slider-wrapper{margin:0}}.block-images__slider{display:flex;flex-flow:row nowrap}@media only screen and (min-width: 31.25em){.block-images__slider{gap:1.9rem}}@media only screen and (min-width: 31.25em){.block-images__slider picture{width:calc((100% - 3.8rem)/3)}}.block-images__slider img{width:100%;aspect-ratio:2/3;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 31.25em){.block-images__slider img{max-width:none;max-width:initial}}.block-images__slider .swiper-slide{max-width:79%}@media only screen and (min-width: 31.25em){.block-images__slider .swiper-slide{max-width:100%}}.block-text__wrapper--70{margin-bottom:7rem}@media only screen and (min-width: 64em){.block-text__wrapper--70{margin-bottom:7rem}}.block-text__wrapper--180{margin-bottom:12rem}@media only screen and (min-width: 64em){.block-text__wrapper--180{margin-bottom:13rem}}@media only screen and (min-width: 75em){.block-text__wrapper--180{margin-bottom:18rem}}.block-text__wrapper--240{margin-bottom:12rem}@media only screen and (min-width: 64em){.block-text__wrapper--240{margin-bottom:13rem}}@media only screen and (min-width: 75em){.block-text__wrapper--240{margin-bottom:24rem}}.block-text__wrapper--400{margin-bottom:12rem}@media only screen and (min-width: 64em){.block-text__wrapper--400{margin-bottom:20rem}}@media only screen and (min-width: 75em){.block-text__wrapper--400{margin-bottom:40rem}}.block-text__wrapper--border-top{padding-top:2.5rem;border-top:1px solid #000}@media only screen and (min-width: 75em){.block-text__wrapper--border-top{padding-top:4.5rem}}.block-text__wrapper--border-top-mobile{padding-top:2.5rem;border-top:1px solid #000}@media only screen and (min-width: 75em){.block-text__wrapper--border-top-mobile{padding-top:0;border-top:none}}.block-text__title{margin-bottom:2.5rem}@media only screen and (min-width: 50em){.block-text__title{margin-bottom:1.9rem}}.block-text__button{margin-top:3rem}.block-grid-slider__wrapper{margin-bottom:4rem}.block-grid-slider__grid{display:flex;align-items:stretch}.block-grid-slider__grid>:last-child{padding-right:2rem}@media only screen and (min-width: 50em){.block-grid-slider__grid{display:grid;grid-template-columns:50% 50%;border-bottom:1px solid #000}.block-grid-slider__grid>:nth-child(2n+1){border-right:1px solid #000}.block-grid-slider__grid>:last-child{padding-right:0}}.block-grid-slider__grid .swiper-slide{max-width:79%;height:auto}@media only screen and (min-width: 50em){.block-grid-slider__grid .swiper-slide{max-width:100%}}.block-grid-slider__item-wrapper{border-top:0;border-top:initial}@media only screen and (min-width: 50em){.block-grid-slider__item-wrapper{border-top:1px solid #000;min-height:32rem}}@media only screen and (min-width: 75em){.block-grid-slider__item-wrapper{min-height:62rem}}.block-grid-slider__item{display:flex;flex-flow:column nowrap;padding:0 0 0 2rem}@media only screen and (min-width: 50em){.block-grid-slider__item{padding:2rem 2rem}}@media only screen and (min-width: 64em){.block-grid-slider__item{padding:2.3rem 4rem}}.block-grid-slider__item-title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.block-grid-slider__item-title{margin-bottom:1.6rem}@media only screen and (min-width: 75em){.block-grid-slider__item-title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}.block-grid-slider__controls{display:flex;justify-content:space-between;align-items:center;padding:0 2rem;margin-top:10rem}@media only screen and (min-width: 50em){.block-grid-slider__controls{display:none}}.block-grid-slider__index{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.block-grid-slider__buttons{display:flex;gap:1.5rem}.block-grid-slider__button{background-size:1.5rem 1.1rem;background-repeat:no-repeat;background-position:center;display:inline-block;width:5rem;height:5rem;border:1px solid #000;border-radius:50%}.block-grid-slider__button svg{width:1.5rem;height:1.1rem}.block-grid-slider__button--next{content:"";background-image:url(/assets/dist/ae6b46c37a418e27e61d.svg)}.block-grid-slider__button--prev{content:"";background-image:url(/assets/dist/5deacd9456f64014365c.svg)}@media(hover: none)and (pointer: coarse){.block-grid-slider__button--next,.block-grid-slider__button--prev{transition:background-position .1s ease}.block-grid-slider__button--next:active{background-position:left 2rem bottom 50%}.block-grid-slider__button--prev:active{background-position:right 2rem bottom 50%}}.block-grid{display:grid;grid-template-columns:repeat(2, 50%)}.block-grid>:nth-child(2n+1){border-right:1px solid #000}.block-grid>*{border-bottom:1px solid #000}@media only screen and (min-width: 64em){.block-grid{grid-template-columns:repeat(3, 33.333%)}.block-grid>:nth-child(2n+1){border-right:0;border-right:initial}.block-grid>:nth-child(3n+1),.block-grid>:nth-child(3n+2){border-right:1px solid #000}}.block-grid a{-webkit-text-decoration:none;text-decoration:none;color:#000}.block-grid a:hover{color:rgba(0,0,0,.8)}.block-grid__wrapper{border-top:1px solid #000;margin-bottom:2rem}.block-grid__item{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}.block-grid__item{position:relative;padding:1rem 2rem;min-height:13.8rem}.block-grid__item::after{content:"";position:absolute;background-image:url(/assets/dist/ae6b46c37a418e27e61d.svg);background-size:100% 100%;background-position:center;display:inline-block;width:1.5rem;height:1.1rem;bottom:2.1rem;right:2rem;transform:translateX(0);transition:transform .3s ease}@media(hover: hover)and (pointer: fine){.block-grid__item:hover::after{transform:translateX(-2rem)}}@media only screen and (hover: hover)and (pointer: fine)and (min-width: 64em){.block-grid__item:hover::after{transform:translateX(0.5rem)}}@media(hover: none)and (pointer: coarse){.block-grid__item::after{transform:translateX(0);transition:transform .1s ease}.block-grid__item:active::after{transform:translateX(0.5rem)}}@media only screen and (min-width: 50em){.block-grid__item{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.block-grid__item{padding:2.3rem 4rem;min-height:25rem}}@media only screen and (min-width: 75em){.block-grid__item{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}.block-grid__item{min-height:42.5rem}.block-grid__item::after{right:4.8rem;bottom:4.2rem}}.block-grid__item-title{hyphens:auto}.block-grid-btn{display:grid;grid-template-columns:1fr;border-top:1px solid #000}@media only screen and (min-width: 64em){.block-grid-btn{grid-template-columns:repeat(2, 50%)}}@media only screen and (min-width: 64em){.block-grid-btn>:nth-child(2n+1){border-right:1px solid #000}}.block-grid-btn>*{border-bottom:1px solid #000}.block-grid-btn__item{padding:3rem 2rem}@media only screen and (min-width: 64em){.block-grid-btn__item{padding:2.5rem 4rem}}.block-grid-btn__item-content{display:flex;flex-flow:row nowrap;gap:1rem;justify-content:space-between}@media only screen and (min-width: 64em){.block-grid-btn__item-content{justify-content:flex-start;gap:2rem}}.block-grid-btn__item-title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.block-grid-btn__item-title{margin-bottom:2.4rem}@media only screen and (min-width: 75em){.block-grid-btn__item-title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}.block-grid-btn__item-description{min-width:calc(50% - 2rem);padding-bottom:.5rem}@media only screen and (min-width: 75em){.block-grid-btn__item-description{padding-bottom:15.5rem}}.block-text-image__wrapper{margin-bottom:2rem}@media only screen and (min-width: 64em){.block-text-image__wrapper{border-bottom:1px solid #000}}.block-text-image__page-title{margin:3.2rem 0 3rem}@media only screen and (min-width: 64em){.block-text-image__page-title{margin:5.2rem 0 6rem}}.block-text-image__item{display:flex;flex-flow:column nowrap;border-bottom:1px solid #000}@media only screen and (min-width: 50em){.block-text-image__item{flex-flow:row nowrap;border-bottom:none}}.block-text-image__item-content{margin:0 2rem}@media only screen and (min-width: 64em){.block-text-image__item-content{margin:0 0 0 4rem}}.block-text-image__item-title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 75em){.block-text-image__item-title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}.block-text-image__item-title{margin-bottom:1.2rem}.block-text-image__item-title--mobile{margin-bottom:2.5rem}.block-text-image__item-text--mobile{margin-bottom:8rem}.block-text-image__item-title--dektop,.block-text-image__item-text--dektop{display:none}@media only screen and (min-width: 50em){.block-text-image__item-title--dektop,.block-text-image__item-text--dektop{display:block}}.block-text-image__item-title--mobile,.block-text-image__item-text--mobile{display:block;padding:0 2rem}@media only screen and (min-width: 50em){.block-text-image__item-title--mobile,.block-text-image__item-text--mobile{display:none}}.block-text-image__item-image{width:auto;min-width:32.5%;margin-bottom:2.5rem}@media only screen and (min-width: 50em){.block-text-image__item-image{margin-left:4rem;margin-bottom:0}}.block-text-image__item-image img{width:100%;height:auto;aspect-ratio:2/3}.block-form{min-height:100dvh;display:flex;flex-flow:column nowrap;justify-content:space-between}.block-form__title{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}.block-form__title{margin:3.4rem 0}@media only screen and (min-width: 50em){.block-form__title{margin:2.7rem 0}}.block-form__form-page--1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4rem;line-height:140%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 50em){.block-form__form-page--1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4.8rem;line-height:140%;font-weight:400;letter-spacing:-0.5%}}@media only screen and (min-width: 75em){.block-form__form-page--1{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:6.8rem;line-height:130%;font-weight:400;letter-spacing:-1%}.block-form__form-page--1{max-width:180rem}}.block-form__form-page--2{margin-top:6rem}.block-form__form-page--hidden{display:none}.block-form__form-page--spans-hidden span{display:none}@media only screen and (min-width: 50em){.block-form__form-page--spans-hidden span{display:inline}}.block-form__form-page-footer{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:1%;font-weight:400}.block-form__form-page-footer{display:flex;flex-flow:row nowrap;justify-content:space-between;margin:4rem 0}.block-form__form-page-footer--hidden{display:none}.block-form__confirmation{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}@media only screen and (min-width: 64em){.block-form__confirmation{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:4rem;line-height:140%;letter-spacing:-0.5%;font-weight:400}}@media only screen and (min-width: 75em){.block-form__confirmation{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:6.8rem;line-height:130%;font-weight:400;letter-spacing:-1%}}.block-form__confirmation{color:#000}.block-form:has(input:invalid) button[data-next-step="3"]{opacity:.3;pointer-events:none}.block-form__form-error{font-family:"Lay Grotesk Medium","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:500;color:#f66413;margin-bottom:.4rem}.block-form__form-error--hidden{visibility:hidden}.block-form__form-line{border-bottom:1px solid #000}.block-form__form-line--error{border-bottom:2px solid #f66413}.block-form__form-line--error .block-form__form-input{color:#f66413}.block-form__form-line--error .block-form__form-label{color:#f66413}.block-form__form-line:has(input:invalid:not(:focus):not(:-moz-placeholder)){border-bottom:2px solid #f66413}.block-form__form-line:has(input:invalid:not(:focus):not(:placeholder-shown)){border-bottom:2px solid #f66413}.block-form__form-line:has(input:invalid:not(:focus):not(:-moz-placeholder)) input, .block-form__form-line:has(input:invalid:not(:focus):not(:-moz-placeholder)) label{color:#f66413}.block-form__form-line:has(input:invalid:not(:focus):not(:placeholder-shown)) input,.block-form__form-line:has(input:invalid:not(:focus):not(:placeholder-shown)) label{color:#f66413}.block-form__form-textarea-wrapper{display:flex}.block-form__form-textarea-wrapper label{margin:1.6rem 0}.block-form__form-textarea-wrapper textarea{margin-left:.4rem}.block-form__form-label{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:1.6rem;line-height:145%;letter-spacing:0%;font-weight:400}.block-form__form-label{display:inline-block;width:20%}@media only screen and (min-width: 50em){.block-form__form-label{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:2.6rem;line-height:130%;letter-spacing:-0.5%;font-weight:400;width:33%}}@media only screen and (min-width: 75em){.block-form__form-label{font-family:"Lay Grotesk Regular","Adjusted Arial Fallback",sans-serif;font-size:3.2rem;line-height:130%;letter-spacing:-0.5%;font-weight:400}}.block-form__form-input,.block-form__form-textarea{width:66%}.block-form textarea{resize:none}
