.sezione{
    max-width: 140rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contenitore{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.articolo{
    width: 230px;
    margin: 10px;
    margin-top: 50px;
}

.articolo table{
    text-align: center;
    width: 100%;
    border-collapse: collapse;
    color: #000;
    font-size: 10px;
}

.img_esplicative{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.img_esplicative div{
    display: flex;
    flex-direction: column;
    width: 250px;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 14px;
}

.img_sopra{
    width: 400px;
}

.tbl_esplicativa{
    width: 450px;
    height: fit-content;
    text-align: center;
    border-collapse: collapse;
}

.tbl_esplicativa th{
    color: #fff;
    background-color: #dcdddf;
    border: 1px solid black;
}

.tbl_esplicativa td{
    border: 1px solid black;
}

.galleria{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.img_galleria{
    width: 500px;
    margin-bottom:30px;
}

@media only screen and (max-device-width: 600px) {
    .contenitore {
        width: 100%;
        padding: 0px;
        justify-content: space-around;
    }
    
    .articolo{
        width: 40%;
        margin: 3%;
    }
    
    .articolo table{
        font-size: 8px;
    }
    
    .img_sopra{
        width: 100%;
    }
    
    .tbl_esplicativa{
        width: 100%;
    }
}