
.swiper-container {
  width: 320px;
  height: 460px;
  border-radius: 0px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: top;
}

.item {
  width: 320px;
  height: 421px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item img {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border-radius: 5px !important;
  background: #000 !important;
  transition: all 0.3s !important;
}


@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}