.swiper-container {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  overflow: hidden;
  padding: 20px 0;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  animation: opacity 1s ease-in-out;
}
.swiper-property-detail .swiper-slide {
  opacity: 1;
}
.swiper-slide:hover {
  opacity: 1;
}
.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-bg {
  background-color: white !important;
  opacity: 1 !important;
  border-radius: 5px;
}
.swiper-pagination-bullet {
  background-color: var(--text-color-2);
  opacity: 0.8;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
}
