.tasks-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tasks-block .block-title {
  text-align: center;
}
.tasks-block .tasks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 30px;
}
.tasks-block .task {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 30px;
}
.tasks-block .task__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  background: var(--background-fourthly);
  flex-shrink: 0;
}
.tasks-block .task__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.tasks-block .task__text {
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: 25px;
}

@media (max-width: 1320px) {
  .tasks-block .task__text {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .tasks-block .tasks,
  .tasks-block .task {
    gap: 20px;
  }
  .tasks-block .task__icon {
    width: 80px;
    height: 80px;
  }
  .tasks-block .task__icon img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 860px) {
  .tasks-block .task__text {
    gap: 10px;
  }
  .tasks-block .task__icon {
    width: 60px;
    height: 60px;
  }
  .tasks-block .task__icon img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .tasks-block .tasks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .tasks-block .task {
    align-items: start;
  }
  .tasks-block .tasks,
  .tasks-block .task {
    gap: 15px;
  }
  .tasks-block .task__text {
    gap: 5px;
  }
  .tasks-block .task__icon {
    width: 40px;
    height: 40px;
  }
  .tasks-block .task__icon img {
    width: 20px;
    height: 20px;
  }
  .tasks-block .task__text__desc {
    font-size: 12px;
  }
}
