.pricingTable {
  border: 1px solid #e1e1e1;
  text-align: center;
  overflow: hidden;
}

.pricingTable .pricingTable-header {
  padding: 20px;
  color: #000;
}

.pricingTable .title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.pricingTable .price-value {
  font-size: 48px;
  font-weight: 700;
}

.pricingTable .pricing-content {
  padding: 50px 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #e1e1e1;
  color: #555;
  position: relative;
  transition: all 0.3s ease 0s;
}

.pricingTable:hover .pricing-content {
  background: #d3f0f7;
  color: #fff;
  position: relative;
}

.pricingTable .pricing-content:before {
  content: attr(data-heading);
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: -100px;
  opacity: 1;
  transform: rotate(-90deg);
  transition: all 0.3s ease 0s;
}

.pricingTable:hover .pricing-content:before {
  left: -10px;
  opacity: 1;
}

.pricingTable .pricing-content li {
  padding: 10px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

@media only screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .pricingTable .pricing-content:before {
    font-size: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .pricingTable:hover .pricing-content:before {
    left: -15px;
  }
}

@media only screen and (max-width: 359px) {
  .pricingTable:hover .pricing-content:before {
    left: 0;
  }
}

