@import "../vendor/swiper/swiper-bundle.min.css";

.property-gallery {
    display: flex;
}

.property-gallery .images,
.property-gallery .info {
    width: 50%;
}

.property-gallery .image-slides {
    height: 100%;
}

.property-gallery .images .swiper-slide {
    height: auto !important;
}
.property-gallery .images .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.property-gallery .info {
    display: flex;
    flex-direction: column;
    padding: 3rem 3rem 2rem;
}

.property-gallery .info-slides {
    flex: 1 0 auto;
    width: 100%;
}

.property-gallery .info .swiper-slide {
    background-color: white;
    margin-bottom: 3rem;
    opacity: 0 !important;
}

.property-gallery .info .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.property-gallery .infoContent {
    max-width: 600px;
    margin-bottom: 2rem;
}

.property-gallery .swiper-pagination-bullet {
    --swiper-pagination-bullet-size: 20px;
    --swiper-pagination-color: #0091ca;
    --swiper-pagination-bullet-inactive-color: #bae1f1;
    --swiper-pagination-bullet-inactive-opacity: 1;
}

@media(max-width: 880px) {
    .property-gallery {
        flex-direction: column;
    }

    .property-gallery .images,
    .property-gallery .info {
        width: 100%;
    }

    .property-gallery .images {
        height: 300px;
    }

    .property-gallery .info {
        padding: 2rem;
    }

    .property-gallery .info-slides {
        width: 100%;
    }
}