.main__min-title {
  margin: 50px 0 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #365edc;
}
.main__text-blok {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.main__list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  place-items: stretch stretch;
}
.main__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 12px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .main__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
