.lp-tasks {
  padding: 120px 0;
  background-color: #fff;
  border-radius: 30px 30px 0 0;
}
.lp-tasks-list {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lp-tasks-item {
  width: calc(33% - 13px);
  border-radius: 8px;
  border: 1px solid rgba(43, 73, 226, 0.3);
  background: rgba(43, 73, 226, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 28px;
  padding-right: 0px;
  height: 98px;
}
.lp-tasks-item:nth-child(1) {
  order: 1;
}
.lp-tasks-item:nth-child(2) {
  order: 2;
}
.lp-tasks-item:nth-child(3) {
  order: 3;
}
.lp-tasks-item:nth-child(4) {
  order: 4;
}
.lp-tasks-item:nth-child(5) {
  order: 5;
}
.lp-tasks-item:nth-child(6) {
  order: 6;
}
.lp-tasks-item:nth-child(7) {
  order: 7;
}
.lp-tasks-item:nth-child(8) {
  order: 8;
}
.lp-tasks-item:nth-child(9) {
  order: 9;
}
.lp-tasks-item img {
  height: 100%;
  width: auto;
}
.lp-tasks-item.blue {
  background: #2b49e2;
}
.lp-tasks-item.dark {
  background: #0e1020;
}
.lp-tasks-text {
  color: #020416;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  max-width: 272px;
}
.lp-tasks-text span {
  font-weight: 600;
}
.lp-tasks-text.white {
  color: #fff;
}

.lp-tasks-title {
  color: #020416;
  font-family: Gilroy;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 16px;
  text-align: center;
}
.lp-tasks-title span {
  font-style: italic;
  font-weight: 700;
}
.lp-tasks-desc {
  color: #020416;
  text-align: center;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  max-width: 725px;
  margin: 0 auto 50px;
}
.lp-tasks-desc span {
  font-style: italic;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .lp-tasks-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1120px) {
  .lp-tasks-list {
    gap: 20px;
  }
  .lp-tasks-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .lp-tasks-list {
    gap: 10px;
  }
  .lp-tasks {
    padding: 70px 0;
  }
  .lp-tasks-title {
    font-size: 44px;
    margin-bottom: 12px;
  }
  .lp-tasks-desc {
    font-size: 16px;
    max-width: 725px;
    margin: 0 auto 30px;
  }
  .lp-tasks-item {
    padding-left: 20px;
    height: 97px;
    width: calc(50% - 5px);
  }
  .lp-tasks-text {
    font-size: 15px;
    max-width: 255px;
  }
}
@media screen and (max-width: 700px) {
  .lp-tasks-list {
    flex-direction: column;
    align-items: center;
  }
  .lp-tasks-item {
    width: 100%;
    max-width: 440px;
  }
}
@media screen and (max-width: 560px) {
  .lp-tasks-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .lp-tasks-item {
    width: 100%;
    max-width: 100%;
  }
  .lp-tasks-item:nth-child(1) {
    order: 1;
  }
  .lp-tasks-item:nth-child(2) {
    order: 4;
  }
  .lp-tasks-item:nth-child(3) {
    order: 7;
  }
  .lp-tasks-item:nth-child(4) {
    order: 2;
  }
  .lp-tasks-item:nth-child(5) {
    order: 5;
  }
  .lp-tasks-item:nth-child(6) {
    order: 8;
  }
  .lp-tasks-item:nth-child(7) {
    order: 3;
  }
  .lp-tasks-item:nth-child(8) {
    order: 6;
  }
  .lp-tasks-item:nth-child(9) {
    order: 9;
  }
}
