.links {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;

  &__item {
    margin-bottom: 15px;

    @media (min-width: 992px) {
      margin-bottom: 0;
      margin-right: 37px;
    }

    &--last {
      margin-bottom: 0;
      margin-right: 0;
    }
  }

  &__text {
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    color: black;

    &--link {
      color: $blue;
      font-size: 20px;

      &:hover {
        color: $blue;
        text-decoration: none;
      }
    }
  }

  @media (min-width: 992px) {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
}