.invertedflex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .invertedflex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.invertedflex div {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .invertedflex div {
    width: 50%;
    margin-bottom: 15px;
  }
}
.invertedflex div span {
  width: 25px;
  height: 25px;
  background: #E77885;
  color: #fff;
  z-index: 10;
  position: relative;
  text-align: center;
  padding-top: 4px;
  line-height: 1.4;
  display: inline-block;
  font-size: 12px;
}
.invertedflex div figure {
  margin-top: -25px;
}
.invertedflex div p {
  font-size: 80%;
  padding-right: 15px;
}