/** Shopify CDN: Minification failed

Line 107:0 Unexpected "}"

**/
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero .video,
.hero .video .media,
.hero .video .media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero__text {
  position: relative;
  height: 100%;
  z-index: 1;
}

.hero .splide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero .splide__track {
  height: 100%;
}

.hero .splide .splide__slide {
  flex-basis: 100%;
}

.hero .hero__media picture {
  display: block;
  height: 100%;
}

.hero .hero__media img,
.hero .hero__media svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.hero .hero__text-container {
  display: flex;
  height: 100%;
  padding: var(--container-margin);
  max-width: calc(var(--ideal-width) + var(--container-margin)*2);
  margin: 0 auto;
  margin-top: 0px;
  z-index: 2;
  position: relative;
  color: #ffffff;
}
.hero--slideshow .hero__text-container {
  padding: calc(var(--container-margin)*2);
}

.color-main .hero__text::before { background-color: var(--primary-background) }
.color-main-inverted .hero__text::before { background-color: var(--primary-foreground) }
.color-accent .hero__text::before { background-color: var(--accent-background) }
.color-accent-inverted .hero__text::before { background-color: var(--accent-foreground) }

@media only screen and (max-width: 767px) {
  .height-auto:not(.hero--contained) .hero .hero__media {
    position: relative;
  }
}
  .height-auto:not(.hero--contained) .hero .hero__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero--contained .hero__media {
    position: static;
  }
  .hero--contained .hero__text {
    height: auto;
  }
  .hero--contained .hero__text::before {
    content: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sm-height-auto:not(.sm-hero--contained) .hero .hero__media {
    position: relative;
  }
  .sm-height-auto:not(.sm-hero--contained) .hero .hero__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .sm-hero--contained .hero__media {
    position: static;
  }
  .sm-hero--contained .hero__text {
    height: auto;
  }
  .sm-hero--contained .hero__text::before {
    content: none !important; 
  }
  .sm-hero--contained .sm-horizontal-justified {
    position: relative;
  }
  .sm-horizontal-justified > * {
    flex: 1 0 auto;
  }
  .sm-hero--contained .sm-horizontal-justified .btn-group {
    position: absolute;
    right: calc(var(--grid-gap)*2);
    top: calc(var(--grid-gap)*2);
    flex-direction: column;
  }
  .hero .hero__text-container {
    padding: calc((100% + var(--gutter)) / 12);
  }
  .sm-hero--contained .hero .hero__text-container {
    padding-top: var(--container-margin);
    padding-bottom: var(--container-margin);
  }
  .edge-to-edge .hero .hero__text-container {
    padding-left: var(--container-margin);
    padding-right: var(--container-margin);
  }
}