.db-faq {
  max-width: 900px;
  margin: 40px auto;
}

.db-faq-item {
  border-bottom: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.db-faq-question {
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: #123047;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-faq-question span::before {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: #123047;
}

.db-faq-item.is-open .db-faq-question span::before {
  content: "-";
}

.db-faq-answer {
  display: none;
  padding: 0 0 24px;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}

.db-faq-item.is-open .db-faq-answer {
  display: block;
}