/* Navigation Box */
nav-container {
    z-index: 5;
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 175px;
}

nav-wrapper {
    width: 75vw;
    gap: 115px;
    display: flex;
    align-items: center;
}

/* Logo */
nav-wrapper img {
    width: 155px;
}

/* Options */
.nav-items item-wrapper {
    display: flex;
    gap: 115px;
}

.nav-items h2 {
    transition: 0.15s;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #939393;
    cursor: pointer;
}

.nav-items h2::after {
    opacity: 50%;
    transition: 0.5s;
    display: flex;
    content: '';
    width: 0;
    margin-top: 3px;
    height: 3px;
    background-color: #0f224a;
}

.nav-items h2:hover::after {
    display: flex;
    content: '';
    width: 35px;
    margin-top: 3px;
    height: 3px;
    background-color: #103074;
}

.nav-items h2.active::after {
    display: flex;
    content: '';
    width: 45px;
    margin-top: 3px;
    height: 3px;
    background-color: #1a48ad;
}

.active {
    color: #d5d5d5 !important;
}



/* Hamburger menu */
.nav-hamburger {
    transition: 0.25s;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 3px solid #10307484;
}

.hamburger-bar {
    transition: 0.25s;
    display: block;
    width: 25px;
    height: 2px;
    margin: 2px;
    background-color: #939393;
}



/* Phone view */
@media(max-width: 935px) {
    .nav-hamburger {
        display: flex;
    }


    nav-wrapper {
        justify-content: space-between;
    }

    nav-wrapper img {
        width: 145px;
    }

    .nav-hamburger.active {
        background-color: #10307449;
    }

    .nav-hamburger.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active .hamburger-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-hamburger.active .hamburger-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-items {
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #0d1015;
        transition: 1s;
        position: absolute;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        display: flex;
    }

    .nav-items.toggled {
        transform: translateY(0%);
    }

    .nav-items item-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .nav-items h2 {
        font-size: 45px;
    }
}