.pricing-card-sec .heading-wrapper{
  text-align:center;
}

.pricing-card-sec .pricing-card-wrapper {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  margin: 0 -15px;
}

.pricing-card-sec .pricing-cards {
  display: flex;
  width: 100%;
  flex-wrap:wrap;
}

.pricing-card-sec .card {
  width: calc(25% - 30px);
  margin: 0 15px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff725e;
}

/* Toggle Buttons */
.pricing-card-sec .toggle-buttons {
  display: flex;
  justify-content: center;
}

.pricing-card-sec .toggle {
  color:#ff725e;
  border: 1px solid #ff725e;
  /*   padding: 10px 20px; */
  margin-bottom:20px;
  cursor: pointer;
  font-size: 16px;
}
.pricing-card-sec .toggle-buttons .toggle.year-toggle{
  border-radius:20px 0 0 20px;
}
.pricing-card-sec .toggle-buttons .toggle.month-toggle{
  border-radius:0 20px 20px 0;
}
.pricing-card-sec .toggle.active {
  background: #ff725e;
  color: #FFF;
}

/* Price & Discount */
.pricing-card-sec .price {
  font-size: 24px;
  font-weight: bold;
  color: #ff725e;
  margin: 10px 0;
}

.pricing-card-sec .discount {
  font-size: 14px;
  color: #28a745;
  margin-bottom: 10px;
}

/* CTA Button */
.pricing-card-sec .cta-button {
  display: block;
/*   text-align: center;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold; */
}

/* Hide Monthly Plans by Default */
.pricing-card-sec .hidden {
  display: none !important;
}
@media only screen and (max-width:1199px){
  .pricing-card-sec .pricing-card-wrapper {
    margin: 0;
  }
  @media only screen and (max-width:767px){
    .pricing-card-sec .card {
      width: calc(50% - 30px);
      margin-bottom:30px;
    }
    .pricing-card-sec .card:last-child {
      margin-bottom:0;
    }
  }
  @media only screen and (max-width:520px){
    .pricing-card-sec .card {
      width: 100%;
      margin: 0 0 30px 0;
    }
  }