.three_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3.5vw;
  justify-content: space-between;
  align-items: start;
}

@media (max-width: 1014px) {
  .three_block {
    grid-row-gap: 50px;
    grid-gap: 4.95vw;
  }
}
@media screen and (max-width: 767.9px) {
  .three_block {
    grid-template-columns: repeat(1, 1fr);
  }
}
