.image-slider {
  margin: 50px 0;
}
.image-slider li .image {
  height: 520px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  .image-slider li .image {
    height: 200px !important;
  }
}
@media screen and (min-width: 992px) {
  .image-slider li .image {
    height: 520px;
  }
}
.image-slider li .drawer {
  text-align: center;
  font-size: 14px;
}
.image-slider button {
  padding: 0;
  border: 0;
  background: none;
  transition-duration: 0.2s;
}
.image-slider button:hover.prev {
  transform: translateX(-10px);
}
.image-slider button:hover.next {
  transform: translateX(10px);
}
.image-slider button:focus {
  outline: 0;
}
.image-slider button img {
  width: 15px;
}
.image-slider h4 {
  margin: 20px auto;
  text-align: center;
}