section.hero {
  position: relative;
  background-color: var(--background);
}
section.hero .hero-wrapper {
  display: -ms-grid;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
}
section.hero .btn {
  margin-top: 1.25rem;
}
section.hero .hero-image {
  position: relative;
  display: block;
  z-index: 0;
  pointer-events: none;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  will-change: transform;
}
section.hero .hero-image img,
section.hero .hero-image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
section.hero .hero-image .hero-media--scaled {
  border-radius: 4px;
  overflow: hidden;
}
section.hero .text-block {
  position: relative;
  background: var(--background);
  z-index: 1;
  padding-top: clamp(160px, 12vw, 250px);
  padding-bottom: clamp(40px, 8vw, 120px);
}
section.hero .text-block h1 {
  font-size: 5vw;
  line-height: 1.1;
  -ms-hyphens: auto;
      hyphens: auto;
}
@container main (min-width: 85.4375rem) {
  section.hero .text-block h1 {
    font-size: 3vw;
  }
}
@container main (min-width: 48rem) and (max-width: 64rem) {
  section.hero .text-block h1 {
    font-size: 5rem;
  }
}
@container main (max-width: 47.9375rem) {
  section.hero .text-block h1 {
    font-size: 2.5rem;
  }
}
section.hero .image-placeholder,
section.hero .content-pusher {
  display: none !important;
}