#carousel-container {
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

@media (max-width: 1024px) {
    #carousel-container {
        height: 54vw;
    }
}

.carousel-slide {
    /*position: absolute; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    height: auto;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 10; /* Assurez-vous que les dots sont au-dessus des images */
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 7px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 11;
}

.carousel-dot.active {
    background-color: var(--e-global-color-primary);
}