
  .background {
    padding: 0 25px 25px;
    position: relative;
    width: 100%;
  }
  
  .background::after {
    content: '';
    /* background: #1977cc;
    background: -moz-linear-gradient(top, #1977cc 0%, #4394f4 100%);
    background: -webkit-linear-gradient(top, #1977cc 0%,#4394f4 100%);
    background: linear-gradient(to bottom, #1977cc 0%,#4394f4 100%); */
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1977cc', endColorstr='#4394f4',GradientType=0 ); */
    background-image: linear-gradient(to right bottom, #1c6dd0, #0091dd, #00b0dc, #5fccd8, #a3e4db);
    height: 380px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  @media (min-width: 900px) {
    .background {
      padding: 0 0 25px;
    }
  }
  
  .panel {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
  }
  
  .pricing-table {
    display: flex;
    flex-direction: column;

    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  
  @media (min-width: 900px) {
    .pricing-table {
      flex-direction: row;
    }
  }
  
  .pricing-table * {
    text-align: center;
    text-transform: uppercase;
  }
  
  .pricing-plan {
    border-bottom: 1px solid #e1f1ff;
    padding: 25px;
  }
  
  .pricing-plan:last-child {
    border-bottom: none;
  }
  
  @media (min-width: 900px) {
    .pricing-plan {
      border-bottom: none;
      border-right: 1px solid #e1f1ff;
      flex-basis: 100%;
      /* padding: 25px 50px; */
      padding: 15px 50px;
    }
  
    .pricing-plan:last-child {
      border-right: none;
    }
  }
  
  .pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
  }
  
  .pricing-header {
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .pricing-features {
    color: #016FF9;
    font-weight: 600;
    letter-spacing: 1px;
    /* margin: 50px 0 25px; */
  }
  
  .pricing-features-item {
    /* border-top: 1px solid #e1f1ff; */
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 0;
  }
  
  .pricing-features-item:last-child {
    /* border-bottom: 1px solid #e1f1ff; */
  }
  
  .pricing-price {
    color: #016FF9;
    display: block;
    /* font-size: 24px; */
    /* font-size: 20px; */
    font-size: 100%;
    font-weight: 700;
  }
  
  .pricing-button {
    border: 1px solid #bad9f5;
    background-color: transparent;
    border-radius: 5px;
    color: #1977cc;
    display: inline-block;
    /* margin: 25px 0; */
    margin: 15px 0;
    padding: 15px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    font-weight: 600;
  }
  
  .pricing-button:hover,
  .pricing-button:focus {
    background-color: #1977cc;
    color: #fff;
  }
  
  .pricing-button.is-featured {
    background-color: #1977cc;
    color: #fff;
  }
  
  .pricing-button.is-featured:hover,
  .pricing-button.is-featured:active {
    background-color: #269aff;
  }


    .subscription-title {
        text-align: center;
        padding-bottom: 30px;
    }


    .subscription-title h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: #2c4964;
    }

    .subscription-title h2::before {
        content: "";
        position: absolute;
        display: block;
        width: 120px;
        height: 1px;
        background: #eff8ff;
        bottom: 1px;
        left: calc(50% - 60px);
    }
    .subscription-title h2::after {
        content: "";
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: #f1f7fd;
        bottom: 0;
        left: calc(50% - 20px);
    }
