.s-carousel-container {
  position: relative;
  max-width: 600px; /* Set maximum width of the carousel container */
  margin: 0 auto;
  overflow: hidden;
}

.s-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.s-carousel-item {
  flex: 0 0 auto;
  width: 100%; /* Adjust width as needed */
}
 
.s-prev-button,.s-next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6em;
  width: 3em;
  border: none;
  cursor: pointer;
  background-color: rgba(240, 248, 255, 0);
  
}

.s-prev-button {
  left: 0;
  background-image: url("../../assets/img/portfolio/left-arrow.svg");
  background-repeat: no-repeat;
  background-size: auto;
}

.s-next-button {
  right: 0;
  background-image: url("../../assets/img/portfolio/right-arrow.svg");
  background-repeat: no-repeat;
  background-size: auto;
}

.placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}

.placeholder img {
  width: 100px;
  width: 100px;
}

#myImage.hidden {
    display: none;
}

#myImage1.hidden {
  display: none;
}

#myImage2.hidden {
  display: none;
}

#myImage3.hidden {
  display: none;
}

#myImage4.hidden {
  display: none;
}

#myImage5.hidden {
  display: none;
}