.steps {
  display: flex;
  flex-direction: column;
}

.steps-title {
  color: var(--white-100);
  max-width: 552px;
  text-align: center;
}

.steps-cards {
  display: flex;
  flex-direction: column;

  margin-top: 40px;
  margin-bottom: 40px;

  gap: 16px;
}

.steps-cards-item {
  display: flex;
  align-items: center;

  padding: 32px 64px 32px 32px;
  gap: 64px;
  background: var(--black-200);
  border: 1px solid var(--black-100);
  border-radius: 24px;
}

.steps-cards-item img {
  max-width: 480px;
  width: 100%;
  height: auto;
}

.steps-cards-item__content {
  display: flex;
  flex-direction: column;
}

.steps-cards-item__content-step {
  color: var(--green-100);

  margin-bottom: 24px;
}

.steps-cards-item__content-title {
  color: var(--white-100);
  margin-bottom: 8px;
}

.steps-cards-item__content-description {
  color: var(--white-200);
}

@media (max-width: 800px) {
  .steps-cards {
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 8px;
  }

  .steps-cards-item {
    padding: 24px;

    flex-direction: column;
    gap: 25px;
  }

  .steps-try {
    width: 100%;
    justify-content: center;
  }

  .steps-cards-item__content-step.text-14px-medium {
    margin-bottom: 16px;
  }
}
