html.gsap-smoother-ready {
  scroll-behavior: auto;
}

html.gsap-smoother-ready,
html.gsap-smoother-ready body {
  min-height: 100%;
}

#smooth-wrapper {
  top: var(--gsap-header-offset, 0px) !important;
  height: calc(100% - var(--gsap-header-offset, 0px)) !important;
  overflow: hidden;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

.gsap-reveal {
  will-change: transform, opacity;
}

.gsap-parallax-media {
  will-change: transform;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}

.hero-bg-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-typeheadline span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.hero-typeword {
  white-space: nowrap;
}

.hero-typeword::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: heroTypeCursorBlink 0.85s steps(1) infinite;
}

@keyframes heroTypeCursorBlink {
  0%, 48% {
    opacity: 1;
  }
  49%, 100% {
    opacity: 0;
  }
}

.hero-priority-line {
  display: block;
}

@media (min-width: 640px) {
  .hero-priority-line {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.gsap-smoother-ready {
    scroll-behavior: smooth;
  }

  .gsap-reveal,
  .gsap-parallax-media {
    transform: none !important;
    opacity: 1 !important;
    will-change: auto;
  }

  .hero-typeword::after {
    animation: none;
  }
}
