.carousel-villas .controls {
    display: none;
}

.carousel-villas h2::after {
    display: none;
}

.carousel-villas .container {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.carousel-villas .cards {
    position: relative;
    width: 100%;
    height: 50vh;
    margin-bottom: 20px;
}

.carousel-villas .card {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    border: 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .carousel-villas .card {
        width: 100%;
    }
}

.carousel-villas .card img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}