.hero {
  position: relative;
  min-height: 100svh;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-video .hero__bg-img--fallback {
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 41, 58, 0.75) 0%, rgba(21, 41, 58, 0.2) 60%, rgba(21, 41, 58, 0) 100%);
}
@media (width <= 46.875rem) {
  .hero__overlay {
    background: linear-gradient(to right, rgb(21, 41, 58) 0%, rgba(21, 41, 58, 0.5) 60%, rgba(21, 41, 58, 0) 100%);
  }
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}
.hero__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero__heading {
  font-size: var(--font-size-h2-fluid);
  line-height: 1.05;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
}
.hero__subtext {
  font-size: var(--font-size-body);
  line-height: var(--lh-body);
  max-width: 65ch;
  margin: 0 0 2.25rem;
  color: var(--color-white);
}
.hero__subtext strong {
  color: var(--color-white);
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__video-popover {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
}
@media (width <= 62.499rem) {
  .hero__video-popover {
    display: none;
  }
}
.hero__video-btn {
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-white);
  transition: transform 0.3s ease;
}
@media (pointer: fine) {
  .hero__video-btn:hover {
    transform: translateY(-2px);
  }
  .hero__video-btn:hover .hero__video-tint {
    background-color: rgba(21, 41, 58, 0.35);
  }
  .hero__video-btn:hover .hero__video-play {
    transform: scale(1.1);
  }
}
.hero__video-btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}
.hero__video-thumb {
  position: relative;
  width: 8.8125rem;
  aspect-ratio: 141/200;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--color-navy);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.hero__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 394px;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero__video-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 41, 58, 0.4) 0%, rgba(21, 41, 58, 0.55) 60%, rgba(21, 41, 58, 0.75) 100%);
  transition: background-color 0.2s ease;
  pointer-events: none;
}
.hero__video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 0.75rem;
  text-align: center;
  pointer-events: none;
}
.hero__video-play {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white);
  transition: transform 0.2s ease;
}
.hero__video-eyebrow {
  font-family: var(--font-label);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 1rem 0 0.25rem;
}
.hero__video-brand {
  display: block;
  max-width: 100%;
}
.hero__video-brand svg {
  display: block;
  width: 100%;
  max-width: 6.5rem;
  height: auto;
}
.hero__video-brand-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
@media (width <= 46.875rem) {
  .hero__brands-grid {
    flex-wrap: wrap;
    width: 100%;
  }
  .hero__brand-item {
    flex: 1 0 50%;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=hero.css.map */
