.swiper-gallery-container {
  width: 100%;
}

.mySwiper {
  width: 100%;
  padding: 40px 0;
  user-select: none;
  -webkit-user-select: none; /* ← Safari */
  -moz-user-select: none; /* ← Firefox */
  -ms-user-select: none; /* ← IE/Edge */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.swiper-slide a {
  display: block;
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-pagination-bullet-active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide img {
    height: 250px;
  }
}
@media (max-width: 1280px) {
  .swiper-slide img {
    height: 400px;
  }
}
