.price-cards {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-wrap: wrap; */
}
.price-card{
  text-align: center;
  padding: 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.06);
  margin: 0 8px;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow cubic-bezier(0.22, 0.61, 0.36, 1) .2s;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .price-cards {
    flex-wrap: wrap;
  }

  .price-card.year-3 {
    /* order: -2; */
  }

  .price-card.year-2 {
    order: -1;
  }
  .price-card {
    width: 100%;
  }
}
.price-card:hover{
  box-shadow: 0 34px 47px 0 rgba(0,0,0,0.06);
}
.price-card .sub-header {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: rgba(155,154,155,0.77);
  letter-spacing: 1px;
}
.price-card .banner {
  position: absolute;
  top: 16px;
  left: 0;
  background: #34BF49;
  padding: 2px 8px;
  letter-spacing: 3px;
  color: #fff;
  border-left: 3px solid #17a52c;
  left: -3px;
}
.price-card .price {
  font-family: DINCondensed-Bold, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #4A4A4A;
  width: 100%;
  line-height: 1;
  margin-top: 16px;
  letter-spacing: 1px;
}
.price-card .price > .original.hide {
  display: block;
  color: #fff;
}

.price-card .price > .original {
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 300;
  color: #878787;
  letter-spacing: 3px;
}

.price-card .price .special {
  color: #158bc6;
}

.price-card .price > .original > span {
  font-size: 18px;
}

.price-card .price span {
  font-size: 18px;
  line-height: 2
}
.price-card .header {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #4A4A4A;
  letter-spacing: 5px;
  margin-top: 40px
}
.price-card .description {
  margin-top: 24px;
  font-size: 16px;
  color: #9B9B9B;
  letter-spacing: 1px;
  width: 80%;
}
.price-card .action {
  margin-top: 32px;
}
.price-card .btn-large {
  width: 100%;
  display: block;
  box-sizing: border-box;
  font-size: 100%;
}
.price-card .btn-primary.btn-reverse {
  background: none;
  border: 1px solid #158BC6;
  color: #158BC6
}
.price-card .btn-primary.btn-reverse:hover{
  border: 1px solid #2db9ff;
  color: #2db9ff;
}
