#header-mobile{
    display: none;
}

header{
    width: 20%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: fixed;
    box-shadow: var(--box-shadow);
}
main{
    width: 80%;    
    margin-left: 20%;
}

nav{
    font-family: var(--font-special);
    font-size: var(--menu-font-size);
    letter-spacing: 1px;
}

#menu-ul,
#coord-ul{
    padding: 14%;
    list-style-type: none;
}

#menu-ul a:not(#menu-index-logo){
    display: block;
    padding: .6em 0;
    border-bottom: 1px solid #eaeaea;
    width: 60%;
}
#menu-ul a:hover:not(#menu-index-logo){
    color: #000;
    border-bottom: 1px solid #333;
}

#header-logo{
    margin-bottom: 15%;
}
#header-logo img{
    width: 100%;
    height: auto;
}

.index #menu-index,
.prestations #menu-prestations,
.contact #menu-contact
{
    color: var(--font-active) !important;
    border-color: var(--font-active) !important;
}

#coord{
    color: white;
    background-color: var(--bg-grey);
}
#coord-nom{
    font-family: var(--font-special);
    font-size: 150%;
}

#coord li:not(:last-child){
    margin-bottom: 1em;
    white-space: nowrap;
}

#coord i{
    font-size: 90%;
    opacity: .8;
    width: 1.2em;
    text-align: center;
    margin-right: .4em;
}

@media screen and (max-width: 1079px) {
    .navOut header{
        left:0;
    }
    header{
        width: 100vw;
        background-color: white;
        height: calc( 100dvh - var(--header-mobile-height) );
        min-height: unset;
        position: absolute;
        left:-100vw;
        transition: left .3s;
        z-index: 1000;
        position: fixed;
    }

    body{
        position: relative;
        margin-top: var(--header-mobile-height);
        overflow-x: hidden;
        width: 100dvw;
    }
	#header-mobile{
        display: block;
        width: 100dvw;
        background-color: white;
        height: var(--header-mobile-height);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        transition: var(--transition-all);
        box-shadow: var(--box-shadow);
    }
    #menuToggle {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 30px;
        line-height: 45px;
        margin: 9px 0;
        padding: 0 10px 0 10px;
        background-color: rgba(255,255,255,.2);
        /*color: white;*/
        border-radius: 0 6px 6px 0;
    }
    #logoHome {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-weight: 600;
    }
    #logoHome img{
        height: 60%;
        width: auto;
        margin-right: 1em;
    }


    nav {
        width: 100%;
        height: unset;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        overflow: visible;
        padding: 2em;
    }
    #menu-ul {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
        padding: 0;
    }
        .menu-li {
            margin: 0;
            padding: 0;
        }
        #header-logo{
            display: none;
        }


    main{
        width: 100%;
        margin: 0;
    }
}