/** Shopify CDN: Minification failed

Line 36:0 Unexpected "<"
Line 80:0 Unexpected "<"
Line 126:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.intro-card-wrapper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.intro-card {
  height: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* soft, seamless shadow */
  overflow: hidden;
}

@media (max-width: 767px) {
  .intro-card {
    border-radius: 0;
  }

  .intro-card img {
    height: auto !important;
    object-fit: contain !important;
  }
}
<style>
  .section-brand-v1 {
    overflow: hidden;
    padding: 40px 0!important;
  }
  .brand-slider {
    overflow: hidden; 
    position: relative;
    width: 100%;
    white-space: no wrap;
  }
  
  .brand-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content; 
  }
  
  .brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px; 
    height: 45px; 
    overflow: hidden;
  }
  
  .brand-item img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }
  
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%); 
    }
  }
</style>
<style>
  .section-text-scroll {
    overflow: hidden;
  }
  .text-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
  }

  .text-track {
    display: flex;
    width: max-content;
    gap: 120px;
    animation: marquee-text 30s linear infinite;
  }

  .text-item {
    display: flex;
    /*flex-direction: column; */
    flex-direction: row; 
    align-items: center; 
    text-align: center; 
    font-size: 16px;
    color: #2427FF;
    white-space: nowrap;
    padding: 40px 0;
  }

  .stars {
    color: #2427FF;
    font-size: 30px;
    /*margin-bottom: 20px;*/
    margin-right: 24px;
  }

  @keyframes marquee-text {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
</style>