.wrapper .carousel {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
}
.wrapper {
  max-width: 100vw;
  background-color: #fff;
}
.wrapper i {
  height: 46px;
  width: 46px;
  background-color: #e4002b;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wrapper i:first-child {
  left: 40px;
  z-index: 9;
}
.wrapper i:last-child {
  right: -10px;
}
.carousel img {
  /* height: 970px; */
  object-fit: cover;
  width: calc(100% / 3);
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 900px) {
  .carousel img {
    /* height: 98vh; */
    width: 100vw;
    /* width: calc(100% / 3); */
  }
}
