.section {
  margin-bottom: 30px;
}
.section__box {
  background: #fff;
  border: solid 2px #1CB9EE;
  padding: 30px 20px;
  height: 100%;
}
.section__box.is-orange {
  border-color: #F08637;
}
.section__box.is-orange .section__box-heading {
  color: #F08637;
}
.section__box.is-yellow {
  border-color: #F8B500;
}
.section__box.is-yellow .section__box-heading {
  color: #F8B500;
}
.section__box-heading {
  font-size: 2rem;
  color: #1CB9EE;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section__box-list li {
  margin-bottom: 17px;
}
.section__box-list li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .section__box {
    padding: 20px 15px;
  }
}