.steps-container {
  margin-top: 40px;
}

.steps-container .step {
  display: flex;
}

.step .serial-no {
  position: relative;
}

.step .serial-no span {
  background: linear-gradient(90deg, #3CAF65 0%, #2653A2 100%);
  width: 72px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
}

.step .serial-no.connected::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  --c: #21252980;
  /* color */
  --t: 1px;
  /* thickness */
  --g: 40px;
  /* gap */
  --d: 14px;
  /* control the dashes */

  background:
    conic-gradient(at var(--t) 50%, #0000 75%, var(--c) 0) 0/var(--g) var(--d);
  left: 36px;
  top: 0;
}

@media (max-width: 768px) {
  .step .serial-no span {
    width: 50px;
    margin-right: 20px;
  }

  .step .serial-no.connected::after {
    left: 25px;
  }
}

.step .rounded-card {
  margin-bottom: 30px;
  padding: 30px;
}

.step.selected .rounded-card {
  border-top: 4px solid;
  -moz-border-image: -moz-linear-gradient(90deg, #3CAF65 0%, #2653A2 100%);
  -webkit-border-image: -webkit-linear-gradient(90deg, #3CAF65 0%, #2653A2 100%);
  border-image: linear-gradient(90deg, #3CAF65 0%, #2653A2 100%);
  border-image-slice: 4;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #212529;
}

.step h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #2653A2;
  margin: 20px 0 15px;
}

.step p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}