html {
  height: auto;
}

:root {
  --animation-default-fast: 0.4s cubic-bezier(0.425, 0, 0, 1);
  --animation-default: 0.8s cubic-bezier(0.425, 0, 0, 1);
  --animation-default-speedup: 0.175s ease;
  --animation-default-contact: 0.8s cubic-bezier(0.625, 0.05, 0, 1);
  --border-radius-m: 1.125rem;
  --animation-default-fast-contact: 0.4s cubic-bezier(0.625, 0.05, 0, 1);
}

/* -- Global -- */

/* @media (min-width: 990px) {
        :root {
          --size: 1600;
        }
      
        html {
          height: auto !important;
          -ms-overflow-style: none;
          scrollbar-width: none;
          font-size: calc(15.8 * 100vw / var(--size));
          -webkit-text-size-adjust: none;
          -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
        }
      } */

/* -- Media -- */

@media only screen and (max-width: 1900px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 991px) {
  .hero_marquee-line.is--first .hero_marquee-list {
    animation: marqueeX 17s linear infinite !important;
    will-change: transform;
  }

  .hero_marquee-line.is--last .hero_marquee-list {
    animation: marqueeXRev 17s linear infinite !important;
    will-change: transform;
  }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 479px) {
}

@media (min-width: 990px) {
  .swiper-wrapper.is--results {
    animation: marqueeX 30s linear infinite;
    will-change: transform;
  }

  /* Pause animation on hover */
  .swiper-wrapper.is--results:hover,
  .swiper-wrapper.is--results.paused {
    animation-play-state: paused;
  }

  /*Hero Marquee*/

  .hero_marquee-line.is--first .hero_marquee-list {
    animation: marqueeY 30s linear infinite;
    will-change: transform;
  }

  .hero_marquee-line.is--last .hero_marquee-list {
    animation: marqueeYRev 30s linear infinite;
    will-change: transform;
  }

  /* Buttons */

  .button {
    transition: all 250ms ease;
  }

  .button:hover {
    scale: 1.03;
  }
}

/* -- Keyframe Animations -- */

@keyframes marqueeX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marqueeXRev {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes marqueeY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marqueeYRev {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 991px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes marqueeRev {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
}

/* Accordions */

.faq_accordion .icon.faq-plus {
  display: flex;
}

.faq_accordion .icon.faq-minus {
  display: none;
}

.faq_accordion.is-active-accordion .icon.faq-plus {
  display: none;
}

.faq_accordion.is-active-accordion .icon.faq-minus {
  display: flex;
}

/* Video Container */

[video-container-enabled="false"] {
}

[video-container-enabled="true"] {
  position: relative;
}

[video-container-enabled="true"]::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  transition: all 400ms ease;
  z-index: 20;
  pointer-events: auto;
}

[video-popup="player"] {
  object-fit: cover;
}

/* Video Popup */

[video-popup-container] {
  transition: all 350ms ease;
  display: flex;
}

[video-popup-close] {
  transition: all 350ms ease;
}

[video-popup-player] {
  transition: all 350ms ease;
}

[video-popup-container].is--close {
  pointer-events: none;
}

[video-popup-container].is--close [video-popup-close] {
  opacity: 0;
}

[video-popup-container].is--close [video-popup-player] {
  opacity: 0;
  transform: translateY(1.5rem);
}

[video-popup-container].is--open {
  pointer-events: auto;
}

[video-popup-container].is--open [video-popup-close] {
  opacity: 0.4;
}

[video-popup-container].is--open [video-popup-player] {
  opacity: 1;
  transform: translateY(0rem);
}

/* [fs-accordion-element="accordion"]:nth-child(1) {
  display: none;
}

[fs-accordion-element="accordion"]:nth-child(2) {
  display: none;
} */

.faq_answer {
  display: none;
}
