.statistics {
  &__header {
    color: #000;
  }

  &__heading {
    color: inherit;

    &:after {
      background-color: $blue;
      content: '';
      display: block;
      height: 8px;
      margin: 16px auto 0 auto;
      width: 102px;
    }
  }

    &__item:nth-child(3n+2) &__group {
      background-color: $red;
    }

    &__item:nth-child(3n) &__group {
      background-color: #D5E8C7;
    }

  &__group {
    background-color: $blue-mid;
    color: $blue;
    height: 100%;
    font-size: $font-size-md;
    padding: 51px 52px;

    &__icon {
      height: 72px;
      margin: 0 auto 29px auto;

      img {
        height: 100%;
      }
    }

    &__stat {
      font-size: 3rem; // 48px
      font-weight: $headings-font-weight;
      letter-spacing: -0.5px;
      line-height: 1.5;
      margin: 0;
    }
  }
}