.dello-banners{
    display:grid;
    grid-template-columns:repeat(auto-fit,190px);
    gap:10px;
    justify-content:center;
}

.dello-banner-item{
text-align:center;
transition:.4s;
display:flex;
justify-content: center;
background-color: #fff;
padding:10px 5px 10px 5px;
}

.dello-banner-item img{
width:100%;
height:auto;
display:block;
}

.dello-banner-item:hover{
transform:translateY(-5px);
}

.dello-banner-item .titulo{
display:block;
margin-top:10px;
font-weight:600;
}


/* tablet */

@media(max-width:1024px){

.dello-banners{
grid-template-columns:repeat(3,1fr);
}

}


/* mobile */

@media(max-width:600px){

.dello-banners{
grid-template-columns:repeat(2,1fr);
}

}