.mod-hero-landing {
  margin-top: var(--header-height);
}
.mod-hero-landing .relative {
  position: relative;
}
.mod-hero-landing .background {
  position: absolute;
  overflow: hidden;
  inset: 0;
  z-index: -1;
}
.mod-hero-landing .background iframe {
  position: absolute;
  inset: 50%;
  transform: translate(-50%,-50%);
  display: block;
}
.mod-hero-landing .wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 1.6rem 1rem 2.2rem 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
}
.mod-hero-landing .title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width:767px) {
  .mod-hero-landing .relative {
    height: 46rem;
  }
  .mod-hero-landing .subtitle {
    max-width: 23rem;
  }
}
@supports (aspect-ratio:auto) {
  @media (max-width:767px) {
    .mod-hero-landing .relative {
      height: auto;
      aspect-ratio: 4/5;
    }
  }
}
@media (min-width:768px) {
  .mod-hero-landing .relative {
    height: calc(clamp(80rem, 100vh, 140rem) - var(--header-height) - 3rem);
  }
  .mod-hero-landing .wrapper {
    padding: 4.5rem 0 4rem 0;
  }
}