/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.section-banner {
  position: relative;
  height: 100svh;
  min-height: 80svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.section-banner::before {
  content: "";
  position: absolute;
  display: flex;
  inset: 0;
  background-color: rgba(22, 23, 27, 0.65);
  z-index: 1;
}
.section-banner__video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-banner__content.editor {
  position: relative;
  z-index: 2;
  text-align: center;
  gap: 24px;
  color: var(--cl-a);
}
.section-banner__content.editor h1,
.section-banner__content.editor h2 {
  font-size: clamp(40px, 6.25vw, 120px);
  line-height: 120%;
}
.section-banner__content.editor p:not([class]) {
  font-size: clamp(20px, 2.083vw, 40px);
  line-height: 120%;
  font-weight: 500;
}
.section-banner__content.editor .row {
  margin-top: 26px;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1025px) {
  .section-banner {
    height: 100svh;
  }
}
/*# sourceMappingURL=section-banner.css.map */