/** Shopify CDN: Minification failed

Line 91:11 Expected identifier but found whitespace
Line 91:13 Unexpected "{"
Line 91:22 Expected ":"
Line 91:56 Expected ":"
Line 95:14 Expected identifier but found whitespace
Line 95:16 Unexpected "{"
Line 95:25 Expected ":"
Line 95:59 Expected ":"
Line 96:16 Expected identifier but found whitespace
Line 96:18 Unexpected "{"
... and 10 more hidden warnings

**/
/* About media section start */
.about-media-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0px 5%;
}
div:empty{
    display: block !important;
}

.about-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-media-container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.about-media-container.media-right {
  flex-direction: row-reverse;
}

.about-media-heading {
  font-weight: 500;
}

.about-media-left,
.about-media-right {
  flex: 1;
}

.about-media-image,
.about-media-video {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-media-btn {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-media-container,
  .about-media-container.media-right {
    flex-direction: column;
    text-align: center;
  }

  .about-media-left, .about-media-right {
    width: 100%;
  }

  .about-media-image,
  .about-media-video {
    height: {{ section.settings.media_height_mobile }}px !important;
  }

  .about-media-heading {
    font-size: {{ section.settings.heading_size_mobile }}px !important;
    line-height: {{ section.settings.heading_line_height_mobile }} !important;
    text-align: left;
  }

  .about-media-text {
    font-size: {{ section.settings.text_size_mobile }}px !important;
    line-height: {{ section.settings.text_line_height_mobile }} !important;
    text-align: left;
  }
}

/* About media section start end */

/* Hero Video css start */

.hero-video-section {
      position: relative;
      overflow: hidden;
      height: 79vh;
      color: white;
      text-align: center;
      display: flex;
      padding-top: 100px;
      justify-content: center;
      color: #fff;
      z-index: 1;
    }

    .hero-bottom-text {
  font-size: 14px;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.hero-bottom-text p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.hero-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}


    .hero-bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    /* 🔥 Black overlay (shadow) on top of the video */
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(0 0 0 / 69%) !important; /* adjust opacity for darker/lighter effect */
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 1180px;
      padding: 20px;
    }

    .hero-reviews {
      font-size: 16px;
      margin-bottom: 10px;
      color: #A0F38E;
    }

    .hero-title {
      font-size: 46px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      font-size: 14px;
      max-width: 650px;
      margin: 0 auto 60px;
      color: #ddd;
    }
    .hero-subtitle-2 {
      font-size: 12px;
      max-width: 650px;
      margin: 0 auto 60px;
      color: #ddd;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 25px;
    }

    .btn {
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 16px;
      transition: 0.3s;
      text-decoration: none;
    }

    .btn-primary {
      background: white;
      color: black;
    }

    .btn-primary:hover {
      background: #ddd;
    }

    .btn-outline {
      border: 1px solid white;
      color: white;
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
    }

    .hero-bottom-text {
      font-size: 14px;
      color: #ccc;
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    /* Hide mobile images by default */
.mobile-img {
  display: none;
}

   @media (min-width: 991px) {
    .hero-video-section {
      height: 90vh;
    }
}


   @media (max-width: 768px) {
    .desktop-img {
    display: none;
  }
  .mobile-img {
    display: inline-block;
  }
  .hero-video-section {
    height: auto; /* remove fixed height */
    padding: 60px 20px 50px;
    text-align: center;
    background: #fff;
  }

  /* make video smaller & positioned behind content */
  .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25vh; /* 👈 only half-screen height */
    object-fit: cover;
  }

  /* overlay stays only over video portion */
  .video-overlay {
    height: 0vh;
  }

  /* push content slightly below the video */
  .hero-content {
    position: relative;
    z-index: 3;
    padding-top: 25vh;
    padding: 25vh 8px 0px; /* 👈 creates spacing below video */
  }

  .hero-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #000;
  }

      .hero-subtitle {
        font-size: 12px;
        color: #e0e0e0;
        margin-bottom: 25px;
        max-width: 100%;
        color: #000;
        font-weight: 300;
    }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-primary {
        background: #ffffff;
        color: #000000;
        border: 1px solid #6f7948;
    }

  .btn-outline {
    background: #ffffff;
        color: #000000;
        border: 1px solid #6f7948;
  }

  .hero-subtitle-2 {
    font-size: 12px;
    margin-top: 20px;
     color: #000;
     font-weight: 300;
  }

  .hero-bottom-text {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    margin-top: 25px;
    color: #000;
    justify-content: left;
    display: flex;
    align-items: start;
  }

  .hero-icon {
    width: 32px;
    height: 32px;
    filter: none;
  }
}


/* hero video end */