/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --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: 560px;
}
@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.has-cta {
  padding-bottom: 153px;
}
@media (max-width: 1280px) {
  .section-hero.has-cta {
    padding-bottom: 133px;
  }
}
@media (max-width: 768px) {
  .section-hero.has-cta {
    padding-bottom: 113px;
  }
}
.section-hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.section-hero .overlay.ov-refuels::before {
  content: "";
  position: absolute;
  inset: 0;
  background-blend-mode: multiply;
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width: 1280px) {
  .section-hero {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .section-hero {
    padding-bottom: 60px;
    padding-top: 80px;
  }
}
@media (max-width: 512px) {
  .section-hero p br {
    display: none;
  }
}
.section-hero.large {
  aspect-ratio: 16/9;
  min-width: 100%;
  max-height: 750px;
  height: 100vh;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .section-hero.large {
    height: auto;
  }
}
@media (max-width: 1280px) {
  .section-hero.large {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .section-hero.large {
    padding-bottom: 60px;
  }
}
.section-hero.large.has-cta {
  padding-bottom: 173px;
}
@media (max-width: 1280px) {
  .section-hero.large.has-cta {
    padding-bottom: 133px;
  }
}
@media (max-width: 768px) {
  .section-hero.large.has-cta {
    padding-bottom: 113px;
  }
}
@media (max-width: 1024px) {
  .section-hero.main .plyr {
    height: 100%;
  }
  .section-hero.main .plyr iframe {
    height: 56.25vw;
    left: 50%;
    min-height: 560px;
    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: 768px;
}
@media (max-width: 512px) {
  .section-hero__content {
    max-width: 360px;
  }
}
.section-hero__content .sk-text--h2 {
  letter-spacing: 0.5px;
}
.section-hero__content > * {
  color: inherit;
}
.section-hero__content > *:last-child {
  margin-bottom: 0;
}
.section-hero__cta {
  display: flex;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--sk-color-five);
  text-align: center;
  padding: 12px 16px;
}
.section-hero__cta a {
  color: var(--sk-color-white);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.70588;
  font-weight: 400;
}
@media (max-width: 512px) {
  .section-hero__cta a {
    font-size: 14px;
  }
}
.section-hero__cta a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.section-hero__cta a:hover::after, .section-hero__cta a:active::after, .section-hero__cta a:focus::after, .section-hero__cta a:focus-within::after {
  width: 100%;
}
