.section-hero {
  --dot-size: 1rem;
  position: relative;
}
.section-hero__grid {
  aspect-ratio: 16/9;
  min-height: calc(60 * var(--vh));
}
.section-hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-hero__carousel .owl-stage-outer,
.section-hero__carousel .owl-stage,
.section-hero__carousel .owl-item {
  height: 100%;
}
.section-hero__carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(0.5 * var(--dot-size));
  padding: var(--site-margin);
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .section-hero__carousel .owl-dots {
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .section-hero__carousel .owl-dots {
    right: 0;
  }
}
.section-hero__carousel .owl-dot {
  display: block;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  border: 1px solid currentColor !important;
  background: transparent !important;
}
.section-hero__carousel .owl-dot.active {
  background: currentColor !important;
}
.section-hero__image {
  position: relative;
  height: 100%;
}
.section-hero__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero__content {
  position: relative;
  z-index: 1;
  grid-column: 1/-1;
  -ms-grid-row-align: center;
      align-self: center;
  margin-top: var(--site-margin);
  margin-bottom: var(--site-margin);
}
@media only screen and (max-width: 1023px) {
  .section-hero__content {
    margin-bottom: calc(4 * var(--site-margin) + var(--dot-size));
  }
}
@media only screen and (min-width: 600px) {
  .section-hero__content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
  }
}
@media only screen and (min-width: 1024px) {
  .section-hero {
    --dot-size: 0.75rem;
  }
  .section-hero__grid {
    min-height: calc(100 * var(--vh));
  }
  .section-hero__content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-column: 1/9;
  }
}
@media only screen and (min-width: 1280px) {
  .section-hero__content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1/7;
  }
}