.carousel-I-container {
    position: relative;
    width: 96%;
    overflow: hidden;
}
  
.carousel-I {
    overflow: hidden;
    width: 100%;
}
  
.carousel-I-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
  
.carousel-I-image {
    /* min-width: calc(100% / 2); */ 
    min-width: calc(100% / 1.7);
    transition: transform 0.3s ease;
    /* padding: 0 52px; */ 
    padding: 0 80px;
    /* border: 2px solid blue; */
}

.carousel-I-image img {
    width: 100%;
}

/* .carousel-I-image:hover {
    cursor: pointer;
} */
  
.nav-button-I {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    background-color: transparent;
}
  
#prev-carousel-I {
    left: 205px; /* Flèche de gauche autour de l'image centrale */
}
  
#next-carousel-I {
    right: 205px; /* Flèche de droite autour de l'image centrale */
}
  
.carousel-I-nav {
    text-align: center;
    padding: 25px 0 15px 0;
}
  
.carousel-I-dot {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}
  
.carousel-I-dot.active {
    width: 35px;
    height: 35px;
}

/* Responsive - Mobile */
@media (max-width: 551px) {
    .nav-button-I {
        display: none;
    }
    
    .carousel-I-image {
        min-width: calc(100% / 1.3);
        padding: 0 40px;
        width: 100%;
    }

    .carousel-I-dot {
        width: 50px;
        height: 50px;
    }

    .carousel-I-dot.active {
        width: 70px;
        height: 70px;
    }

    .dot-container-I svg {
        width: 50px;
        height: 60px;
    }
}


/* Points de couleurs D15 */
.fawn {
    background-color: #EAB691;
}

.ash_gray {
    background-color: #BCD1CC;
}

.earth_yellow {
    background-color: #E7BE74;
}

.fawn_border {
    border-color: #EAB691;
}

.ash_gray_border {
    border-color: #BCD1CC;
}

.earth_yellow_border {
    border-color: #E7BE74;
}