.section-equipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-left: 3%;
}


.membre-carte {
    width: calc(10% - 30px);
    margin-bottom: 20px;
    margin-left: 1%;
    box-sizing: border-box;
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 5px 5px 5px rgba(210, 16, 51, 0.72);
}

.contenu-membre {
    flex-grow: 1;
}


.membres-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.image-membre img {
    max-width: 100%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: auto;
}
.infos-membre h3 {
    color: rgba(210, 16, 51, 0.82);
    font-family: "Barlow Condensed", Sans-serif, serif;
    font-size: 0.7vw;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1vw;
}
.infos-membre p {
    color: rgb(0, 38, 78);
    line-height: 20px;
    font-size: 0.5vw;
    font-family: "Barlow Condensed", Sans-serif, serif;
    text-transform: uppercase;
    margin-top: 0.5vw;

}

.bouton-container {
    display: flex;
    justify-content: center;
}
@media (max-width: 1024.98px) {
    .membre-carte {
        width: calc(50% - 20px);
    }
    .membres-flex-container {
        margin-top: 15px;
    }
    .infos-membre h3 {
        font-size: 1.5vw;
        margin-top: 0.5vw;
    }

    .infos-membre p {
        font-size: 1.5vw;
        margin-top: 0.5vw;
    }

}
