.carousel-container {
    position: relative;
    overflow: hidden;
}

.active {
    z-index: 2;
}

.carousel-container .image {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 40px;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
}

.carousel-container .image img {
    width: 100%;
    height: 100%;
}
.controls {
    display: flex;
    justify-content: space-evenly;
}
.controls .control {
    background-color: transparent;
    padding: 10px;
    z-index: 100;
}
.controls .control svg {
    width: 36px;
    height: 36px;
}
.controls .control:active {
    transform: scale(0.8);
    transition: 100ms;
} /* .dots-container {
        display: flex;
        align-items: center;

        .dot {
            margin-left: 16px;
            width: 12px;
            height: 12px;
            background-color: #999;
            border-radius: 50%;
            cursor: pointer;
        }

        .active {
            width: 16px;
            height: 16px;
            background-color: #0f298b;
        }
    } */

@media (max-width: 768px) {
    .carousel-container {
        height: 50vh;
    }
}
