/** Shopify CDN: Minification failed

Line 171:0 Unexpected "<"
Line 289:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.image-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.3s ease-out;
  gap: 10px;
}

.left-side,
.right-side,
.middle {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-side,
.right-side {
  width: 50%;
  position: relative;
}

.middle {
  width: 50%;
  text-align: center;
  justify-content: center;
  padding: 0 20px;
}

.image-slider .image {
  width: 500px;
  height: auto;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  border-radius: 10px;
  cursor: pointer;
}

h2, p {
  color: inherit;
}


.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}

.full-size {
  width: 150% !important;
  transition: all 0.5s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
  .image-slider {
    flex-direction: column;
    gap: 20px;
  }

  .left-side, .right-side, .middle {
    width: 100%;
  }

  .middle {
    padding: 10px 20px;
  }

  .image-slider .image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .image-slider {
    gap: 15px;
  }

  .middle {
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  h2 {
    font-size: 18px;
  }

  .image-slider .image {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .middle {
    font-size: 1rem;
    padding: 5px 8px;
  }

  h2 {
    font-size: 16px;
  }

  .left-side, .right-side {
    padding: 0;
  }

  .image-slider {
    flex-direction: column;
    gap: 10px;
  }

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

  .image-slider .image {
    width: 100%;
  }
}
  .middle-wrapper p {
    font-size: 16px;
}
  .rich-text-desc.textMedium.rte p {
    font-size: 20px;
}
/* Hide the full description initially */
  .hidden {
    display: none;
  }

  /* Style the Read More button */
 

  /* .read-more-btn:hover {
    background-color: #005bb5;
  } */
/* Hide the full description initially */
.hidden {
  display: none;
}

/* Style the Read More button */
.read-more-btn {
    /* background-color: #fff; */
    color: #000;
    padding: 18px 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 700;
}

/* .read-more-btn:hover {
  background-color: #005bb5;
} */
<style>
  * { box-sizing: border-box; }

  .slider-wrapper {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    overflow: hidden;
    height: 380px;
    padding: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
  }

  .slider-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
  }

  .slide {
    flex-shrink: 0;
    background: #444;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: 0.6s all;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .slide.active {
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.6);
    opacity: 1;
  }

  .slide::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 10px;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00ff77;
    border: none;
    padding: 12px 18px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    color: #111;
    font-weight: bold;
    border-radius: 8px;
  }

  .prev-button {
    left: 10px;
  }

  .next-button {
    right: 10px;
  }

  @media screen and (max-width: 768px) {
    .slider-wrapper {
      flex-direction: column;
      height: 100vh;
      padding: 0 50px;
    }

    .slider-track {
      flex-direction: column;
      width: 100%;
    }

    .nav-button {
      position: absolute;
      top: auto;
      left: auto;
      right: auto;
      transform: none;
      margin: 10px auto;
    }

    .prev-button {
      order: -1;
    }

    .next-button {
      bottom: 0;
    }

    .slide {
      width: 100% !important;
    }

    .slide img {
      width: 100%;
      height: 100%;
    }
  }
</style>