.nav-pc {
    height: 90px;
    width: 100%;
    position: absolute;
    margin-top: 38px;
    font-size: 0.9rem;
        z-index: 1000;
}





.nav-menu {
    display: flex;
    align-items: center;
    justify-content: start;
    min-width: 20%;
    width: fit-content;
    height: 100%;
    margin-left: 10%;

}



.nav-item {
    margin: 15px;
}

.nav-item:nth-child(1) {
    margin-left: 0;
}

.nav-item a {
    text-decoration: none;
    color: #D6DBEF;
    transition: .4s;
}

.nav-item a:hover {
    text-decoration: none;
    color: #afbef8;
}

.nav-item-selected a {
    color: #a99aff;
}

.nav-item-reg-login {
    position: relative;
}


.nav-buttons {
    width: 25%;
    height: 100%;
    display: flex;
}

.nav-buttons span {
    margin: 5%;
}


.ui-btn-exp {
    display: flex;
    padding: 15px;
    color: #bf8aff;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    transition: .4s;
    cursor: pointer;
}

.ui-btn-exp:hover {
    filter: brightness(1.5);
}

.ui-btn-exp p {
    position: absolute;
}

.ui-btn-exp span:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ui-btn-exp span:nth-child(1)::before {
    content: "";
    position: absolute;
    padding-right: 55px;
    padding-left: 55px;
    padding-top: 25px;
    padding-bottom: 25px;
    border: 2px solid #5c00f0;
    transform: skew(-20deg);
}

.ui-btn-exp span:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ui-btn-exp span:nth-child(2)::before {
    content: "";
    position: absolute;
    padding: 4px;
    background-color: #5c00f0;
    margin-left: 90px;
    margin-top: 47px;
}

.ui-btn-exp span:nth-child(2)::after {
    content: "";
    position: absolute;
    padding: 4px;
    background-color: #5c00f0;
    margin-left: -90px;
    margin-top: -47px;
}

.ui-btn-exp-fill {
    color: #d08bff;
}

.ui-btn-exp-fill span::before {
    background-color: #5c00f0;
}


.mobile-btn {
    display: none;
    width: auto;
    height: 100%;
    margin-right: 20px;
}

.mobile-btn img {    
    width: 32px;
    height: 32px;
    filter: invert(2);
}


@media only screen and (max-width: 768px) {
    .nav-pc {
        margin-top: 20px;
        display: flex;
        justify-content: flex-end;
        position: fixed;
    }

    .mobile-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        width: 100px;
        height: fit-content;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        transition: .4s;
        transform: translateX(200%);
    }

    .nav-item {
        margin-left: 0;
        width: 100%;
        padding: 10px;     
        background-color: #4e08c0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-item:last-child {
       border-bottom-left-radius: 15px;
    }

    .nav-item:first-child {
        border-top-left-radius: 15px;
    }

    .nav-item a {
        display: flex;
    }
}


.active {
    transform: translateX(0);
}