  .accordion-faq {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-bottom: 10px;
  }
  .active-faq, .accordion-faq:hover {
    background-color: #ccc;
  }
  .accordion-faq:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  .active-faq:after {
    content: "\2212";
  }
  .panel-faq {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  #faq h5 {
    font-size: 1.6rem;
    color: #27355b;
    font-weight: 300;
    margin-bottom: 25px;
  }
  #faq p {
    margin-bottom: 10px;
    font-weight: 300;
  }