.faqs-repeater{
  margin: 20px 0;
}
.accordion {
  align-items: center;
  background-color: #fff;
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  justify-content: space-between;
  text-align: left;
  transition: .4s;
  width: 100%;
  padding: 18px;
  font-family: "Heading";
  text-transform: uppercase;
}

.active, .accordion:hover {
  background-color: #aa9740;
  color: #fff;
}

.accordion:after {
  background-image: url(../image/Arrow-down.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 12px;
  width: 20px;
}

.active:after {
  background-image: url(../image/Arrow-up.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 12px;
  width: 20px;
}

.panel {
  padding: 0 18px;
  background-color: #aa9740;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .accordion{
    font-size: 17px;
    gap: 30px;
    line-height: 25px;
  }
}