.auteur-banner {
    height: 50vh;
    background: linear-gradient(45deg,rgba(121, 174, 70, 0.4), rgba(142, 204, 82, 0.4)), transparent url("../img/bg-page-21-1600x600.jpg") top left/cover no-repeat scroll;
    padding-top: 125px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.auteur-banner-text {
    width: 70%;
}
.auteur-banner-text h2 {
    color: #ffffff;
    font-size: 3em;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: capitalize;
    text-align: center;
}

/* Filter Side ... */
.auteurs-filter {
    text-align: center;
    padding: 50px 0;
    margin-top: 50px;
}
.auteurs-filter a {
    display: inline-block;
    padding: 3px 10px;
    color: #999999;
    border-radius: 3px;
    line-height: 1;
}
.auteurs-filter .filter-separator {
    height: 30px;
    width: 1px;
    background-color: #bdbdbd;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}
.auteurs-filter a.current {
    color: white;
    background: linear-gradient(40deg, #DB1037, #CD40E6);
}

/* Presentation Side ... */
.auteurs-liste {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0 100px;
    margin-bottom: 75px;
}
.auteur-box {
    width: 16%;
    margin: 25px 0.3%;
    text-align: center;
}
.auteur-box img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}
.auteur-box h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}


@media only screen and (max-width: 600px) {
    .auteurs-liste {
        padding: 0;
        justify-content: space-around;
    }

    .auteur-box {
        width: 30%;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .auteur-box h2 {
        font-size: 16px;
    }
}