.steps {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.steps-left {
  width: 50%;
  padding: 100px 140px 100px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.steps-left .h2 {
  color: #333333;
  margin-bottom: 12px;
}

.steps-wrap {
  margin: 56px 0 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.step {
  display: flex;
  gap: 24px;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-content .h4 {
  color: #333333;
}

.step-no {
  position: relative;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: #FDE6E9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C040C;
}
.step-no::after {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-1px);
  width: 0px;
  height: 120px;
  border-right: 2px dashed rgba(108, 4, 12, 0.2);
  content: "";
  z-index: -1;
}

.step:last-child .step-no::after {
  display: none;
}

.steps-right {
  width: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #fde6e9 0%, #f4a9b3 100%);
}

.steps-left-wrap {
  width: 100%;
  max-width: 570px;
}
.steps-left-wrap .btns {
  margin-top: 56px;
}

.steps-image {
  display: flex;
  margin-bottom: max(-280px, -14vw);
  margin-left: max(-70px, -4vw);
  aspect-ratio: 970/1130;
  max-width: 940px;
}
.steps-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps-laptop {
  overflow: unset;
  display: flex;
  align-items: flex-end;
}
.steps-laptop .steps-image {
  max-width: 830px;
  transform: translate(-32px, 32px);
  margin: unset;
  aspect-ratio: unset;
}

@media (max-width: 1200px) {
  .steps {
    flex-direction: column;
  }
  .steps-left, .steps-right {
    width: 100%;
  }
  .steps-image {
    margin: 0 auto -32%;
  }
  .steps-left {
    padding: 48px 16px;
    align-items: center;
  }
  .steps-left-wrap {
    max-width: 500px;
  }
  .steps-left-wrap .btns {
    margin-top: 32px;
  }
  .steps-wrap {
    margin: 32px 0 0;
    gap: 40px;
  }
  .step {
    gap: 16px;
  }
  .step-content {
    gap: 8px;
  }
  .steps-laptop .steps-image {
    margin: 0 auto;
    transform: translate(0, 32px);
  }
}
@media (max-width: 768px) {
  .steps-image {
    margin: 0 auto -32% -8%;
    transform: scale(1.1);
  }
  .steps-laptop .steps-image {
    transform: translate(0, 12px);
  }
}