.nav-wrapper {
    width: 100%;

    background-color: #ffffff;
    filter: drop-shadow(0 0 1rem rgba(0, 19, 124, 0.671));

    position: sticky;
    top: 0;
    z-index: 5;
} 

.nav {
    display: flex;
    flex-flow: column;
    align-items: center;

    width: 100%;

    z-index: 5;

    position: relative;
}

.nav-logo {
    padding: 0 1rem;

    background-color: #ffffff;

    width: 100%;
    min-height: 6rem;
    max-height: 8rem;

    display: flex;
    justify-content: center;

    z-index: 5;
}

.nav-logo img {
    object-fit: scale-down;
}

.collapse-button {
    background-color: #0b0031;
    color: #ffffff;
    width: 100%;

    font-size: clamp(2rem, 4vw, 2.4rem);
    padding: 0.6rem 1rem;

    z-index: 5;
}

#collapse-button-animation {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    transform: rotate(90deg);
    position: relative;
    left: 2px;

    transition: transform .3s ease;
}

.nav-links {
    display: flex;
    flex-flow: column;
    position: absolute;
    bottom: -10rem;
    width: 100%;

    font-size: clamp(1.8rem, 4vw, 2.2rem);

    transition: bottom ease-out .3s;
    z-index: 4;
}

.nav-links_left {
    display: flex;
    flex-flow: column;
    background-color: white;

    width: 100%;
}

.nav-links_left li div {
    display: inline-block;
    width: 100%;

    padding: 0.6rem 1rem;

    transition: all ease .3s;
}

.nav-links_right {
    display: flex;
    flex-flow: column;
    background-color: #23304b;
    
    width: 100%;
}

.nav-links_right li a{
    color: aliceblue;

    display: inline-block;
    width: 100%;

    padding: 0.6rem 1rem;

    transition: all ease .3s;
}

.nav-links_right li:last-of-type a {
    border-top: 1px solid rgba(240, 248, 255, 0.233);
}

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

    .collapse-button {
        display: none;
    }

    .nav-wrapper {
        overflow: hidden;

        text-align: center;

        position: sticky;
        top: 0;
    }

    .nav {
        flex-flow: row;
        height: clamp(6rem, 4vw, 8.5rem);
    }
    

    .nav-logo {
        all: unset;

        height: 100%;
        max-width: 600px;
        width: 40%;

        display: flex;
        justify-content: center;
        align-items: center;

        padding-left: 1rem;
    }

    .nav-links {
        all: unset;

        width: 100%;

        display: flex;
        flex-flow: row;
        justify-content: space-between;
    }

    .nav-links li {
        display: flex;
        justify-content: center;
        align-items: center;

        font-size: clamp(1.4rem, 1vw, 1.8rem);
        font-weight: 400;
    }
    
    .nav-links_left {
        all: unset;

        padding: 0 2rem;

        display: flex;
        justify-content: space-around;
        flex-grow: 1;
    }

    .nav-links_left li div{
        display: inline;
    }

    .nav-links_left li div::after {
        content: "";
        display: block;
        background-color: #000000;
        width: 10px;
        height: 1px;

        transition: width ease .3s;
    }

    .nav-links_left li div:hover {
        cursor: pointer;
        transform: scale(1.2);
    }

    .nav-links_left li div:hover::after {
        width: 100%;
    }

    .nav-links_right {
        all: unset;

        display: flex;
        gap: 2rem;
        padding-right: 2rem;
    }
    
    
    .nav-links_right li a {
        background-color: #23304b;
        padding: 1rem .6rem;
        border-radius: .5rem;
        border: 2px solid #23304b;
    }
    
    .nav-links_right li:last-of-type a {
        border-top: 2px solid #23304b;
    }

    .nav-links_right li a:hover {
        transform: scale(1.1);
        background-color: aliceblue;
        color: black;
    }

}