/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.section-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: calc(var(--header-height) + 30px) 0 clamp(36px, 4.167vw, 80px);
  display: flex;
  align-items: flex-end;
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 23, 27, 0.65);
  z-index: 1;
}
.section-hero__video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero__content.editor {
  position: relative;
  z-index: 2;
}
.section-hero__content.editor h1,
.section-hero__content.editor h2 {
  font-size: clamp(38px, 6.25vw, 120px);
  line-height: 120%;
}
@media (min-width: 576px) {
  .section-hero {
    min-height: 40svh;
  }
}
@media (max-width: 575px) {
  .section-hero {
    min-height: 60svh;
  }
}
/*# sourceMappingURL=section-hero.css.map */