.competenceKine .image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 500px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.competenceKine .image-container picture,
.competenceKine .image-container img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.competenceKine .contentCompetence {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4em;
    margin: 0em auto;
    margin-top: 1em;
    padding: 0em 2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.competenceKine .text {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
}

.specialites {
    list-style: none;
    padding-left: 0;
}

.competenceKine .specialites li::before {
    content: "●";
    color: rgb(0,153,51);
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

.competenceKine .list{
    list-style: none;
}

.competenceKine .equipe {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.competenceKine .equipe h3 {
    font-size: 1.5em;
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.competenceKine .equipe ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.competenceKine .equipe li {
    margin-bottom: 0.75em;
    border-bottom: 1px dashed rgb(180,180,180);
    padding-bottom: 0.5em;
    position: relative;
    padding-left: 1.5em;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.competenceKine .equipe li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: rgb(0,153,51);
    font-size: 0.8em;
    top: 0.2em;
}

.competenceKine .equipe li:hover {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .competenceKine .contentCompetence {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0em;
        gap: 1em;
    }

    .competenceKine .image-container {
        height: auto;
    }
}