.card-list-wrap header {
  font-size: 30px;
  font-weight: 700;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #EAF4EC;
}
.card-list-wrap .row {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 50px;
}
.card-list-wrap .row .col {
  margin-top: 30px;
}
.card-list-wrap .wrap {
  height: 100%;
  line-height: 1.9;
  font-size: 18px;
  color: #000000;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #B7EDB4;
  border-radius: 8px;
  transition: box-shadow .3s ease;
  display: block;
  cursor: pointer;
}
.card-list-wrap .wrap:hover {
  box-shadow: 0 0 20px 0 #B7EDB4;
}
.card-list-wrap .wrap p {
  margin: unset;
}
@media screen and (max-width: 640px) {
  .card-list-wrap .row .col {
    margin-top: 15px;
  }
  .card-list-wrap .wrap {
    font-size: 16px;
  }
  .card-list-wrap header {
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }
}
