.container-widgets{
    display: none;
}

@media (max-width: 768px) {
    .container-widgets{
        display: flex;
        justify-content: center;
        align-self: center;
    }
    

    .table-widgets{
        display: flex;
        justify-self: center;
        align-self: center;
        flex-direction: column;

    }
    
    .table-widgets img{
        margin-bottom: 5px;
    }
    
    
    .table-widgets img {
        border-radius: 16px;
        filter: saturate(100%);
        transition: 0.5s;
        
        &:hover {
        filter: saturate(120%);
        transform: scale(1.05);
    }
    
}   