
@media (max-width: 600px){
    header{
        padding: 16px 2%;
    }
    .home{
        height: 150vh;
        padding-top: 60px;
        overflow-y: scroll;
        -ms-overflow-y: scroll;
    }
    .home .svg{
        height: auto;
        padding: 16px 0;
    }
    .home .home-text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .describe{
        width: 100%;
        height: auto;
        padding: 0 2px;
    }
    .describe-content{
        margin-top: 0rem;
        padding-bottom: 8px;
        grid-template-columns: fr;
    }
    .others{
        width: 100%;
        height: auto;
        padding: 0 2px;
    }
    .others .others-content{
        grid-template-columns: repeat(auto-fit,minmax(240px,auto))
    }
    #icon-menu{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #212529;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all .40s ease;
        overflow: auto;
    }
    header.sticky{
        padding: 16px 2%;
    }
    .navbar li{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .navbar li a{
        display: inline-block;
        width: 100%;
    }
    .li1 a{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    li1 a span{
        color: #fff;
    }
    .navbar a{
        display: block;
        color: var(--bg-color);
    }
    .navbar a:hover{
        color: var(--bg-color);
        transform: translateY(-5px);
    }
    .navbar.open{
        right: 0;
    }
    .test-list{
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        background: #33393F;
        padding: 4px 0px;
        border-radius: 4px;
    }

}
