.support-block {
  padding: 85px 0;
  color: #ffffff;
  text-align: center;
  background: #141414;
}

.support-block_white {
  background: #fff;
  color: #202020;
}

.support-block__wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.support-block__title {
  font-family: "Avalon", sans-serif;
  font-size: 50px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
}

.support-block__subtitle {
  font-size: 15px;
}

.support-block__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}

.support-block__row_center {
  align-items: center;
  justify-content: center;
}

.support-block__row_center .support-block__item {
  flex: 0 0 35%;
}

.support-block__row_center .support-block__item:last-child {
  margin-top: 40px;
}

.support-block__item {
  padding: 0 25px;
  flex: 1;
}

.support-block__item-ico {
  margin-bottom: 12px;
}

.support-block__item-ico svg {
  width: 100%;
  max-height: 40px;
  fill: #0cc;
}

.support-block__item-name {
  display: inline-block;
  font-family: "Avalon", sans-serif;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  padding-bottom: 8px;
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-block__item-name:before {
  content: '';
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transition: width 0.2s ease;
}

.support-block__item-name:hover:before {
  width: 100%;
}

.support-block__item-desc {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
}

@media (max-width: 989px) {
  .support-block {
    padding: 60px 0;
  }

  .support-block__title {
    font-size: 40px;
  }

  .support-block__subtitle {
    margin-top: -20px;
  }

  .support-block__item {
    flex: 1;
    padding: 0 10px;
  }

  .support-block__item-name {
    min-height: 44px;
    font-size: 14px;
    line-height: 18px;
  }

  .support-block__item-desc {
    font-size: 13px;
  }

  .support-block__row {
    margin-top: 50px;
  }

  .support-block__row_center .support-block__item {
    flex: 0 0 45%;
  }
}

@media (max-width: 767px) {
  .support-block {
    padding: 50px 0;
  }

  .support-block__title {
    font-size: 36px;
  }

  .support-block__subtitle {
    margin-top: -10px;
  }

  .support-block__item {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }

  .support-block__item:last-child {
    margin-bottom: 0;
  }

  .support-block__item-name {
    min-height: auto;
    font-size: 16px;
    line-height: 22px;
  }

  .support-block__item-desc {
    font-size: 15px;
  }

  .support-block__row_center .support-block__item {
    flex: 0 0 100%;
  }

  .support-block__row_center .support-block__item:last-child {
    margin-top: 0;
  }
}