JSFiddle - React, Tailwind, and code Playground
HTML
<div class="services__item">
<div class="services__icon">
<img src="http://s1.iconbird.com/ico/2013/9/446/w512h5121380376664MetroUIPhone.png" alt="pic1">
</div>
<p class="services__title">Консультаційні послуги</p>
</div>
CSS
.services {
background-color: #f3f3f3;
padding: 30px 0;
}
.services__wrap {
display: flex;
flex-wrap: wrap;
padding: 0 10px;
margin: 0 -10px;
margin-top: 10px;
}
.services__item {
width: calc(100% / 3 - 20px);
margin: 0 10px;
margin-bottom: 30px;
}
.services__item:hover .services__icon img {
transform: rotate(360deg);
}
.services__icon img {
width: 25px;
height: 25px;
display: block;
margin: 0 auto;
transition: all 300ms linear;
}
.services__title {
font-size: 18px;
line-height: 1.89;
text-transform: uppercase;
text-align: center;
letter-spacing: 1px;
padding-top: 18px;
font-weight: 300;
}