.mnc {
    position: sticky;
    top: 0;
}

.nav-header {
    display: flex;
    justify-content: end;
    background-color: #001019;
    width: 100%;
}

svg.menu-button {
    margin: 2rem;
    width: 2rem;
    height: 2rem;
    fill: #0065a0;
}

.menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: right;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    opacity: 0;
    transform: translateY(-20%);
    pointer-events: none;
    background-color: #001019;
}

.show-menu {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
}

.menu a {
    padding: 1rem 3rem 1rem 0;
    font-size: 1.2rem;
}

.menu a:hover, #active-nav {
    background-color: #003e62;
}

@media screen and (min-width: 800px) {

    .mnc {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

@media screen and (min-width: 1080px) {
    
    .nav-header {
        display: none;
    }

    .menu {
        position: static;
        pointer-events: auto;
        opacity: 1;
        transform: translateY(0px);
        flex-direction: row;
        justify-content: end;
        margin-bottom: 2rem;
    }

    .menu a {
        padding: 3rem 2rem 1.7rem;
        width: 5rem;
        text-align: center;
    }
}