.separator--line {
  background-color: #345fc6;
  width: 90px;
  height: 2px;
  margin: 0 auto 40px;
}

.separator--line-white {
  background-color: #fff;
  width: 90px;
  height: 2px;
  margin: 40px 0;
}

.page-flip-create-section {
  background-repeat: no-repeat;
  background-size: cover;
}

.how-to__cards {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin: 50px 0;
  padding-left: 0;
}

.how-to__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 13px 21px 0px rgba(0, 0, 0, 0.14);
  padding: 50px 40px 50px 100px;
}

.how-to__card::before {
  content: attr(data-number);
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #2c59bf;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  font-weight: bold;
  color: #ebeef4;
  line-height: 0.924;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.how-to__card p {
  font-size: 19px;
  color: #273e5d;
  line-height: 1.474;
}

@media screen and (max-width: 1200px) {
  .how-to__cards {
    padding-left: 20px;
  }
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 600px) {
  .how-to__cards {
    gap: 40px 0;
  }

  .how-to__card::before {
    top: -20px;
    transform: none;
  }

  .how-to__card {
    padding: 60px 40px 50px;
  }
}

@media screen and (max-width: 400px) {
  .how-to__card {
    padding: 40px 20px;
  }

  .how-to__card::before {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
}
