

/* =================================
  css for the faq section
  ==================================  */

.faq-container {
  overflow: hidden;
}

.faq-item {
  cursor: pointer;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgb(216, 216, 216);
  transition: all 0.3s ease-in-out;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px 12px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.faq-answer {
  padding: 0px 20px;
  max-height: 0;
  font-size: 15px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.5s ease-in-out;
  background: rgb(240, 239, 239);
  line-height: 1.5rem;
}

/* .faq-item.active {
    background: #333;
    color: white;
} */
.faq-item.active .faq-question {
  background: #333;
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  /* padding: 10px 20px; */
  padding: 12px 20px;
  color: black;
}



