.howitworks-container {
  position: relative;
  height: 768px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howitworks-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.howitworks-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  width: 544px;
  min-width: 450px;
  padding: 40px 60px;
  height: 600px;
  margin-left: 3%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.separator-line {
  height: 1px;
  width: 100%;
  background: #000000;
  margin-bottom: 1.5rem;

}

.howitworks-card h2 {
  font-size: 50px;
  line-height: 55px;
  font-family: PolySans-Median;
  font-weight: 600;
  color: #112129;
}

.howitworks-subtitle {
  color: #4B5466;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  font-family: Inter-Regular;
  margin-bottom: 1rem;
}

.howitworks-step {
  display: flex;
  margin-bottom: 1rem;
}

.howitworks-step-num {
  background-color: #1EADD3;
  font-family: Inter-Bold;
  font-size: 24px;
  color: white;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}

.vertical-step-line {
  height: 150%;
  width: 2px;
  background: #1EADD3;
  position: absolute;
  z-index: -1;
  top: 2px;
}

.howitworks-step-content h4 {
  font-size: 18px;
  line-height: 22px;
  font-family: Inter-Bold;
  font-weight: 700;
  margin-top: 0.15rem;
  margin-bottom: 0.55rem;
  color: #112129;
}

.howitworks-step-content p {
  font-size: 14px;
  line-height: 18px;
  font-family: Inter-Regular;
  color: #4B5466;
}

.howitworks-step-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 70%;

}

@media (min-width: 768px) {
  .howitworks-card {
    max-width: 650px;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  .howitworks-bg-img-mobile {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .howitworks-bg-img {
    display: none;
  }

  .howitworks-bg-img-mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

  }

  .howitworks-card {
    height: 53%;
    width: 90%;
    padding: 40px 40px;
    min-width: 300px;
    margin: 30px auto;
    background: #FFFFFFCC;
  }

  .howitworks-step-content h4 {
    font-size: 15px;
    line-height: 20px;
  }

  .howitworks-step-content p {
    font-size: 13px;
    line-height: 15px;
  }

  .howitworks-step-container {
    height: 80%;
  }

  .separator-line {
    height: 1px;
    background: #000000;
  }

  .vertical-step-line {
    width: 1px;
  }

  .howitworks-container {
    height: 1040px;
    margin-top: 35px;
    padding: 0;
    justify-content: baseline;
    align-items: normal;
  }

}

@media screen and (max-width: 426px) {
  .howitworks-card {
    height: 507px;
    width: 330px;
    padding: 30px 40px;
            align-content: center;
  }
}


@media screen and (max-width: 321px) {
  .howitworks-card {
    width: 90%;
    padding: 20px 30px;
  }

  .howitworks-step-container {
    height: 70%;
  }

  .howitworks-step-content h4 {
    font-size: 14px;
    line-height: 18px;
  }

  .howitworks-step-content p {
    font-size: 12px;
    line-height: 14px;
  }
}