/**
 * Swiper 12.1.3
 * 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: March 24, 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 */

.stacked-email-list{margin-top:4rem}@media print,screen and (min-width: 64.0625em){.stacked-email-list{margin-top:10rem}}.stacked-email-list__item{border-top:hsla(0,0%,100%,.15) 0.125rem solid;padding:2.5rem 0}@media print,screen and (min-width: 64.0625em){.stacked-email-list__item{padding:3.75rem 0}}.stacked-email-list__trigger{display:inline-block;margin:1.5rem 0 1.375rem;position:relative;white-space:nowrap}@media print,screen and (min-width: 64.0625em){.stacked-email-list__trigger{margin:0}}.stacked-email-list__trigger::after{background-color:var(--color-full);content:"";height:2.875rem;left:98%;mask-image:url("../images/icons/arrow_outward.svg");mask-position:center;mask-repeat:no-repeat;position:absolute;width:2.875rem}@media print,screen and (min-width: 64.0625em){.stacked-email-list__trigger::after{left:100%}}.stacked-email-list__copy{height:1.125rem;position:relative;width:1.125rem}.stacked-email-list__copy.is-active .stacked-email-list__copy-text{opacity:1;visibility:visible}.stacked-email-list__copy::after{background-color:var(--color-full);content:"";height:100%;mask-image:url("../images/icons/copy.svg");mask-position:center;mask-repeat:no-repeat;position:absolute;width:100%}.stacked-email-list__copy-text{color:#fff;cursor:default;left:100%;margin-left:0.5rem;opacity:0;pointer-events:none;position:absolute;top:50%;transform:translateY(-64%);transition:all 200ms ease-in-out;user-select:none;visibility:hidden}@media print,screen and (min-width: 64.0625em){.stacked-email-list__copy-text{left:auto;margin-left:0;margin-right:0.5rem;right:100%}}.stacked-email-list .cell{align-items:center}@media print,screen and (min-width: 64.0625em){.stacked-email-list .cell{display:flex}}@media print,screen and (min-width: 64.0625em){.stacked-email-list .cell.justify-center{justify-content:center}}.page-header-standard{overflow:hidden;padding-bottom:64px;padding-top:13.4375rem;position:relative}@media print,screen and (min-width: 48em){.page-header-standard{padding-bottom:160px;padding-top:14.5625rem}}.page-header-standard.is-preview{background-color:#755ef4;color:#fff}.page-header-standard .mp4-video{aspect-ratio:16/9;border-radius:0.625rem;overflow:hidden}.page-header-standard video{aspect-ratio:16/9;display:block;width:100%}.page-header-standard__title{overflow-x:clip}.page-header-standard__title .kf-clip-reveal-up:nth-child(1)>span{animation-delay:0s}.page-header-standard__title .kf-clip-reveal-up:nth-child(2)>span{animation-delay:0.2s}.page-header-standard__title .kf-clip-reveal-up:nth-child(3)>span{animation-delay:0.4s}.page-header-standard__title .kf-clip-reveal-up:nth-child(4)>span{animation-delay:0.6s}.page-header-standard__title .kf-clip-reveal-up:nth-child(5)>span{animation-delay:0.8s}.page-header-standard__title .kf-clip-reveal-up:nth-child(6)>span{animation-delay:1s}.page-header-standard__title .kf-clip-reveal-up:nth-child(7)>span{animation-delay:1.2s}.page-header-standard__title .kf-clip-reveal-up:nth-child(8)>span{animation-delay:1.4s}.page-header-standard__title .kf-clip-reveal-up:nth-child(9)>span{animation-delay:1.6s}.page-header-standard__title .kf-clip-reveal-up:nth-child(10)>span{animation-delay:1.8s}.page-header-standard__title-media{animation:video-reveal 1.1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards 1.3s;display:inline-block;position:relative}@media print,screen and (min-width: 48em){.page-header-standard__title-media{margin-left:-135px}}@media print and (min-width: 768px),screen and (min-width: 48em)and (min-width: 768px){.page-header-standard__title-media{margin-left:clamp(-135px,-12.6488095238vw - 37.8571428571px,-220px)}}@media print and (min-width: 1440px),screen and (min-width: 48em)and (min-width: 1440px){.page-header-standard__title-media{margin-left:-220px}}.page-header-standard__title .mp4-video{display:none;height:66px}@media(min-width: 768px){.page-header-standard__title .mp4-video{height:clamp(66px,5.8035714286vw + 21.4285714286px,105px)}}@media(min-width: 1440px){.page-header-standard__title .mp4-video{height:105px}}@media print,screen and (min-width: 48em){.page-header-standard__title .mp4-video{display:block;overflow:hidden}}.page-header-standard__intro{padding-top:1.875rem}@media print,screen and (min-width: 48em){.page-header-standard__intro{padding-top:14.6875rem}}.page-header-standard__intro-body{padding-top:1.5rem}@media print,screen and (min-width: 48em){.page-header-standard__intro-body{padding-top:0}}.page-header-standard:has(.button) .page-header-standard__intro-body{margin-bottom:48px}@media print,screen and (min-width: 48em){.page-header-standard:has(.button) .page-header-standard__intro-body{margin-bottom:56px}}@media print,screen and (min-width: 64.0625em){.page-header-standard:has(.button) .page-header-standard__intro-body{margin-bottom:64px}}.page-header-standard__slider{opacity:0;overflow:hidden;padding-top:2rem;width:100%}@media print,screen and (min-width: 48em){.page-header-standard__slider{display:none}}.swiper-loaded .page-header-standard__slider,.page-header-standard__slider--1-videos{opacity:1}.page-header-standard__slider .swiper-wrapper{transition-timing-function:linear}@keyframes video-reveal{100%{margin-left:0}}
