.nav-logo, .nav-menu, .nav-demo{
    min-width: 350px;
}

.nav-demo{
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
}
@media (max-width: 1024px) {
    .nav-logo{
        min-width: 0;
    }
    .nav-menu{
        min-width: 0;
    }
}

.nav-link{
    background-color: var(--ratio-color);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 250ms;
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    color: #000000;
    border-radius: 50rem;
}

.nav-link:hover{
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;

}

.nav-item{
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0 1rem;
}

#btn-menu {
    z-index: 5;
    cursor: pointer;
    transition: left 500ms ease-in-out;
    div {
        width: 35px;
        height: 3px;
        margin: 7px 0;
        background-color: var(--ratio-color);
        transition: transform 500ms ease-in-out, opacity 500ms, background-color 250ms;
    }
}
#btn-menu.active {
    div {
        background-color: var(--ratio-color);
    }
    #top {
        transform: translateY(10px) rotate(-135deg);
    }
    #middle {
        opacity: 0;
        transform: rotate(135deg);
    }
    #bottom {
        transform: translateY(-10px) rotate(-45deg);
    }
}
#menu-box {
    position: fixed;
    z-index: 100;
    overflow: auto;
    top: 0px;
    right: -300px;
    width: 300px;
    opacity: 0;
    padding: 20px 0px;
    height: 100%;
    background-color: #1f1f1f;
    color: var(--text-color-light);
    transition: all 350ms ease-in-out;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
#menu-box.active {
    right: 0px;
    opacity: 1;
}
#items {
    position: relative;
    top: 10%;
    /* transform: translateY(-50%); */
    .item {
        position: relative;
        cursor: pointer;
        font-family: 'Mulish', sans-serif;
        font-weight: 700;
        /* color: var(--text-color); */
        color: var(--text-color-light);
        font-size: 1.5rem;
        padding: 15px 20px;
        transition: all 250ms;
        &:hover {
            padding: 15px 25px;
            /* background-color: rgba(0, 0, 0, 0.8); */
        }
    }
}
#btn-menu, #btn-menu * {
    will-change: transform;
}
#menu-box {
    will-change: transform, opacity;
}
