.steps {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.single-step {
  display: grid;
  grid-template-columns: 1fr 6fr;
  align-items: start;
  gap: 20px;
  position: relative;
}

.single-step.no-line:after {
  display: none;
  content: "";
}

.num-container {
  height: calc(100% + 80px);
}

.line {
  height: calc(100% + 39px);
  position: absolute;
  top: 30px;
  width: 2px;
  background-color: purple;
  left: 39.5px;
  z-index: 10;
}
.num-wrap {
  font-size: 40px;
  text-align: right;
  position: sticky;
  top: 30px;
  z-index: 100;
}
.no-sticky .num-wrap {
  position: static !important;
}

.number {
  position: relative;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.number-icon {
  position: relative;
  border-radius: 80px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.description {
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 1.5;
}

.description img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 20px;
}


.description h2{
   margin-bottom:0px;
}

.description p {
  margin-top: 0;
}