.nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background-color: var(--color-white);
    box-shadow: var(--shadow-nav);
}

.nav li a {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding: 0 var(--space-md);
}

.nav .nav-logo {
    margin-right: auto;
    font-size: var(--font-size-hero);
    font-weight: bold;
}

.nav .nav-logo img {
    width: 50px;
}
