.header {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 2px solid #eee;
    padding: 20px;
}

.logos-gauche {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.logos-gauche img {
    height: 50px;
    margin-right: 20px;
}

.logos-gauche img:last-child {
    margin-right: 0;
}

@media (max-width: 700px) {
    .header {
        flex-direction: row;
        padding: 15px 5px;
    }

    .logos-gauche {
        flex-direction: row;
        margin-left: 20px;
    }

    .logos-gauche img {
        height: 50px;
        width: auto;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .logos-gauche img:last-child {
        margin-right: 0;
    }

    .content {
        margin-top: 60px;
    }
}

.content {
    text-align: center;
    margin-top: 90px;
}

.icon {
    margin-top: 30px;
    margin-bottom: 30px;
}

.titre {
    color: #54108B;
    font-size: 28px;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 900;
    line-height: 33px;
    word-wrap: break-word;
    padding: 24px;
}

.desc {
    color: black;
    font-size: 16px;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    padding: 0px 20px 0px 20px;
}