proba esto:
Código CSS:
Ver original.icons-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 70px;
margin: 40px auto;
box-sizing: border-box;
border-radius: 10px;
background-color: rgba(255,255,255,0.35);
}
.icon-box {
padding:0 40px;
margin: 0 5px;
display:flex;
align-items: center;
justify-content: center;
}
.icon-box img {
width: 60px;
height: 44px;
margin-right: 12px;
}
.icon-box h1 {
font-family: roboto;
font-weight: 700;
font-size: 15px;
color: #222;
}
.icon-box h2 {
font-family: roboto;
font-weight: 400;
font-size: 14px;
color: #222;
margin-top: -12px;
}
Código HTML:
Ver original<div class="icons-container">
<div id="icon-1" class="icon-box"> <img src="images/icon-1.png"> ....
Slds