.div_equipe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.div_equipe a {
    text-decoration: none;
    color: white;
    display: inline-block;
    width: 200px;
}

.div_equipe a img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.div_equipe a p {
    text-align: center;
    margin-top: 10px;
    font-size: 1em;
    text-indent: 0;
    margin: 0;
    padding: 0;
}


@media (max-width: 991px) {
    .div_equipe a {
        width: 125px;
    }

    .div_equipe a img {
        width: 125px;
        height: 125px;
    }
}

/*Tel paysage*/
@media (max-width: 767px) {
    .div_equipe a {
        width: 100px;
    }

    .div_equipe a img {
        width: 100px;
        height: 100px;
    }
}

/*Tel portrait*/
@media (max-width: 479px) {}