/* MenuBar-Start  */

@media (max-width: 952){ 
    nav ul li a{
        font-size: 16px; 
    } 
}
 
@media (max-width: 858px) {
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        top: 80px;
        left: -100%; 
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
    a:hover,a.active{
        background: none;
        color: #FE7E11;
    }
    #check:checked ~ ul{
        left: 0;
    }
}

/* MenuBar-End  */

 