.nav
{
    width: 100vw;
    height: 46px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    background: #fff;
}
.nav div
{
    height: 100%;
}
.nav ul
{
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0;
}
.nav ul li
{
    list-style: none;
}
.nav ul li a
{
    height: 46px;
    padding: 0 0.7em;
    display: block;
    transition-duration: 0.4s;
}
.nav ul .logo img
{
    height: 86%;
    top: 7%;
    position: relative;
}
.nav ul li a span
{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #135851;
    text-transform: uppercase;
    transition-duration: 0.4s;
}
.nav ul .link-right
{
    float: right;
    margin-left: 1em;
}
.nav ul .link-right a
{
    color: white;
    text-decoration: none;
    display: block;
}
.nav ul .link-right a:hover
{
    background-color: var(--color-dark);
}
.nav ul .link-right a:hover span
{
    color: white;
}
@media screen and (max-width: 1024px) {
    .nav
    {
        top: 0;
    }
}


.nav ul .menu-hamb
{
    float:right;
    padding-top: 8px;
    display: none;
}
.nav .menu-hamb label
{
    width: 30px; height: 30px;
    display: inline-block;
    cursor: pointer;
}
#menu-hamb-1,
#menu-hamb-2
{
    width: 20px; height: 3px;
    margin: auto;
    background-color: var(--color-dark);
    display: block;
    position: relative;
}
#menu-hamb-1
{
    top: 9px; left: 0;
}
#menu-hamb-2
{
    top: 18px; left: 0;
}


#menu-mobile
{
    position: fixed;
    top: 46px;
    right: 0;
    background: white;
    height: calc(100% - 46px);
    width: 100%;
    transform: translateX(100%);
    transition-duration: 0.4s;
}
.menu-active
{
    transform: translateX(0) !important;
}
#menu-mobile .link
{
    padding: 0.5em 2em;
    border-bottom: 1px solid #ccc;
    transition-duration: 0.4s;
    cursor: pointer;
}
#menu-mobile .link:hover
{
    background-color: var(--color-dark);
}
#menu-mobile .link:hover span
{
    color: white;
}
#menu-mobile .link a
{
    text-decoration: none;
}
#menu-mobile .link span
{
    text-align: right;
}
#menu-mobile .slogan
{
    height: auto;
    bottom: 3em;
    top: initial;
    width: 100%;
}
#menu-mobile .slogan span
{
    display: block;
    text-align: center;
    font-family: 'Script';
    color: var(--color-dark);
    font-size: 1.2em;
}