.nav__outer {
    width: 100%;
    height: calc(var(--header-height));
    box-sizing: border-box;
    padding: 10px;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--pmg-white);
    z-index: 11;
    transition: height .2s ease-in-out, background-color .3s ease-in-out;
}

header.nav__outer + * {
    margin-top: var(--header-height);
}

.nav__menu-wrapper {
    width: 45%;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
}

.nav__menu-entry {
    font-family: plantin, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
	color:var(--pmg-black);
}

.nav__menu-logo {
    height: 100%;
    width: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav__menu-logo img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
}

@media only screen and (max-width: 1400px) {
    .nav__menu-entry {
        padding: 4%;
    }

    .nav__menu-entry--desktop-only {
        display: none;
    }

    .nav__menu-wrapper--left {
        justify-content: flex-start;
    }

    .nav__menu-wrapper--right {
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 767px) {
    .nav__menu-wrapper--right {
        justify-content: flex-end;
        flex-flow: column-reverse;
        align-items: flex-end;
    }
}

@media only screen and (max-width: 440px) {
    .nav__menu-logo {
        display: none;
    }
}

