/** Shopify CDN: Minification failed

Line 36:0 Unexpected "}"

**/
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/*this breaks on theme copy. needs fixed.
everytime we must replace the unique ID that changes for the hero slideshow on the front page.*/

#slider-template--25109166915897__hero_slideshow_NXDPHn {
  .gridy-arrows {
      left: 0;
      width: 99.5%;
      opacity: .95 !important;
      transform: translate(0) !important;
  
  }
  .gridy-arrow {
    
      transform: translateX(0) !important;
      font-size: calc(var(--font-button-size) * 0.85) !important;
      color: var(--color-foreground);
      background-color: transparent;
    }
    .gridy-arrow:hover {
      box-shadow: none !important;
      background-color: transparent;
    }
  }
}

.hero_slideshow {

  h2 {
    margin-top: 1.5rem !important;
  }
  h3 {
    font-size: calc(var(--font-size) * 2) !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  p {
    font-size: calc(var(--font-size) * 1.18) !important;
  }

  @media (min-width: 768px) {

    h2 {
      margin-top: 0rem !important;
    }
    h3 {
      font-size: calc(var(--font-size) * 2.9) !important;
      margin-top: 0.4rem !important;
      margin-bottom: 0.7rem !important;
    }
    p {
      font-size: calc(var(--font-size) * 1.3) !important;
    }
    .btn {
      font-size: calc(var(--font-button-size) * 1) !important;
    }
  }

}
.hero .hero__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.arrows-style--no-bg .gridy-arrow {
  box-shadow: none !important;
  background-color: transparent !important;
}

.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;
  
  h3 {
    filter: drop-shadow(2px 2px 2px #0000007E);
    /*-webkit-text-stroke: 1.5px #00000020;*/
  }
  h2 {
    filter: drop-shadow(2px 2px 2px #0000007E);
    /*-webkit-text-stroke: 1.5px #00000020;*/
  }
  p {
    filter: drop-shadow(3px 4px 4px #0010007E);
  }
  .btn {
    filter: drop-shadow(3px 3px 4px #00100050);
  }
}
.hero .hero__text::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  background-color: var(--color-overlay);
}

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

.hero .hero__media img,
.hero .hero__media svg {
  /*filter: blur(1px);
  -webkit-filter: blur(1px);*/
  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;
  z-index: 2;
  position: relative;
}
.hero--slideshow .hero__text-container {
  padding: calc(var(--container-margin)*1);
}

@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;
  }
}