
.waepa-faq-heading-wrapper {
    display: flex;
    align-items: center;
}

.waepa-faq-header {
    color: #001F5F;
    font-family: Roboto;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 42px;
    margin: 2rem 15px;
}

.faq-icon {
    width: 70px;
    height: 70px;
    margin-left: 15px;
}

.accordion {
  margin: 15px;
  margin-top: 30px;
}

.accordion-item {
  background-color: #fff;
  margin: 15px 0;

}

.accordion-item-header {
  padding: 16px 32px 16px 20px;
  min-height: 3.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #ECF5FB;
  color: #001f5f;
  font-size: 20px;
  line-height: 26px;
  font-family: 'Roboto';
}

.accordion-item-header::after {
  content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 3rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-top: 10px;
}

.accordion-item-body-content {
  padding: 1rem 1rem 4rem 1rem;
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  color: #001F5F;
}

.waepa-faq-container {
    background-color: #fff;
    margin-left: 15px;
}
.more-faq{
  color: #001F5F;
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 26px;
  margin-left: 30px;
  margin-bottom: 60px;
}
#moreFaqLink{
    color: #0088CE;
}

@media all and (min-width:319px) and (max-width: 768px) {
    .waepa-faq-header {   
        font-size: 30px;
        margin: 1rem 15px;
        margin-top: -30px;
    }
    .faq-icon {
        margin-top: -30px;
    }
    .accordion-item-header::after {
        right: 2rem;
        top: 50%;
    }
}