nav {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    position: absolute;
    z-index: 99999;
}

.nav-container {
    height: auto;
    width: 65%;
    display: flex;
    align-items: center;
    padding: 1vw;
    background-color: rgba(255, 255, 255, 0.0075);
    backdrop-filter: blur(0.15vw);
    border-radius: 3vw;
    margin: 2vw;
    box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
}

.nav-left {
    display: flex;
    margin-left: 1.25vw;
    align-items: center;
    justify-content: center;
}

.nav-right {
    display: flex;
    position: absolute;
    right: 1.5vw;
}

.nav-item {
    background-color: rgba(255, 255, 255, 0.056);
    color: rgb(184, 184, 184);
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 0.1vw;
    margin: 0.35vw;
    padding: 0.5vw 1vw;
    border-radius: 0.75vw;
    transition: 0.3s;
    box-shadow: vw vw 1vw 0.5vw rgba(128, 0, 128, 0);
    border: 0.1vw solid rgba(141, 24, 141, 0);
    box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
}

.nav-item:hover {
    background-color: rgba(151, 31, 188, 0.187);
    color: rgb(141, 24, 141);
    border: 0.1vw solid rgba(141, 24, 141, 0.746);
}

.nav-item-active {
    background-color: rgba(151, 31, 188, 0.187);
    color: rgb(141, 24, 141);
    border: 0.1vw solid rgba(141, 24, 141, 0.746);
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 0.1vw;
    margin: 0.35vw;
    padding: 0.5vw 1vw;
    border-radius: 0.75vw;
    transition: 0.3s;
    box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
}




.nav-logo img {
    position: relative;
    width: 2vw;
    display: flex;
    border-radius: 50%;
    margin-left: 0.8vw;
    transform: scale(1.5);
    transition: 0.25s ease;
}

.nav-logo img:hover {
    transform: scale(1.65);
}

    .mobile-menu {
        display: none;
    }


@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        position: relative;
        z-index: 99999;
        padding: 5vw;
        width: 100%;
        border-radius: 6vw;
    }

    .nav-left, .nav-right {
        display: none;
    }

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 7vw;
    height: 5vw;
    cursor: pointer;
    z-index: 999999;
}

.hamburger div {
    height: 0.8vw;
    background: white;
    border-radius: 1vw;
    transition: 0.3s ease;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(1vw, 1vw);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(2vw, -2vw);
}



    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgb(11 11 11 / 72%);
        backdrop-filter: blur(1vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vw;
        transition: right 0.45s cubic-bezier(0.72, -0.01, 0.38, 0.98);
        z-index: 99998;
    }

    .mobile-menu-active {
        right: 0;
    }

    .mobile-menu a {
        font-size: 5vw;
        color: white;
        font-weight: 600;
        text-decoration: none;
        padding: 3vw 5vw;
        width: 65%;
        text-align: center;
        border-radius: 3vw;
        background-color: rgba(255, 255, 255, 0.05);
        transition: 0.3s;
        border: 0.2vw solid rgb(141 24 141 / 0%);
    }

    .mobile-menu a:hover,
    .mobile-menu a.nav-item-active {
        color: rgb(141, 24, 141);
        background-color: rgba(151, 31, 188, 0.187);
        border: 0.2vw solid rgba(141, 24, 141, 0.746);
    }
.nav-logo img {
    position: relative;
    width: 7vw;
    display: flex;
    border-radius: 50%;
    margin-left: 0.8vw;
    transform: scale(1.5);
    transition: 0.25s ease;
}

.nav-logo img:hover {
    transform: scale(1.65);
}
}
