/** Shopify CDN: Minification failed

Line 115:0 Unexpected "}"

**/
.video-section__media {
  --ratio-percent: 56.25%;
  position: relative;
  padding-bottom: calc(var(--ratio-percent) - var(--media-border-width));
}

/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
.scroll-trigger:where(.gradient.video-section__media) {
  background: transparent;
}

.video-section__media.global-media-settings--full-width {
  padding-bottom: var(--ratio-percent);
}

.video-section__media.deferred-media {
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

.video-section__media.deferred-media:after {
  content: none;
}

.video-section__poster.deferred-media__poster:focus {
  outline-offset: 0.3rem;
}

.video-section__media iframe {
  background-color: rgba(var(--color-foreground), 0.03);
  border: 0;
}

.video-section__poster,
.video-section__media iframe,
.video-section__media video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.video-section__media video {
  background: #000000;
}

.video-section__media.media-fit-cover video {
  object-fit: cover;
}


.video-overlay{
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
}

.text-overlay{
  height: 80vh;
  position: absolute;
  width: 80%;
  z-index: 3;
  color: #fff;
  padding: 5% 0 0 5%;
}

.text-overlay .title{
  font-size: 4.5rem;
  line-height: 5.2rem;
  font-weight: 600;
}

.text-overlay .text{
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 4rem;
}

@media screen and (max-width: 989px) {
  .text-overlay{
    width: 60%;
    padding: 15% 0 0 1.5rem;
  }
  .text-overlay .title{
    font-size: 4rem;
  }
}

@media screen and (max-width: 750px) {
  .text-overlay{
    width: 100%;
    padding: 25% 1.5rem 0;
  }
  .text-overlay .title{
    font-size: 3rem;
    line-height: 4rem;
  }
  .text-overlay .text{
    font-size:1.6rem;
  }
}

@media screen and (min-width: 992px) {
  .text-overlay{
      width: 53%;
  }
}
}