.steps {
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1 0 fit-content;
  text-align: right;
  display: flex;
  gap: 8px;
  align-items: center;
}

.step-number {
  color: var(--secondaryColor);
  font-size: 50px;
  font-weight: 700;
}

.step-title {
  font-weight: 600;
  font-size: large;
  /* margin-top: 5px; */
  color: var(--text);
  font-family: "Tajawal", Arial, Helvetica, sans-serif;
}

.step-desc {
  color: var(--text-3);
  font-size: 14px;
  margin-top: 4px;
}