/* sidebar */
    nav{
        position: fixed;
        left: 0; top: 0;
        height: 100dvh;
        background: var(--black-bg);
        padding: 12px;
        display: flex;
        justify-content: center;
        z-index: 1000000;
        border-right: 1px solid var(--light-white);
    }

    nav ul{
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    nav ul li{
        padding: 5px;
    }

    nav ul li:first-child{
        border-radius: 0;
        border-bottom: 1px solid var(--light-white);
    }
    
    nav ul li:first-child a{
        width: 50px; height: auto;
    }
    
    nav ul li:first-child a img{
        width: 100%; height: 100%;
        object-fit: contain;
    }

    nav ul li:last-child{
        margin-top: auto;
        border-radius: 0;
        padding-top: 10px;
        border-top: 1px solid var(--light-white);
    }

    nav ul li:nth-child(even):hover:not(:first-child), nav ul li:nth-child(even).active{
        background: var(--blue);
        color: var(--white);
        border-radius: 8px;
    }

    nav ul li:nth-child(odd):hover:not(:first-child), nav ul li:nth-child(odd).active{
        background: var(--red);
        color: var(--white);
        border-radius: 8px;
    }

    nav ul li a{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    nav ul li a i{
        font-size: 20px;
    }

    nav ul li a span{
        font-size: 12px;
    }

    nav ul li a i, nav ul li a span{
        color: var(--white);
    }
/* sidebar */

/* responsive */
    /* sidebar */
        @media screen and (max-width: 600px){
            nav{
                clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            }
            
            nav.active{
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li:last-child{
                margin-top: 0;
                padding: 5px;
                border-top: none;
            }
        }
    /* sidebar */
/* responsive */