.title-block--left{
  text-align: left;
}
.title-block--center{
  text-align: center;
}
.title-block--right{
  text-align: right;
}

.block-items__wrapper {
  display: flex;
  flex-direction: column;
}

.items--new {
  display: grid;
  gap: 24px;
}

.items__item--new {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.items__image--new {
  display: contents;
  width: 100%;
}

.items__image--new img {
  width: 100%;
  object-fit: cover;
  min-height: 309px;
  border-radius: 12px;
  max-height: 309px;
}

.items__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  padding: 0 12px 0 12px;
}

.items__description {
  margin-top: 8px;
  padding: 0 12px 0 12px;
  color: var(--text, #555558);
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.block__items--adapt-sm {
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}

.block__items--adapt-md {
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
}

.block__items--adapt-big {
  grid-template-columns: repeat(auto-fill, minmax(23%, 1fr));
}

@media screen and (max-width: 1368px) {
  .block__items--adapt-big {
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  }
}

@media screen and (max-width: 1140px) {
  .block__items--adapt-sm {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}

@media screen and (max-width: 993px) {
  .block-items__wrapper {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .items__title, .items__description{
    padding: 0;
  }
  .text-tasks {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .block__items--adapt-big {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }

  .block__items--adapt-md {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}