/* FAQs */
.faqHeading {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faqDescription {
  font-weight: 400;
  font-size: 14px;
  line-height: 137.6%;
}

.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  padding-right: 40px;
}

.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}


.accordion:after {
  content: '\f347';
  font-family: dashicons;
  float: right;
  margin-left: 5px;
  margin-right: -30px;
}

.active:after {
  content: '\f343';
  font-family: dashicons;
  float: right;
}

.faqQuestion {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: var(--neutral100) !important;
}

.faqAnswer {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  margin-bottom: 20px !important;

}

.active,
.accordion:hover {
  color: var(--primary-one) !important;
}

@media screen and (max-width: 768px) {
  .accordion {
    padding: 12px 20px 12px 0px;
  }

  .panel {
    padding: 12px 0px;
  }
}