.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: 1;
    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(--color-main-3);
} 



 .swiper {
    width: 100%;
    height: 400px;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-bg {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    color: white;
  }

  .card-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 1;
  }

  .card-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    padding: 20px;
        bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
  }

  .card-content h3 {
    font-size: 2rem;
    font-weight: bold;
  }


  .swiper-button-next, .swiper-button-prev{
    color: var(--color-main-3);
  }