.faq-header h2 {
  padding-top: 2rem;
  color: #000;
  font-size: 24px;
}

.accordion-question {
  cursor: pointer;
  padding: 12px 0 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  position: relative;
}

.accordion-question h3 {
  color: #000;
  font-size: 16px;
}

.active,
.accordion-question:hover {}

.accordion-question:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  position: absolute;
  top: 12px;
  right: 12px;
}

.accordion-list .active:after {
  content: "\2212";
}

.panel {
  padding: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel>div {
  padding: 8px 0;
}