@-webkit-keyframes slideInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

.equipe-container {
    margin: 0 auto;
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-animation: slideInUp 1s ease forwards;
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.equipe-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 300px;
}

.gauche {
    max-width: 500px;
}

.photo-wrapper {
    margin-bottom: 30px;
}

.photo-kine {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.infos-contact p {
    margin: 15px 0;
}

.infos-contact strong {
    color: #2b8955;
    text-transform: uppercase;
    font-size: 0.9em;
}

.droite h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
}

.droite h2 {
    color: #2b8955;
    font-size: 1em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.bio, .specialites {
    margin-bottom: 40px;
}

.bio h3, .specialites h3 {
    font-size: 1em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.specialites-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.specialites-icons a {
    display: inline-block;
    width: 120px;
    text-align: center;
    text-decoration: none;
    color: #1e1e1e;
}

.specialites-icons img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 5px;
}

.specialites-icons span {
    font-size: 0.9em;
    font-weight: 400;
    display: block;
}

@media screen and (max-width: 768px) {
    .equipe-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1em;
        padding: 40px 0px;
    }

    .gauche, .droite {
        max-width: 100%;
    }

    .specialites-icons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}