/** Shopify CDN: Minification failed

Line 166:14 Unexpected "{"
Line 166:23 Expected ":"
Line 167:14 Unexpected "{"
Line 167:23 Expected ":"

**/


/* CSS from section stylesheet tags */
.testi-width {
      max-width:1200px;
      padding: 0 24px;
      margin: 0 auto;
    }

  .custom-video-row__title {
    margin-bottom: 30px;
  }

  /* Simple Grid Layout */
  .custom-video-row__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(271px, 1fr));
    gap: 20px;
    overflow-x: hidden;
  }

  /* Base Video Player */
  .custom-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:16px;
  }
  .custom-video-row__item {
    cursor: pointer;
    max-width: 271px;
    width: 100%;
    box-sizing: border-box;
  }
  .video-play-button--custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: none;
    background: transparent;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
  }

  /* Hide play button when video is playing */
  .video-card__inner--custom.is-playing .video-play-button--custom {
    display: none;
  }

  /* Ensure overlay and play button don't block video clicks when video is playing */
  .video-card__inner--custom.is-playing .video-card__overlay--custom,
  .video-card__inner--custom.is-playing .video-play-button--custom {
    pointer-events: none;
  }

  /* Media Queries for Responsive Grid */
  @media screen and (max-width: 990px) {
    .custom-video-row__container {
      grid-template-columns: repeat(auto-fit, minmax(271px, 1fr));
    }
  }

  @media screen and (max-width: 789px) {
    .custom-video-row__container {
      grid-template-columns: 1fr;
    }
    .custom-video-row__item {
      width: 100%;
      max-width: none; /* Remove max-width to take full container width */
    }
  }

  .video-card__overlay--custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  .video-card__button--1 {
  border-radius: 40px !important;
  background: #FF9901 !important;
   color: #000 !important;
  font-family:"Plus Jakarta Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 140% !important;
  letter-spacing: 0.16px !important;
  text-transform: uppercase !important;

  }
  .video-card__button--2 {
  border-radius: 40px !important;
  background: white !important;
   color: #000 !important;
  font-family:"Plus Jakarta Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 140% !important;
  letter-spacing: 0.16px !important;
  text-transform: uppercase !important;
    padding:16px 20px  !important;

  }

    .video-card__button--1:after{
      box-shadow:none !important;
      border:none !important;
      outline:none !important;

    }
    .video-card__button--2:after{
      box-shadow:none !important;
      border:none !important;
      outline:none !important;

    }

  .video-card-wrapper--custom:hover .video-card__overlay--custom {
    opacity: 1;
  }

  .video-card__button-container--custom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .video-card__button--custom {
    text-align: center;
    width: 200px;
  }

  .video-card__text-overlay--custom {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
    .section-{{ section.id }}-padding.mt0 { margin-top: 0; padding-top: 0; }
    .section-{{ section.id }}-padding.pb0 { margin-bottom: 0; padding-bottom: 0; }