/* SECTION CLIENT */
#client .row {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

#client img {
    width: 45%;
    height: auto;
}

.description {
    width: 50%;
}

.client-h1,
.client-h2 {
    font-weight: 400;
    text-align: left;
    text-transform: none;
}

.client-h1 {
    font-size: 90%;
    margin-bottom: 50px;
}

.client-h2 {
    font-size: 110%;
    margin-bottom: 15px;
}

.our-offer li {
    font-size: 90%;
    margin-left: 30px;
}

.new-department {
    margin-top: 50px;
    font-size: 90%;
}

@media only screen and (max-width: 780px) {
    #client .row {
        flex-direction: column-reverse;
        align-items: center;
    }

    .description {
        width: 100%;
    }

    #client .row img {
        width: 90%;
        max-width: 400px;
        margin: 0 auto 20px auto;
    }
}