.stats {
  position: relative;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.stats-row .stat {
  width: 50%;
}
@media only screen and (min-width: 992px) {
  .stats-row .stat {
    width: 25%;
  }
}
.stats-row .stat img {
  display: block;
  margin: 0 auto 14px;
  height: 70px;
  width: auto;
}
.stats-row .stat .value {
  text-align: center;
}
.stats-row .stat .value span {
  display: block;
}
.stats-row .stat .value .count {
  font-size: 32px;
  margin: 0 0 12px;
}
@media only screen and (min-width: 992px) {
  .stats-row .stat .value .count {
    font-size: 46px;
  }
}
.stats-row .stat .value .metric {
  font-style: italic;
}
@media only screen and (min-width: 992px) {
  .stats-row .stat .value .metric {
    font-size: 18px;
  }
}
