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: 17.3%;
  top: 13.49%;
  transform: translate(-50%, -50%);
  width: 139px;
  height: 141px;
}

@-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;
  top: 0;
  left: 0;
  -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;
}