 /* accordion */
 .accordion {
    background-color: white;
  color: #444;
  cursor: pointer;
  padding: 10px 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 21px;
  transition: 0.4s;
  position: relative;
}

.active, .accordion:hover {
}
.accordion::before{
    content: "\f005";
    font-weight: bold;
    position: absolute;
    left: -8px;
    font-size: medium;
    transform: translateY(-3px);
    color: gold;
    font-family: 'Font Awesome 5 Free';
}
.accordion:after {
  content: '\f054';
  color: #777;
  font-weight: bold;
  margin-left: 20px;
  position: absolute;
  transition: 0.4s;
  font-family: 'Font Awesome 5 Free';
  font-size: large;
}

.accordion.active:after {
  transform: rotate(90deg);
}

.panel {
    width: 99%;
    margin-right: 0;
    margin-left: auto;
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}