section.hero {
  height: 100dvh;
  min-height: 37.5rem;
  color: var(--white);
  margin-top: 0;
}
section.hero .img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 37.5rem;
  z-index: 0;
}
section.hero .img-wrapper picture,
section.hero .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.hero .img-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), color-stop(80%, rgb(0, 0, 0)));
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, rgb(0, 0, 0) 80%);
  opacity: 0.5;
}
section.hero .content-wrapper {
  z-index: 1;
  position: relative;
  padding-top: var(--header-height);
  height: 100dvh;
  min-height: 37.5rem;
}
@container main (max-width: 47.9375rem) {
  section.hero .content-wrapper {
    min-height: 100dvh;
  }
}
section.hero .content-wrapper h1.larger {
  max-width: 46.875rem;
  overflow: hidden;
  -ms-hyphens: auto;
      hyphens: auto;
}
@container main (max-width: 47.9375rem) {
  section.hero .content-wrapper h1.larger {
    font-size: 3.375rem;
  }
}
section.hero .content-wrapper p {
  max-width: 35rem;
  margin-bottom: 4rem;
}
@container main (max-width: 47.9375rem) {
  section.hero .content-wrapper p {
    font-size: 0.9375rem;
    line-height: 1.3125rem;
  }
}
@container main (max-width: 64rem) {
  section.hero .content-wrapper {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}