#faqs {
  min-height: 60vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-primary);
  color: var(--text-secondary);
}

#faqs h2 {
  color: var(--text-primary);
  margin-bottom: 2rem;
}

#faqs .faq-container {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

#faqs .faq-container .box {
  width: calc(100vw - 0.8rem);
  max-width: 800px;
  background: var(--bg-secondary);
  border-radius: 5px;
  padding: .5rem;
  margin: 0 .4rem;
}

#faqs .faq-container .box .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .5rem;
}

#faqs .faq-container .box .question .icons {
  display: flex;
  gap: .5rem;
}

#faqs .faq-container .box .question .icons p {
  width: 20px;
  height: fit-content;
}

#faqs .faq-container .box .question .icons p:nth-child(2) {
  display: none;
}

#faqs .faq-container .box .question .icons p:nth-child(2).show {
  display: initial;
}

#faqs .faq-container .box .question .icons p:nth-child(1).show {
  display: none;
}

#faqs .faq-container .box .ans {
  padding-left: 1.7rem;
  transition: height 1s ease-in-out;
}

#faqs .faq-container .box .ans p {
  height: 0;
  overflow: hidden;

}

#faqs .faq-container .box .ans p.show {
  height: fit-content;
}