#fw-section-custom-html-a186d033-7a9c-4d7e-8d7c-d0d77faca2ff {

.carousel-container {
  width: 100%; /* Or a specific width */
  overflow: hidden; /* Hides content outside the container */
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 100%; /* Initially position slides off-screen to the right */
  width: 100%;
  transition: left 0.5s ease-in-out; /* Smooth transition for sliding */
}

.carousel-slide.active {
  left: 0; /* Active slide is in view */
}

}