.faq-holder{
    width: 80%;
    margin: 0 auto;
}
.faq_accordion {
    background-color: #F7F7F7;
    color: #1C1E24;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
    margin-top: 20px;
  }
  
  .active, .faq_accordion:hover, .faq_accordion:visited, .faq_accordion:active, .faq_accordion:focus {
    border: none;
    outline: none;
  }
  
  .faq_accordion:after {
    content: '\27E8';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    transform: rotate(-90deg);
  }
  
  .active:after {
    content: "\27E8";
    transform: rotate(90deg);
  }
  
  .faq_panel {
    padding: 0 18px;
    background-color: #F7F7F7;
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    color: #707070;
    transition: max-height 0.2s ease-out;
  }

  @media (width <= 850px) {
    .faq-holder{
      width: 100%;
    }
  }
 
