.avis{
    height: 80vh;
    background: url(../assets/Background/Pattern-dark-down.png) no-repeat center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.carousel_avis{
    height: 80%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.carousel_avis .content_carousel_avis{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.content_carousel_avis .fleche {
    width: 40px;
    height: 40px;
    color: white;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.content_carousel_avis .fleche i {
    font-size: 32px;
}

.carousel_avis .content_carousel_avis .carousel_card_avis{
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
    overflow: hidden;
}

.carousel_card_avis .card_carousel{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 140px;
    height: 100%;
    flex: 0 0 100%; /* 100% si une seule carte visible, 50% si deux, etc. */
}

.carousel_card_avis .card_carousel .texte_card_carousel{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    width: 40%;
}

.carousel_card_avis .card_carousel .texte_card_carousel .titre_card_carousel{
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px; /* 117.857% */
    letter-spacing: -2px;
}

.carousel_card_avis .card_carousel .texte_card_carousel .info_card_carousel p:nth-child(1){
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 114.286% */
}

.carousel_card_avis .card_carousel .texte_card_carousel .info_card_carousel p:nth-child(2){
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -1px;
}

.carousel_card_avis .card_carousel .img_card_carousel{
    height: 90%;
    width: 30%;
    background-color: white;
    border-radius: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.carousel_card_avis .card_carousel .img_card_carousel img{
    aspect-ratio: 1/1;
    width: 80%;
    height: 80%;
    object-fit: cover}

.point_carousel_avis{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
}

.dot_avis{
    display: block;
    border-radius: 360px;
    width: 10px;
    height: 10px;
    background-color: white;
    opacity: 0.7;
}

.dot_avis.active{
    opacity: 1;
}