/** Shopify CDN: Minification failed

Line 75:20 Expected identifier but found bad string token
Line 75:21 Unterminated string token

**/
.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;
}


/*** Edited css ***/
.video-section .autoplay-video > video {
  width: 100%;
  height: auto;
}
.slideshow__media .video-section__media { padding-bottom: 0; height: 100%;}
.slideshow__media .video-section__media video {
  position: static;
  object-fit: cover;
}
.video-section .title-wrapper .caption {
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 2.16px;
  font-family: var(--font-heading-family);
}
.video-section .autoplay-video .autoplay_text .title {
  font-size: 2.2rem;
  line-height: 1.36;'
  letter-spacing: 0;
  text-align: center; 
  margin-top: 0;
  margin-bottom: 2.5rem;
  max-width: 60%;
}
.video-section .autoplay-video .autoplay_text {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-section .video-section__poster .video-inner-title {
  position: absolute;
  top: 32%;
  height: auto;
  max-width: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.video-section .deferred-media__poster-button.video-btn {
  top: 160px;
}
.video-section .video-title-main span:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  display: block;  
  border-radius: 50%;
  z-index: -1;
  animation: waves 2s ease-in-out infinite;
}
.video-section .video-title-main span:before {
  animation-delay: 0s;
}
.video-section .video-title-main span:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  display: block;  
  border-radius: 50%;
  z-index: -1;
  animation: waves 2s ease-in-out infinite;
}
.video-section .video-title-main span:after {
  animation-delay: 1s;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

@media screen and (max-width: 1199px) {
  .video-section .video-section__poster .video-inner-title {
    top: 25%;
  }
  .video-section .title-wrapper .title {
    font-size: 2.4rem;
    margin-top: 1.5rem;
  }
  .video-section .deferred-media__poster-button.video-btn {
    top: 130px;
  }
  .video-section .autoplay-video .autoplay_text {
    bottom: 0;
  }
}

@media screen and (max-width: 989px) {
  .video-section .deferred-media__poster-button.video-btn {
    height: 7rem;
    width: 7rem;
  }
  .video-section .video-section__poster .video-inner-title {
    max-width: 100%;
  }
  .video-section .autoplay-video .autoplay_text .title {
    font-size: 1.8rem;
  }
  .video-section .autoplay-video .autoplay_text {
    bottom: -30px;
  }
}

@media screen and (max-width: 749px) {
 .video-section .video-section__poster .video-inner-title {
    top: 18%;
  }
  .video-section .deferred-media__poster-button.video-btn {
    top: 90px;
  }
  .video-section .title-wrapper .title {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .video-section .deferred-media__poster-button.video-btn {
    height: 5rem;
    width: 5rem;
  }
  .video-section .autoplay-video .autoplay_text .title {
    font-size: 1.6rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .video-section .autoplay-video .autoplay_text {
    bottom: -30px;
  }
}

@media screen and (max-width: 500px) { 
  .video-section .autoplay-video .autoplay_text {
    display: none;
  }
}

@media screen and (max-width: 480px) { 
  .video-section .video-section__poster .video-inner-title {
     top: 20%;
  }
  .video-section .video-section__media {
    min-height: 200px;
  }
}  