/* CSS for Heading Image */

#faq_title_image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/FAQ/faq_Title_mobile.svg);
  border: none;
}

@media (min-width: 991px) {
  #faq_title_image {
    background-size: initial;
    background-image: linear-gradient(rgb(52,57,64), rgba(255,255,255,0)), url(../../assets/img/FAQ/faq_Title_desktop.svg);
  }
}

/* CSS for Questions and Answers Section */

.faq_section {
  margin-bottom: 30px;
}

.faq_question {
  margin-top: 0px;
  margin-bottom: 0px;
}

.faq_answer {
  margin-top: 0px;
  margin-bottom: 0px;
}

