.cards_1__list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 40px;
}
.cards_1__section_title + .cards_1__list {
  padding-top: 16px;
}
.cards_1__item::before {
  content: '';
  display: block;
  margin-bottom: 40px;
  width: 220px;
  height: 1px;
  background-color: var(--slate-200);
}
.cards_1__item:nth-child(-n+2)::before {
  content: unset;
}
.cards_1__item {
  flex-basis: 450px;
}
.cards_1--cards .cards_1__item {
  background: url(../assets/bg-texture.jpg);
  padding: 40px;
  padding-bottom: 48px;
  border-radius: 48px;
}
.cards_1__image {
  max-width: 48px;
}
.cards_1__icon {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards_1__title {
  display: block;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 600;
  margin-top: 10px;
}
.cards_1__content {
  margin-top: 8px;
}
.cards_1 .btn_arrow {
  margin-top: 16px;
}

@media(max-width: 1000px) {
  .cards_1__list {
    flex-direction: column;
    gap: 34px;
  }
  .cards_1__item:nth-child(-n+2)::before {
    content: '';
  }
  .cards_1__item:first-child::before {
    content: unset;
  }
  .cards_1__item::before {
    width: 100%;
  }
  .cards_1__item {
    flex-basis: unset;
  }
}

.cards_1--cards .cards_1__item::before {
  content: unset;
}