/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
:root {
  --sk-hero-min-height: 474px;
}
@media (max-width: 768px) {
  :root {
    --sk-hero-min-height: 460px;
  }
}

.section-hero {
  min-height: var(--sk-hero-min-height);
  padding-bottom: 100px;
  padding-top: 120px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.0509803922);
  background-blend-mode: multiply;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-hero {
    padding-bottom: 60px;
    padding-top: 80px;
  }
}
.section-hero.large {
  aspect-ratio: 16/9;
  min-width: 100%;
  max-height: 755px;
}
@media (max-width: 1024px) {
  .section-hero.main .plyr {
    height: 100%;
  }
  .section-hero.main .plyr iframe {
    height: 56.25vw;
    left: 50%;
    min-height: 460px;
    min-width: 130vh;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .section-hero.main .plyr.plyr--vimeo iframe {
    min-height: 100vh;
    min-width: 177.77vh;
  }
}
@media (max-width: 512px) {
  .section-hero.main .plyr__video-embed__container {
    transform: translateY(-30%) !important;
  }
}
.section-hero .sk-container {
  z-index: 2;
}
.section-hero__content {
  max-width: 762px;
}
@media (max-width: 512px) {
  .section-hero__content {
    max-width: 454px;
  }
}
.section-hero__content h1 {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section-hero__content h1 {
    margin-bottom: 24px;
  }
}
.section-hero__content > * {
  color: inherit;
}
.large .section-hero__content {
  max-width: 872px;
}
@media (max-width: 512px) {
  .large .section-hero__content {
    max-width: 454px;
  }
}
