.grid-howtodo{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:40px}
.grid-howtodo img{width:70px;height:70px;object-fit:contain;margin-bottom:20px}
.do-name{width:95%}
@media(min-width:576px) and (max-width:991px) {
.grid-howtodo{grid-template-columns:repeat(2,1fr);grid-gap:30px}
}
@media(max-width:575px ) {
.grid-howtodo{grid-template-columns:repeat(1,1fr);grid-gap:30px}
}