/* FAQ Style */

#accordion .card {
  cursor: pointer;
  margin-bottom: 0.5rem;
}
#accordion .card-header {
    background: #809050;
    transition: all .4s;
}
#accordion .card-header:hover {
    background: #877348;
    transition: all .4s;
}
#accordion .card .card-header:after,
#accordion .card .card-header.collapsed:after {
    content: '\f067';
    font-family: 'Font Awesome\ 5 Free';
    position: absolute;
    right: 18px;
    top: 4px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 900;
}
#accordion .card .card-header[aria-expanded="true"]:after {
    content: '\f068';
}

#accordion .card h4.panel-title {
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
#accordion .card .card-header[aria-expanded="true"]{
    background: #000;
}
#accordion .card h4.panel-title button:hover {
  color: #fff;
  text-decoration: none;
}
#accordion .card-body {
    background-color: #877348;
}