.image-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Stack slides on top of each other */
.image-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.image-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%); /* start offscreen to the right */
  transition: transform 0.6s ease;
  will-change: transform;
}
.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* max-height: 100%; */

  &.bottom {
    object-position: bottom;
  }
}

/* Arrows */
/* .image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}
.image-arrow.left {
  left: 20px;
}
.image-arrow.right {
  right: 20px;
} */

/* Bullets */
.image-bullets {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 9;
}
.image-bullets span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dddddd;
  cursor: pointer;
  transition: background 0.3s;
}
.image-bullets span.active {
  background: #9c9b9b;
}

@media only screen and (max-width: 767px) {
  .image-slider {
    height: 80vh;
  }
}

@media only screen and (max-width: 576px) {
  .image-slider {
    height: 45vh;
  }
}

/* @media only screen and (max-width: 576px) {
  .both-slider-mobile-wrapper {
    position: relative;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
  }
} */
