/** Shopify CDN: Minification failed

Line 88:0 Unexpected "<"
Line 168:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-slider-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
 .custom-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }

  .custom-slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    padding: 0 8px;
  }

  .custom-slide {
    flex: 0 0 57%;
    box-sizing: border-box;
    margin: 0 8px;
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
  }

  .custom-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
  }

  @media (max-width: 768px) {
    .custom-slide {
      flex: 0 0 100%;
      margin: 0;
      height: 300px; /* Same height on mobile */
    }

    .custom-slider {
      padding: 0;
    }

    .custom-slide img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }

  .slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    padding: 10px;
    z-index: 5;
    cursor: pointer;
    font-size: 24px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }
<style>
.subscribe-banner-section {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  padding: 60px 20px;
}

.subscribe-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.subscribe-banner__heading {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: left;
  color: white;
}

.subscribe-banner__description {
  font-size: 1rem;
  margin-bottom: 25px;
  max-width: 600px;
  text-align: left;
  color: white;
}

.subscribe-banner__form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  border: 1px solid white;
  border-radius: 5px;
  overflow: hidden;
}

.subscribe-banner__form input[type="email"] {
  flex: 1 1 auto;
  padding: 12px;
  border: none;
  font-size: 1rem;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.subscribe-banner__form input[type="email"]::placeholder {
  color: white;
  opacity: 0.8;
}

.subscribe-banner__form button {
  padding: 12px 20px;
  border: none;
  background-color: #0DB14B;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

/* Mobile Padding */
@media screen and (max-width: 749px) {
  .subscribe-banner__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
</style>