/*--Faq Section --*/
.faq-section h2 {
  font-weight: 700;
}
.faq-box {
  font-size: 18px;
  border-bottom: 1px solid #bed5fc;
  padding-bottom: 5px;
}

.question:before {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.question {
  font-weight: 700;
  position: relative;
  padding: 12px 0 6px 42px;
  cursor:pointer;
}

.question span {
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid #437ef2;
  border-right: 3px solid #437ef2;
  transform: rotate(135deg);
  transform-origin: top right;
  left: 0;
  top: 35px;
}
.faq-box:not(.open) .question span{
  transform: rotate(45deg);
  top: 25px;
  left: 5px;
}
.answer {
  padding-left: 40px;
  overflow: hidden;
}
.faq-box:not(.open) .answer {
  max-height: 0;
}
.faq-box.open .answer {
  padding-bottom: 10px;
}
.answer ul, .answer ol {
  padding: 5px 0 10px 30px;
}
.answer * {
  font-weight: 300;

}
.answer li {
  color:#000001;
}
.answer b,
.answer strong {
  font-weight: 500!important;
}
.answer p:not(:first-child):not(:last-child):not(:only-child) {
  margin: 10px 0;
}
@media(max-width:767px){
  .question,
  .answer {
    padding-left: 32px;
  }
}
/*--Faq Section --*/