.images-swiper {
  width: 100%;
  padding: 70px 0;
  box-sizing: border-box;
}
.images-swiper__content {
  width: 100%;
  position: relative;
  z-index: 1;
}
.images-swiper-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.images-swiper-wrapper .my-swiper {
  width: 100%;
  height: auto;
}
.images-swiper-wrapper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  height: auto;
}
.images-swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.images-swiper-item {
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
.images-swiper-item-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.images-swiper-item-image {
  width: 100%;
  height: 100%;
}
.images-swiper-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.images-swiper-wrapper .swiper-button-prev,
.images-swiper-wrapper .swiper-button-next {
  width: 60px;
  height: 60px;
  background: #94a3b8;
  border-radius: 50%;
  opacity: 1;
}
.images-swiper-wrapper .swiper-button-prev:hover,
.images-swiper-wrapper .swiper-button-next:hover {
  background: #3b82f6;
}
.images-swiper-wrapper .swiper-button-prev::after,
.images-swiper-wrapper .swiper-button-next::after {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}
.images-swiper-wrapper .swiper-button-prev:hover::after,
.images-swiper-wrapper .swiper-button-next:hover::after {
  color: #fff;
}
.images-swiper-wrapper .swiper-button-prev {
  top: calc(50% - 15px);
  left: -120px !important;
  z-index: 10;
}
.images-swiper-wrapper .swiper-button-next {
  top: calc(50% - 15px);
  right: -120px !important;
  z-index: 10;
}
.images-swiper-wrapper .swiper-button-prev.images-swiper-button-disabled,
.images-swiper-wrapper .swiper-button-next.images-swiper-button-disabled {
  opacity: 1;
  pointer-events: none;
}
.images-swiper-wrapper .images-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #cccccc;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 1;
  display: inline-block;
  cursor: pointer;
}
.images-swiper-wrapper .images-pagination-bullet-active {
  background: #3b82f6;
}
.images-swiper-wrapper .swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
