.box-feature-01 {
  padding: 40px 50px;
  background-color: #F7F1E8;
  border-radius: 16px;
}

.flow-step-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 1px solid #707070;
  background-color: #fff;
  padding: 10px 15px;
  gap: 34px;
}

.flow-step-bar__label {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.flow-step-bar__desc {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.flow-arrow-down {
  width: 0;
  height: 0;
  margin: 27px 0 17px 23%;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 40px solid #b5b5b5;
}

.flow-arrow-row {
  display: flex;
  justify-content: space-around;
}

.flow-arrow-row > .flow-arrow-down {
  margin-left: 0;
}

.flow-section-heading {
  margin-bottom: 15px;
  padding: 12px;
  background-color: #474646;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.flow-straight-layout {
  display: flex;
  gap: 30px;
}

.flow-straight-layout__text {
  flex-shrink: 0;
  width: 25%;
}

.flow-straight-layout__image {
  flex: 1;
  max-width: 505px;
}

.flow-straight-layout__image img {
  width: 100%;
  height: auto;
}

.flow-direction-label {
  margin-top: 12px;
  margin-bottom: 4px;
  color: #cb0027;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 660px) {
  .box-feature-01 {
    padding: 24px 20px;
  }

  .flow-step-bar {
    flex-direction: column;
    gap: 5px;
  }

  .flow-step-bar__label {
    min-width: 0;
    width: 100%;
    font-size: 15px;
  }

  .flow-step-bar__desc {
    font-size: 14px;
  }

  .flow-arrow-down {
    margin: 10px auto;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 30px solid #b5b5b5;
  }

  .flow-arrow-row {
    display: block;
  }
  
  .flow-arrow-row > .flow-arrow-down {
    margin-left: auto;
  }
  
  .flow-arrow-row > .flow-arrow-down:nth-child(n + 2) {
    display: none;
  }

  .flow-straight-layout {
    flex-direction: column;
    gap: 16px;
  }

  .flow-straight-layout__text,
  .flow-straight-layout__image {
    width: 100%;
    max-width: none;
  }
  .flow-section-heading {
    font-size: 14px;
    padding: 7px;
  }
}
