JSFiddle - React, Tailwind, and code Playground

HTML

<div class="cnt">      
<div class="ph">
          
<div class="pi">
<img class="ia" src="http://tex.ws17.ru/media/img/map.png">
</div>
            
<div class="pt1">
Диагностическая карта сразу же<br/>
заносится в базу ЕАИСТО ГИБДД
</div>
                 
</div>
</div>

CSS

.cnt {
  max-width: 1200px;
  min-width: 280px;
  margin: 0 auto;
  padding: 0 50px 0 50px
}
.ph {
  background: url(http://tex.ws17.ru/media/img/ph.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.ph::after {
  content: '';
  display: block;
  padding-top: 74%;
}
.phhh img{
  max-width: 250px;
  margin-left: -20px;
}

.pi {
  position: absolute;
  left: 11.6%;
  top: 5.7%;
}
@-webkit-keyframes pulsate {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes pulsate {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.ia{
  position: absolute;
  -webkit-animation: pulsate .5s infinite alternate;
          animation: pulsate .5s infinite alternate;
}


.pt1{
    font-weight: 400;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 0;
  margin-top: 115px;
  margin-left: 260px;
}