.three_items_block {
  padding: 80px 15px 20px;
}

.three_items_block__inner {
  max-width: 929px;
  margin: 0 auto;
}

.three_items_block__headline {
  margin: 0 0 30px;
  font-family: 'space';
  font-size: 60px;
  line-height: 76px;
  font-weight: 600;
  text-align: center;
  color: #000;
}

.three_items_block__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  justify-items: center;
}

.three_items_block__item {
  max-width: 228px;
  width: 100%;
  text-align: center;
}

.three_items_block__image_wrap {
  height: 233px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three_items_block__image {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 233px;
}

.three_items_block__item_headline {
  margin: 0 0 8px;
  font-family: 'ibm';
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #000;
}

.three_items_block__item_text {
  max-width: 240px;
  margin: 0 auto;
  font-family: 'ibm';
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
}

.three_items_block__item_text p {
  margin-bottom: 0;
}

.three_items_block__button_wrap {
  margin-top: 60px;
  margin-bottom: 80px;
  text-align: center;
}

.three_items_block__button {
  display: inline-block;
  padding: 16px 28px;
  border: 2px solid #005141;
  color: #005141;
  font-family: 'space';
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}

.three_items_block__button:hover {
  background-color: #005141;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 850px) {
  .three_items_block {
    padding: 60px 15px 20px;
  }

  .three_items_block__headline {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 38px;
  }

  .three_items_block__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .three_items_block__image_wrap {
    height: 200px;
  }

  .three_items_block__button_wrap {
    margin-top: 32px;
  }
}
