/* FAQ Section
********************************************************************* */

.sec-faq {
  background: #F1F1F1;
  color: #000;
  text-align: center;
}

.sec-faq h3{
  color: #858585;
  text-align: center;
  margin-bottom: 0.5em;
  margin-top: 0;
}

.sec-faq h2{
  color: #000;
  margin: 0;
  text-align: center;
}

.sec-faq .flex {
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  cursor: pointer;
  margin-top: 1.5em;
  text-align: left;
  align-items: center;
  padding: 1rem;
  background: #fff;
  width: 100%;
  font-size: 18px;
  display: inline-flex;
  color: #464445;
  font-weight: 600;
}

.sec-faq .flex:hover {
  color: #3D8BD6;
}

.sec-faq i {
  line-height: 1.5;
}

.sec-faq .fa-circle-question {
  color: #464445;
}

.sec-faq .between {
  width: 100%;
  justify-content: space-between;
  margin-left: 1rem;
  display: inline-flex;
}

.sec-faq p {
  margin: 0;
}

.sec-faq .expand {
  font-weight: 500;
  text-align: left;
  display: none;
  padding: 1rem;
  background: #fff;
}

.faq-item.active .flex {
  color: #3D8BD6;
}

.faq-item.active .expand {
  display: block;
}

.faq-item.active .fa-chevron-right {
  transform: rotate(90deg);
}