body{
    margin-top: var(--header-height);
}
header{
	background-color: var(--col-pink-f);
	font-family: var(--font-main);
    color: white;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	box-shadow: var(--box-shadow);
    transition: var(--transition-all);
}
#header-mobile{
    display: none;
}

nav{
	height: 100%;
    width: var(--header-max-width);
    max-width: 100%;
    margin: 0 auto;
}
    #menu-ul{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: center;
        position: relative;
    }
    #menu-ul li{
        height: 100%;
        list-style-type: none;
        list-style-position: inside;
        margin: 0 .8em;
    }
    nav a,
    nav .nav-a
    {
        text-transform: uppercase;
        font-weight: 500;
        font-size: var(--menu-font-size);
        padding: 0 .5em;
        height: 100%;
        letter-spacing: .05em;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: center;
        position: relative;
        cursor: pointer;
    }
    /*nav a:hover{
        color: var(--col-pink-c);
    }
    nav a.active{
        color: var(--col-pink-c);
    }*/
    nav>ul>li>a:after {
        content: '';
        display: block;
        width: 0%;
        height: 8px;
        transition: width .3s;
        background: var(--col-pink-c);
        position: absolute;
        left: 0;
        bottom:0;
        border-radius: 4px 4px 0 0;
    }
    nav>ul>li>a:hover:after{
        width: 100%;
    }
#header-logo{
    /*width: 15%;*/
    height: 100%;
    display: block;
    transition: var(--transition-all);
}

#header-logo a{
    width: 100%;
    height: 100%;
    position: relative;
    line-height: 1.05;
    font-size: 120%;
    letter-spacing: 0;
    font-weight: 700;
}
#header-logo a:before{
    content: "";
    height: 80%;
    aspect-ratio: 1/1;
    display: block;
    background-image: url(../img/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:  contain;
    transition: var(--transition-all);    
    padding-right: 1em;
}

#header-user-link,
#header-lang-link{
    font-size: 140%;
}
#header-lang-link{
    position: relative;
}

#header-langs{
    position: absolute;
    background-color: var(--col-pink-f);
    top: 100%;
    left: 0;
    transform: translateX(-33%);
    display: none;
    border: 1px solid var(--col-pink);
    text-align: left;
    padding: 6px;
    z-index: 15000;
}

#header-lang-link:focus-within #header-langs,
#header-lang-link:hover #header-langs
{
    display: block;
}

#header-langs a{
    padding: .5em;
    width: max-content;
}
#header-langs a:hover{
    color: var(--col-pink-c);
}
#header-langs li.lang-selected a{
    color: var(--col-pink-c);
    font-weight: 600;
    text-decoration: underline;
}


/* HEADER SMALL */
@media (min-width: 1080px) {
	.header-small header{
        height: var(--header-small-height);
	}
	.header-small #header-top,
    .header-small #header-top-agences{
		display: none;
	}
	.header-small nav{
		height: 100%;
	}
	.header-small #menu-ul{
        padding: 0;
	}
    .header-small nav a{
        align-items: center; 
    }
}