.stages {
  width: 100%;
}

.stages .container {
  display: flex;
  align-items: flex-start;
  gap: 33px;
}

.stages_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  left: 0;
  top: 60px;
  width: 100%;
  max-width: 516px;
}

.stages_desc {
  font-size: 14px;
}

.stages_items {
  width: 100%;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stages_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 30px 24px;
  border-radius: 20px;
  background: var(--White);
  counter-increment: count;
}

.stages_item_title {
  color: var(--Blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stages_item_title::before {
  content: counter(count)".";
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--Platinum);
  color: var(--Blue);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.stages_item_desc {
  font-size: 14px;
}

@media (max-width: 768px) {
  .stages .container {
    flex-direction: column;
    gap: 40px;
  }

  .stages_wrap {
    gap: 16px;
    position: static;
  }

  .stages_wrap h2 {
    margin-top: 8px;
  }

  .stages_items {
    padding-top: 0;
  }

  .stages_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 16px;
  }

  .stages_item_title {
    font-size: 16px;
  }

  .stages_item_title::before {
    min-width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
