.page__block__digits {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page__block__digits__item {
    width: 33.333333%;
    text-align: center;
    border-left: 2px solid #DEE3E6;
    color: #0160AB;
}

.page__block__digits__item:first-child {
    border: none;
}

.page__block__digits__item__title {
    font-size: 38px;
    line-height: 1;
}

.Home h1.indexpage + .page__block__digits {
  margin: 20px 0 50px;
}


@media (max-width: 640px) {
  .Home h1.indexpage + .page__block__digits {
    margin: 0 0;
  }

  .Home h1.indexpage {
    padding: 0 0 20px;
  }

  .page__block__digits {
      flex-direction: column;
  }

  .page__block__digits__item {
      padding-top: 20px;
      padding-bottom: 20px;
      border: none;
      position: relative;
      width: 100%;
  }

  .page__block__digits__item:before {
    content: "";
    border-top: 2px solid #DEE3E6;
    width: 50px;
    height: 2px;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 0px;
  }

  .page__block__digits__item:first-child:before {
    border: none;
  }
}
