@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
.section-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--section-bg);
}
.section-hero__slide {
  position: relative;
  padding: clamp(80px, 10.417vw, 20rem) 0;
  display: flex;
  min-height: 450px;
}
.section-hero__image {
  position: absolute;
  inset: 0;
  display: flex;
}
.section-hero__image picture,
.section-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero__editor {
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8), 2px 2px 5px rgba(255, 255, 255, 0.3);
}
.section-hero__editor .main-button {
  text-shadow: none;
}
@media (max-width: 575.98px){
  .section-hero__slide {
    align-items: flex-end;
  }
  .section-hero__editor {
    align-items: center;
    text-align: center;
  }
}
/*# sourceMappingURL=section-hero.css.map */