#header {
    padding: 2em var(--gutter-left) 0;
    height: var(--header-height);
}
.headerInner {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--violet);
    height: 100%;
}

/**************************************************************************************************/
/********* LOGO
/**************************************************************************************************/
#logo {
    display: flex;
    align-items: center;
}
#logo svg {
    width: 200px;
    height: auto;
    margin-right: 2em;
}

/**************************************************************************************************/
/********* TOP MENU
/**************************************************************************************************/
#topMenu {
    position: relative;
    padding-top: 2.8em;
    flex:1;
}
#topMenu .mod-menu {
    display: flex;
    height: 100%;
    align-items: stretch;
    justify-content: flex-end;
}

#topMenu .mod-menu > li > a {
    display: flex;
    height: 100%;
    align-items: center;
}

/** Actualité links **/
#topMenu .mod-menu .item-105 {
    font-weight: bold;
}

/**************************************************************************************************/
/********* RESPONSIVE
/**************************************************************************************************/
@media screen and (min-width: 951px) {
    #topMenu .mod-menu > li {
        height: 100%;
        margin-right: 4vw;
    }
    #topMenu .mod-menu > li:last-child,
    #topMenu .mod-menu > li:nth-last-child(2) {
        margin-right: 0;
    }
    /* Contact button link */
    #topMenu .mod-menu .item-106 {
        position: absolute;
        top: .8em;
        height: auto;
        right: 0;
        width: 13rem;
    }
    #topMenu .mod-menu .item-106 .btn {
        justify-content: center;
        padding: .5em .5em;
    }
    #topMenu .mod-menu .item-106 .btn {
        width: 13rem;
    }
    #topMenu .mod-menu .item-106 .btn:hover {
        letter-spacing: .1em;
    }
}
@media screen and (max-width: 950px) {
    #logo svg {
        width: 150px;
    }
    #header {
        padding: 0 var(--gutter-left);
    }

    #topMenu .mod-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    #topMenu .mod-menu > li a {
        font-size: 1.5rem;
        padding: 1rem 0;
        margin: .5rem 0;
    }
    #topMenu .mod-menu .item-106 .btn {
        font-size: 1rem;
        justify-content: center;
        padding: .5rem 1rem;
    }
    #topMenu .mod-menu .item-106 .btn:hover {
        letter-spacing: .1em;
    }
}
