/** Shopify CDN: Minification failed

Line 31:14 Unexpected "{"
Line 31:23 Expected ":"
Line 48:14 Unexpected "{"
Line 48:23 Expected ":"

**/


/* CSS from section stylesheet tags */
.video-section {
    position: relative;
    overflow: hidden;
  }

  @media screen and (max-width: 749px) {
    .video-section__media .desktop-video {
      display: none !important;
    }
    .video-section__media .mobile-video {
      display: block;
      width: 100vw;
      height: var(--mobile-video-height, 80vh);
      max-height: 100vh; /* extra safeguard */
      object-fit: cover;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }
    .section-{{ section.id }}-padding {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      margin: 0 !important;
    }
  }

  @media screen and (min-width: 750px) {
    .video-section__media .mobile-video {
      display: none !important;
    }
    .video-section__media .desktop-video {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .section-{{ section.id }}-padding {
      padding-top: 20px !important;
      padding-bottom: 20px !important;
      margin: 0 !important;
    }
  }

  /* Make entire video section clickable */
  .video-section__link {
    display: block;
    color: inherit;
    text-decoration: none;
  }