.FAQWrap H2{
    margin: 10px 0;
        
}
.accordion {
  background-color: #eaeff1;
  color: #013d52;
  cursor: pointer;
  /*margin-bottom: 10px;*/
  margin-top: 10px;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
    font-weight: 700;
  transition: 0.2s;
}
.active, .accordion:hover {
  background-color: #ccd8dc;
}
.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\2212";
}
.panel {
  padding: 0px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
    font-size: 18px;
    line-height: 22px;
    background-color: #f5f9fa;
}
.panel P, .panel LI{font-size: 18px; line-height: 22px;}


