
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    padding: 60px 0 120px 0;
  }
  
  .pricing .section-title {
    margin-bottom: 40px;
  }
  
  .pricing .pricing-item {
    box-shadow: 0 3px 20px -2px rgba(var(--default-color-rgb), 0.1);
    padding: 60px 40px;
    height: 100%;
    position: relative;
    border-radius: 15px;
  }
  
  .pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
  }
  
  .pricing .icon {
    margin: -10px auto 20px auto;
    width: 90px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    transform-style: preserve-3d;
  }
  
  
  
  
  .pricing h4 {
    font-size: 25px;
    color: #FF9D00;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 25px;
    text-align: center;
  }
  
  .pricing h4 sup {
    font-size: 20px;
  }
  
  .pricing h4 span {
    color: rgba(var(--default-color-rgb), 0.5);
    font-size: 18px;
    font-weight: 400;
  }
  
  .pricing ul {
    padding: 20px 0;
    list-style: none;
    color: rgba(var(--default-color-rgb), 0.8);
    text-align: left;
    line-height: 20px;
  }
  
  .pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
  }
  
  .pricing ul .na {
    color: rgba(var(--default-color-rgb), 0.3);
  }
  
  .pricing ul .na i {
    color: rgba(var(--default-color-rgb), 0.3);
  }
  
  .pricing ul .na span {
    text-decoration: line-through;
  }
  
  .pricing .buy-btn {
    color: white;
    background-color: #FF9D00;
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    transition: none;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: 0.3s;
  }
  
  .pricing .buy-btn:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .pricing .featured {
    z-index: 10;
    border: 3px solid #FF9D00;
  }

  .pricing .row {
    display: flex;
    justify-content: center;
}
  
  @media (min-width: 992px) {
    .pricing .featured {
      transform: scale(1.15);
    }
  }