.pricingTable {
  background-color: #fff;
  font-family: 'Open Sans';
  text-align: center;
  padding: 0 0 15px;
  margin: 0 10px;
  border-radius: 20px 20px 150px 150px;
}

.pricingTable-header {
  background-color: #fff;
  padding: 10px;
  margin: 0 0 -10px;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 2;
  font-family: 'Open Sans';
}

.term {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.pricingTable .price-value {
  color: #fff;
  background-color: #338fdb;
  padding: 20px 40px;
  margin: 0 -10px;
  position: relative;
  z-index: 1;
}

.pricingTable .price-value:before, .pricingTable .price-value:after {
  content: '';
  background-color: #17609b;
  height: 15px;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  z-index: -1;
}

.pricingTable .price-value:after {
  top: auto;
  bottom: -5px;
}

.pricingTable .price {
  font-size: 2rem;
  font-weight: 700;
  line-height: 70px;
  display: block;
  line-height: 3;
}

.pricing-content {
  background-color: #fff;
  padding: 15px;
  margin: -10px 0 20px 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.pricingTable .pricing-content li {
  color: rgba(0,0,0,0.8);
  padding: 15px 10px 5px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  padding-bottom: 15px;
  font-size: 1.115rem;
  font-weight: 600;
}

.pricingTable .pricingTable-signup {
  color: #fff;
  background-color: #338fdb;
  font-size: 15px;
  font-weight: 600;
  line-height: 82px;
  height: 110px;
  width: 110px;
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
  display: inline-block;
  position: relative;
  transition: all 0.3s ease 0s;
}

.pricingTable .pricingTable-signup:hover {
  color: #fff;
  box-shadow: 0 0 5px 10px rgba(0,0,0,0.2);
}

.pricingTable .pricingTable-signup:after {
  content: "➜";
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}

.pricingTable.green .title {
  color: #8fcc26;
}

.pricingTable.green .price-value {
  background-color: #8fcc26;
}

.pricingTable.green .price-value:before, .pricingTable.green .price-value:after {
  background-color: #6aa800;
}

.pricingTable.green .pricingTable-signup {
  background-color: #8fcc26;
}

@media only screen and (max-width: 990px) {
  .pricingTable {
    margin: 0 10px 30px;
  }
}

.pricingTable .programName {
  background-color: #17609c;
}

.pricingTable.green .programName {
  background-color: green;
}

.programName {
  font-size: 1.0625rem;
  border-radius: 4px;
  font-weight: 600;
  padding: 5px 0 5px 0;
}

