/*================================== ARTICLES =============================*/
.accueil-article{
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.zone-article{
    width: 900px;
}


.categorie-article{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.container-article{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0px 0px 0px
}








.zone-partenaireAvant{
    width: 270px;
    height: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-left: solid 1px rgb(181, 181, 181);
}
.zone-partenaireAvant h2{
    font-family: 'Bebas Neue';
    font-size: 30px;
    color: rgb(0, 0, 0);
}
.zone-partenaireAvant img{
    width: 250px;
    /*max-height: 250px;*/
}
.zone-partenaireAvant-mobile{
    display: none;
}


@media screen and (max-width: 1100px) {

    .zone-article{
        width: 100%;
        margin-top: 30px;
    }
    .container-article{
        flex-direction: column;
        align-items: center;
    }

    .accueil-article{
        flex-direction: column;
    }
    .zone-partenaireAvant{
        background-color: white;
        box-shadow: 0px 5px 10px silver;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        height: auto;
        padding: 10px 0px;
        margin-bottom: 20px;
    }
    .zone-partenaireAvant h2{
        width: 100%;
        text-align: center;
    }
    .zone-partenaireAvant img{
        width: 100px;
        margin: 5px;
    }
    

}