.business-article {
  padding-bottom: 80px;
}

.business-article .business-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin: 60px 0 100px 0;
}

.business-article .business-flow .flow-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  color: #fff;
  padding: 10px;
}

.business-article .business-flow .flow-box.orange {
  background-color: #ff7f56;
}

.business-article .business-flow .flow-box.pink {
  background-color: #fb7071;
}

.business-article .business-flow .flow-box.blue {
  background-color: #00abc2;
}

.business-article .business-flow .flow-box p,
.business-article .business-flow .flow-box span {
  line-height: 40px;
  text-align: center;
}

.business-article .business-flow .flow-box p {
  font-weight: bold;
  font-size: 25px;
}

.business-article .business-flow .flow-box span {
  font-weight: 500;
  font-size: 22px;
}

.business-article .business-flow .arrow {
  max-width: 63px;
  width: 100%;
  height: auto;
}

.business-article .business-flow .arrow img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 842px) {
  .business-article .business-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .business-article .business-flow .arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
/*# sourceMappingURL=page-business.css.map */