/*--------------------- Responsive (Start) ---------------------*/
@media (max-width: 991px){
    html{
        font-size: 75%;
    }
 
    .sidebar{
        left: -120%;
    }

    .sidebar.active{
        left: 0%;
    }

    #menu{
        display: block;
    }

    body{
        padding: 0;
    }

}

@media (max-width: 768px){

    html{
        font-size: 65%;
    }

    section{
        padding: 3rem 2rem;
    }

    .home{
        min-height: 70rem;
    }

    .home .box-container{
        gap: 2rem;
    }

}

@media (max-width: 450px){
    html{
        font-size: 50%;
    }

    .sidebar{
        width: 100%;
    }

    .home{
        min-height: 100vh;
    }

    section{
        padding: 3rem 1rem;
    }

    .portfolio-item{
        width: 100%;
    }
    
}

/*--------------------- Responsive (End) ---------------------*/