/* ====== CARROUSEL DES IMAGES (INDEX) ====== */
/* .index-carrousel {
    position: relative;
    width: 100%;
    margin: 40px auto;
    overflow: hidden;
    display: initial;
}

.index-carrousel .carousel-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--background-color-2);
}

.index-carrousel .carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.index-carrousel .carousel-item {
    min-width: 100%;
}

.index-carrousel .carroussel-image {
    width: 100%;
}

/* Positionnement des flèches pour le carrousel d'images */
/*
.index-nav {
    position: absolute;
    top: 43%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.index-prev,
.index-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 3vw;
    border: none;
    padding: 1.5vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.index-prev:hover,
.index-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.index-prev {
    position: absolute;
    left: 10px;
}

.index-next {
    position: absolute;
    right: 10px;
}
*/

.carroussel-video {
    width: 100%;
    height: auto;

    object-fit: cover;
}

.text-inline {
    padding: 25px;
}

.carousel-item {
    overflow: hidden;
}