.image-slider-container {
  height: 100%;
  position: relative;
}

.image-slider-container .images {
  height: 100%;
  /* position: relative; */
  overflow: hidden;
}

.image-slider-container .images .img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.image-slider-container .btn {
  background: #666;
  width: 22px;
  height: 52px;
  top: 50%;
  right: 10px;
  margin-top: -95px;
  cursor: pointer;
  position: absolute;
  color: #fff;
  transition: opacity 0.5s;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slider-container .btn:hover {
  opacity: 0.7;
}

.image-slider-container .prev-btn {
  left: 20px;
}

.image-slider-container .next-btn {
  right: 20px;
}
@media screen and (min-width: 1280px) {

  .image-slider-container .btn {
    top: 63%;
  }
}