.accordion-faq {
  background-color: #eee;
  color: #20265b;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-bottom: 10px;
}
.active-faq,
.accordion-faq:hover,
.accordion-faq:focus {
  background-color: #e7e7e7;
  outline: 3px solid #20265b !important;
}
.accordion-faq:after {
  content: "\002B";
  color: #20265b;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.active-faq:after {
  content: "\2212";
}
.panel-faq {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#faq h5 {
  font-size: 1.6rem;
  color: #27355b;
  font-weight: 300;
  margin-bottom: 25px;
}
#faq p {
  margin-bottom: 10px;
  font-weight: 300;
}
