/** Shopify CDN: Minification failed

Line 9:0 Unexpected "<"
Line 80:27 Expected ")" to end URL token
Line 190:0 Unexpected "<"

**/
/* START_SECTION:exclusive-section (INDEX:15, SCOPED:FALSE) */
<style>
.carousel-wrapper {
  position: relative;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 1rem;
    width: 100% !important;
    max-width: 100% !important;
  }
  .carousel-slide {
    flex-direction: column !important;
    gap: 1rem;
    padding: 1rem;
    min-height: auto;
    margin-right: 0;
    align-items: center;
  }
  .carousel-text {
    max-width: 100%;
    text-align: center;
    order: 1;
  }
  .carousel-text h2 {
    font-size: 1.5rem;
  }
  .carousel-text h3 {
    font-size: 1.2rem;
  }
  .carousel-text p {
    font-size: 0.85rem;
  }
  .carousel-button.blue-button {
    width: 100%;
    font-size: 1rem;
  }
  .carousel-image {
    max-width: 100%;
    width: 100%;
    order: 2;
    margin-top: 1.5rem;
    text-align: center;
  }
  .main-image {
    width: 120px;
  }
  .thumbnail-row img {
    width: 36px;
  }
  .carousel-arrow {
    font-size: 2rem;
  }
}

@media (min-width: 769px) {
  .carousel-wrapper {
    margin: 0 auto;
    width: 70%;
    max-width: 70%;
    padding: 5rem;
    background: white;
    border-radius: 2rem;
    overflow: hidden;
  }
}

#exclusive-carousel {
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 0;
  background-image: url({{ section.settings.background_image | image_url }});
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  padding: 6rem 6rem 6rem 0;
  min-height: 700px;
  margin-right: 4rem;
}
.carousel-text {
  flex: 1;
  max-width: 60%;
  text-align: left;
}
.carousel-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
}
.carousel-text h3 {
  font-size: 2.5rem;
  font-weight: 600;
}
.carousel-text p {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.8;
}
.carousel-button {
  margin-top: 2.5rem;
}
.carousel-button.blue-button {
  padding: 1rem 3rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}
.carousel-image {
  flex: 1;
  max-width: 40%;
  text-align: center;
}
.main-image {
  width: 280px;
  height: auto;
  transition: transform 0.3s;
  transform: translateY(-10px);
}
.thumbnail-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.thumbnail-row img {
  width: 60px;
  height: auto;
  margin: 0 6px;
  cursor: pointer;
}
.carousel-dots {
  text-align: center;
  margin-top: 2rem;
}
.carousel-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  background-color: #214b5e;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-dot.active {
  background-color: #0e2a38;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  z-index: 2;
}
.carousel-arrow.left {
  left: 15px;
}
.carousel-arrow.right {
  right: 15px;
}
</style>
/* END_SECTION:exclusive-section */
