/** Shopify CDN: Minification failed

Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 25:17 Unexpected "{"
Line 25:26 Expected ":"
Line 44:17 Unexpected "{"
Line 44:26 Expected ":"
Line 50:17 Unexpected "{"
Line 50:26 Expected ":"
Line 63:17 Unexpected "{"
Line 63:26 Expected ":"
... and 26 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:video-banner (INDEX:303) */
#video-banner-{{ section.id }} * {
    box-sizing: border-box;
  }

  #video-banner-{{ section.id }}.video-banner-section {
    width: 100%;
    height: 566px;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    border-style: none;
    background-image:
      linear-gradient(rgba(12, 14, 20, 0.56), rgba(12, 14, 20, 0.56)),
      url('{{ section.settings.background_image | image_url: width: 2000 }}');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #111319;
  }

  #video-banner-{{ section.id }}.video-banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
  }

  #video-banner-{{ section.id }} .video-banner-wrap {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 40px;
    grid-template-columns: 670px 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  #video-banner-{{ section.id }} .video-banner-card {
    width: 670px;
    height: 374px;
    border-radius: 0;
    background: #000;
    border: 0;
    position: relative;
    overflow: hidden;
  }

  #video-banner-{{ section.id }} .video-banner-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  #video-banner-{{ section.id }} .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
  }

  #video-banner-{{ section.id }} .video-banner-text h2 {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(34px, 2.5vw, 30px);
    line-height: 1.1;
    font-weight: 800;
    max-width: 680px;
    color: #ffffff;
  }

  #video-banner-{{ section.id }} .video-banner-text p {
    margin: 0 0 22px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    max-width: 620px;
  }

  #video-banner-{{ section.id }} .video-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background: #f44e3b;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  #video-banner-{{ section.id }} .video-banner-btn:hover {
    transform: translateY(-1px);
    opacity: 0.94;
  }

  @media (max-width: 900px) {
    #video-banner-{{ section.id }}.video-banner-section {
      height: auto;
      padding-top: 40px;
      padding-bottom: 40px;
    }

    #video-banner-{{ section.id }} .video-banner-wrap {
      grid-template-columns: 1fr;
      padding: 0 16px;
      gap: 16px;
    }

    #video-banner-{{ section.id }} .video-banner-card {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }

    #video-banner-{{ section.id }} .video-banner-text {
      text-align: center;
    }

    #video-banner-{{ section.id }} .video-banner-text h2 {
      font-size: 26px;
      margin-left: auto;
      margin-right: auto;
    }

    #video-banner-{{ section.id }} .video-banner-text p {
      margin-left: auto;
      margin-right: auto;
    }

    #video-banner-{{ section.id }} .video-banner-btn {
      margin: 0 auto;
    }
  }
/* END_SECTION:video-banner */