:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-m: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable selector-class-pattern */
.section-hero {
  color: var(--text-color);
  position: relative;
  width: calc(100vw - 10px);
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: clamp(20px, 8.8571428571px + 0.0285714286 * 100vw, 50px);
}
.with-sidebar .section-hero {
  width: 100%;
  left: unset;
  transform: unset;
}
.section-hero__outer-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1px, -13.4857142857px + 0.0371428571 * 100vw, 40px);
  overflow: hidden;
}
.with-sidebar .section-hero__outer-wrapper {
  display: flex;
  flex-direction: column;
  gap: unset;
}
@media (min-width: 768px) {
  .section-hero__outer-wrapper {
    grid-template-columns: 1fr 45%;
  }
}
.section-hero__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
  overflow: hidden;
}
.with-sidebar .section-hero__image {
  min-height: unset;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.section-hero__wrapper {
  padding: clamp(30px, 4px + 0.0666666667 * 100vw, 100px) 0;
}
.with-sidebar .section-hero__wrapper {
  position: relative;
  z-index: 2;
}
.section-hero__container h1, .section-hero__container h2, .section-hero__container h3, .section-hero__container h4, .section-hero__container h5, .section-hero__container h6 {
  color: inherit;
}
