/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.hero-banner {
  --hero-height: calc(var(--aspect-ratio) * 100vw);
  --hero-height-mobile: calc(var(--mobile-aspect-ratio) * 100vw);
  position: relative;
  width: 100%;
  overflow: hidden;
  height: var(--hero-height-mobile);
}
@media only screen and (min-width: 768px) {
  .hero-banner {
    height: var(--hero-height);
  }
  .hero-banner--large {
    --aspect-ratio: 32 / 45;
    --hero-height: calc(
      var(--aspect-ratio) * 100vw - var(--announcement-bar-height, 0px)
    );
  }
  html:not(.announcement-bar-size-loaded) .hero-banner--large {
    --hero-height: calc(var(--aspect-ratio) * 100vw);
  }
  .hero-banner--medium {
    --aspect-ratio: 1 / 2;
  }
  .hero-banner--narrow {
    --aspect-ratio: 1 / 3;
  }
}
.hero-banner--m-large {
  --mobile-aspect-ratio: 16 / 9;
  --hero-height-mobile: calc(
    var(--mobile-aspect-ratio) * 100vw - var(--announcement-bar-height, 0px)
  );
}
html:not(.announcement-bar-size-loaded) .hero-banner--m-large {
  --hero-height-mobile: calc(var(--mobile-aspect-ratio) * 100vw);
}
.hero-banner--m-medium {
  --mobile-aspect-ratio: 8 / 5;
}
.hero-banner--m-narrow {
  --mobile-aspect-ratio: 1 / 1;
}
.hero-banner--index {
  margin-top: calc(var(--header-height) * -1);
}
.hero-banner .hero-banner__mobile-hidden {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero-banner .hero-banner__mobile-hidden {
    display: initial;
  }
}
.hero-banner .hero-banner__mobile-visible {
  display: initial;
}
@media only screen and (min-width: 768px) {
  .hero-banner .hero-banner__mobile-visible {
    display: none;
  }
}
.hero-banner swiper-container,
.hero-banner swiper-loader,
.hero-banner swiper-slide {
  display: block;
  height: 100%;
  width: 100%;
}
.hero-banner swiper-container {
  display: flex;
  height: 100%;
}
.hero-banner swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.hero-banner__pagination {
  position: absolute;
  bottom: 1.5rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .hero-banner__pagination {
    bottom: 2.5rem !important;
  }
  .hero-banner__pagination::before {
    height: 5.25rem;
    bottom: calc(100% - 44px) !important;
  }
}
.hero-banner__pagination span {
  display: block;
  margin: 0 !important;
  transition: 0.3s ease;
  width: 2rem;
  height: 0.25rem;
  border-radius: 6.25rem;
  opacity: 1;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.hero-banner__pagination span.swiper-pagination-bullet-active {
  background-color: #50fcce;
  width: 3rem;
}
.hero-banner__pagination .swiper-pagination-bullet:first-child:last-child {
  display: none;
}

.hero-banner__slide {
  display: block;
  height: 100%;
  width: 100%;
}

.hero-banner__media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-banner__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-cover);
  opacity: var(--color-cover-opacity);
  z-index: 2;
}
.hero-banner__media img,
.hero-banner__media video {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner__media media-loader {
  display: inline;
}
.hero-banner__media media-loader::before {
  content: "";
  background: var(--hero-bottom-gradient, linear-gradient(180deg, rgba(5, 5, 5, 0) 36.8%, rgba(0, 0, 0, 0.6) 131.53%));
  position: absolute;
  left: 0;
  right: 0;
  height: var(--hero-bottom-gradient-height, 5.125rem);
  bottom: 0;
}

.hero-banner__container {
  width: 100%;
  box-sizing: border-box;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--container-side-space);
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media only screen and (min-width: 768px) {
  .hero-banner__container {
    padding-bottom: 4.5rem;
  }
}
.hero-banner__container--first-screen {
  padding-top: calc(var(--header-height) + 1.5rem);
}
.hero-banner__container--h-center {
  justify-content: center;
}
.hero-banner__container--h-left {
  justify-content: flex-start;
}
.hero-banner__container--h-right {
  justify-content: flex-end;
}
.hero-banner__container--v-center {
  align-items: center;
}
.hero-banner__container--v-top {
  align-items: flex-start;
}
.hero-banner__container--v-bottom {
  align-items: flex-end;
}

.hero-banner__content {
  max-width: 33.75rem;
}
.hero-banner__content--center {
  text-align: center;
}
.hero-banner__content--left {
  text-align: left;
}
.hero-banner__content--right {
  text-align: right;
}

.hero-banner__eyebrow {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: -0.0125rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .hero-banner__eyebrow {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero-banner__eyebrow {
    margin-bottom: 1rem;
  }
}
.hero-banner__eyebrow a {
  color: inherit;
}

.hero-banner__title {
  font-size: 2.5rem;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.0875rem;
}
@media (min-width: 992px) {
  .hero-banner__title {
    font-size: 3.5rem;
  }
}
.hero-banner__title a {
  color: inherit;
}

.hero-banner__copy {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .hero-banner__copy {
    margin-top: 1rem;
  }
}

.hero-banner__buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .hero-banner__buttons {
    margin-top: 1.5rem;
  }
}
.hero-banner__buttons--center {
  justify-content: center;
}
.hero-banner__buttons--left {
  justify-content: flex-start;
}
.hero-banner__buttons--right {
  justify-content: flex-end;
}

.hero-banner__buttons a.primary-button {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .hero-banner__buttons a.primary-button {
    width: auto;
  }
}
