/** Shopify CDN: Minification failed

Line 33:14 Unexpected "{"
Line 33:23 Expected ":"
Line 50:14 Unexpected "{"
Line 50:23 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:video (INDEX:62) */
.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;
  }
/* END_SECTION:video */