nav {
    display: flex;
    padding: 20px 50px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: var(--Background, #2b2b2b);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    #logo {
        margin-top: 7px;
    }
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    a {
        transition: all 0.5s ease;
        display: flex;
        height: 46px;
        padding: 0px 20px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        color: #fff;
        text-align: center;
        font-family: "Work Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%; /* 22.4px */
    }
}
#signup {
    border-radius: 20px;
    background: #a259ff;
    display: flex;
    height: 60px;
    padding: 0px 30px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 1px solid #a259ff;
    &:hover {
        background-color: #2b2b2b;
        border-radius: 20px;
        border: #a259ff 1px solid;
    }
}
#burger-close {
    display: flex;
    height: 46px;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-align: center;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    border: 1px solid #2b2b2b;
}
#burger-close:hover {
    background: #2b2b2b;
    border: 1px solid #a259ff;
    border-radius: 20px;
}
.nav-right a:hover,
.sidebar a:hover {
    background: #a259ff;
    border-radius: 20px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.nav-right-burger {
    display: none;
}
@media (max-width: 835px) {
    .nav-right {
        display: none;
    }
    .nav-right-burger {
        display: flex;
        gap: 10px;
    }
    nav {
        #logo {
            width: 149.56px;
            height: 14.85px;
            flex-shrink: 0;
        }
    }
}

.sidebar.open {
    transform: translateX(0);
    z-index: 1000;
}

body.wsidebar::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.sidebar.close {
    transform: translateX(100%);
}

.sidebar {
    transition: all 0.5s ease;
    padding: 34px;
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: #2b2b2b !important;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    gap: 40px;
    a {
        display: flex;
        height: 46px;
        padding: 0px 20px;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
        font-family: "Work Sans";
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%; /* 22.4px */
    }
    button {
        color: #fff;
        top: 35px;
        right: 40px;
        position: absolute;
        width: 20% !important;
        height: 30px;
        border-radius: 20px;
        background: #a259ff;
        border: none;
        padding: 8px !important;
    }
    @media (max-width:650px) {
        width: 100% !important;
    }
}
