main{
    padding: 40px 0;
    background-color: #F0F0F0;
}
#suivie{
    width: 100%;
    min-height: 125px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    text-align: center;
}
#suivie h2{
    font-size: 25px;
    font-weight: 600;
    color: var(--bleu-fonce);
}
#suivie p{
    font-size: 20px;
    font-weight: 400;
    color: var(--bleu-fonce);
    width: 70%;
}
/************/
#les_detail{
    width: 100%;
    min-height: 500px;
    height: auto;
    /* background-color: #a877dd; */
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.color{
    background-color: #fe7624;
}
.color2{
    background-color:darkcyan;
}
.bare_menu1{
    background-color: #d0eff3;
    min-width: 20%;
    height: 283px;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}
.bare_menu1 a{
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    color: var(--vert);
}
.bare_menu1 a:hover{
    background-color: white;
    color: var(--orange) !important;
}
.detail{
    background-color: #d0eff3;
    width: 70%;
    min-height: 450px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    gap: 20px;
}
.detail .img1{
    width: 70%;
    display: flex;
    height: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}
.detail img{
    width: 100%;
}
.detail .img1 p{
    font-weight: 800;
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration:underline;
    padding-top: 10px;
    text-underline-offset: 6px; /* ajuste la valeur selon l'effet désiré */
}
.bare_menu2{
    display: flex;
    background-color: #d0eff3;
    display: none;
}
.bare_menu2 a{
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    color: var(--orange);
}
.bare_menu2 a:hover{
    /* background-color: #90c78b; */
    background-color: white;
    color: var(--vert) !important;
}
.detail h2{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #142973;
}
.detail p{
    width: 90%;
}
.detail ul{
    width: 90%;
    display: flex;
    flex-direction: column;
    line-height: 30px;
    padding: 0 30px;
}
@media screen and (max-width : 900px) {
    .bare_menu1{
        display: none;
    }
    #suivie{
        gap: 10px;
    }
    #suivie h2{
        font-size: 20px;
        color: var(--vert);
    }
    #suivie p{
        font-size: 16px;
    }
    #les_detail{
        flex-direction: column;
        align-items: center;
    }
    .bare_menu2{
        display: block;
        display: flex;
    }
    .detail{
        width: 90%;
    }
    .detail h2{
        font-size: 20px;
    }
    .detail .img1 p{
        font-size: 12px;
    }
}
/***************************************************/