.products{
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    justify-content: center;
}

.products .box{
    width: 20%;
    padding: 5px;
    align-items: center;
}

@media (max-width:991px){
    .products{
        display: flex;
        flex-wrap: wrap;
        padding: 0 10px;
        justify-content: center;
    }
    
    .products .box{
        width: 50%;
        padding: 5px;
        align-items: center;
    }
}