.how_it_works_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  justify-content: center;
  align-items: center;
}
.how_it_works_title {
  font-size: 30px;
  font-weight: 700;
}
.how_it_works_box_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}
.how_it_works_box {
  width: 390px;
  height: 380px;
  background-color: #222222;
  border-radius: 20px;
  margin-left: 20px;
  position: relative;
}
.how_it_works_box img {
  width: 390px;
  height: 380px;
}
.how_it_works_box p {
  max-width: 350px;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  margin-bottom: 0px;
  bottom: 30px;
  min-width: 315px;
  left: 45px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .how_it_works_container {
    margin-top: 0px;
  }
  .how_it_works_box_container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px;
  }
  .how_it_works_box {
    width: 95%;
    height: 240px;
    margin-left: 0px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .how_it_works_box img {
    width: 300px;
    height: 240px;
  }
  .how_it_works_title {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .how_it_works_box p {
    max-width: 250px;
    font-size: 16px;
    margin-bottom: 0px;
    bottom: 20px;
    min-width: 250px;
    left: auto;
    text-align: center;
  }
}
