.plan-cards {
  padding: 0px 0px 47px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 23px;
  grid-row-gap: 25.4px;
}

@media (max-width: 1299px) {
  .plan-cards {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .plan-cards {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .plan-cards {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

@media (max-width: 575px) {
  .plan-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.plan-cards .card {
  width: 100%;
  border-radius: 8px;
  text-decoration: none;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 28px;
  font-weight: bold;
}

.plan-cards .card .card-img {
  width: 100%;
  height: 89px;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .plan-cards .card .card-img {
    height: 66px;
  }
}

.plan-cards .card > span {
  width: 100%;
  height: 68px;
  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;
  border-radius: 0 0 8px 8px;
  background-color: #00588E;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
}

@media (max-width: 767px) {
  .plan-cards .card > span {
    height: 47px;
    font-size: 1rem;
    line-height: 18px;
  }
}
/*# sourceMappingURL=f035.css.map */