
.steps {
  position: relative;
  margin-top: 32px;
}
.steps::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #0073cf;
  opacity: 0.4;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
}

.steps .content p {
  color: #758090;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 0px
}

.steps .content h2 {
  margin-top: 0;
  font-size: 24px
}

.steps-container {
  position: relative;
  background-color: inherit;
  width: calc(50% + 32px);
}

.steps-container .content {
  padding: 25px;
  background-color: white;
  position: relative;
  //border-radius: 0px 0px 80px 0px;
  box-shadow: 0px 16px 27px rgb(0 11 30 / 10%);
}

.steps .steps-container:nth-child(even) {
  left: calc(50% - 32px);
  flex-direction: row-reverse;
}

.steps-container {
  display: flex;
}

.steps .steps-container .date {
  font-weight: 900;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 10px;
  padding-top: 3px;
  width: 62px;
  height: 62px;
  background-color: #0073cf;
  border-radius: 50%;
  flex-shrink: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 77;
}

.step-line {
  width: 40px;
  background-color: #0073cf;
  height: 2px;
  margin-top: 31px;
  opacity: 0.4;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .steps::after {
    left: 32px;
  }
  .steps-container {
    left: 0;
    flex-direction: row-reverse;
    width: auto;
    margin-bottom: 16px;
  }
  .steps .steps-container:nth-child(even) {
    left: 0;
  }
}