#nos-membres .membre {
    cursor: pointer;
}

#nos-membres .membre .photo {
    height: 330px;
    position: relative;
}

#nos-membres .membre .photo img{
    border-radius: 15px 15px 0 0;
}

#nos-membres .membre .icones {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0%;
    background: #00000063;
    display: block;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    border-radius: 15px 15px 0 0;

}

#nos-membres .membre:hover .icones {
    height: 100%;
}

#nos-membres .membre .icones a {
    width: 52px;
    height: 52px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

#nos-membres .membre .icones a:hover {
    background: #9ed9df;
}

#nos-membres .membre .icones a svg {
    width: 30px;
    color: #FF4F9D;
}

#nos-membres .membre .icones svg {
    width: 40px;
}

#nos-membres .membre .info {
    background: #9ed9df;
    color: #5c5757;
    transition: all 0.5s ease-in-out;
    border-radius: 0 0 15px 15px;
}

#nos-membres .membre:hover .info {
    background: #FF4F9D;
    color: #fff;
}


#tousLesMembres{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .3s ease-in-out;
}

#tousLesMembres:hover #spanTousLesMembres {
    background-color: #FF4F9D;
    color: #fff;
    border-radius: 30px;
    font-weight: 400;
}

#tousLesMembres:hover svg {
    color: #FF4F9D;
}


#tousLesMembres .cercle{
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 2px 6px 2px rgba(60,64,67,0.149);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tousLesMembres svg {
    width: 100px;
    transition: .3s;
    color: #9ed9df;
}

#spanTousLesMembres {
    text-decoration: none;
    background: #9ed9df;
    color: #5c5757;
    transition: .3s;
    border-radius: 10px;
}