header {
    max-height: 114px;
    background-color: #fff;
    height: 114px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header row {
    margin: auto;
    padding: 7px;
}

header nav {
    position: absolute;
    top: 0;
    margin: auto;
        height: 114px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header nav ul {
    list-style-type: none;
    display: inline-flex;
    padding-left: 0;
}

header nav ul li {
    margin-right: 28px;
    white-space: nowrap;
}

header nav ul li a {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    line-height: 32px;
}

header nav ul li a:hover {
    text-decoration: none;
    color: #000000;
}

header nav ul li a img {
    float: left;
    margin-right: 11px;
}

.outer {
    display: flex;
    flex-wrap: wrap;
    height: calc(100vh - 114px);
}

header .logo img {
    margin-top: 24px;
    width: 248px;
}

/* déplacé depuis app.css : */

@media screen and (max-width: 991px) {
    header {
        max-height: 90px !important;
        background-color: #fff;
        height: 90px !important;
    }

    header nav {
        height: 90px;
    }

    header .logo img {
        margin-top: 30px;
        width: 168px;
    }

    .nav-container {
        position: absolute!important;
        top: 0!important;
        left: 0!important;
    }

    .responsive-nav {
        position: absolute;
        top: 0;
        width: auto;
        height: auto;
        z-index: 90;
        width: 90px!important;
        height: 90px!important;
        color: yellow;
        overflow: hidden;
        border-radius: 3px;
        cursor: pointer;
        display: block !important;
        margin: 0!important;
    }

    .responsive-nav:after {
        content: "\2630";
        color: #182470;
        font-size: 48px;
        position: absolute;
        bottom: 4px;
        left: 24px;
    }

    .responsive-nav--open {
        overflow: visible;
        color: black;
    }

    .responsive-nav--open:after {
        content: "\2630";
        color: #182470;
    }

    .responsive-nav__list {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 0;
        margin-top: 65px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #ffffff;
        width: 300px;
        padding: 20px;
        border: 0;
        border-radius: 0px;
        z-index: -1;
    }

    .responsive-nav__item {
        display: inline-block;
    }

    .responsive-nav__link {
        color: #000;
        display: block;
        white-space: nowrap;
        padding: 10px;
        line-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* small desktop */
@media screen and (min-width: 992px) and (max-width: 1439px) {
    .responsive-nav {
        padding-left: 1rem;
    }

    header nav ul li a img {
        margin-right: 8px;
    }

    header nav ul li {
        margin-right: 15px;
    }
}

/* full-width desktop */
@media screen and (min-width: 1440px) {
    .responsive-nav {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
