#faqs {
  margin-bottom: 4rem;
}
#faqs .faq-qa {
  border-top: 2px solid black;
  margin-top: 2rem;
}
#faqs .faq-item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  border-bottom: 1px solid var(--color-gray-800);
  padding: 1rem 0;
}
#faqs .faq-content {
  margin-left: 0;
  margin-right: auto;
}
#faqs .faq-content h3 {
  margin-top: 1rem;
}
#faqs .faq-content {
  margin-bottom: auto;
}
#faqs .index {
  margin-top: 1rem;
  margin-bottom: auto;
  font-size: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.5s;
}
#faqs .faq-item.active .index {
  opacity: 1;
}
#faqs .answer {
  max-height: 1px;
  overflow: hidden;
  transition: max-height 0.5s;
}
#faqs .faq-plus-btn:after {
  content: "+";
  font-size: 1.5rem;
}
#faqs .faq-plus-btn {
  background-color: transparent;
  color: black;
  transition: background-color 0.5s;
}
#faqs .faq-item.active .answer {
  max-height: 6rem;
}
#faqs .faq-item.active .faq-plus-btn:after {
  content: "-";
}
#faqs .faq-item.active .faq-plus-btn {
  background-color: black;
  color: white;
}
#faqs .faq-plus-btn {
  flex-shrink: 0;
  margin-bottom: auto;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-gray-500);
}
#faqs .faq-plus-btn span {
  display: inline-block;
  font-size: 2rem;
}

/*# sourceMappingURL=faq.css.map */
