:root {
  --white: #ffffff;
  --black: #000000;
  --accent-gray: #565656;
  --lighter-gray: #7d7d7d;
  --darker-gray: #233142;
  --golden: linear-gradient(135deg, #A18645, #EBD988, #F5E7A1, #C4B369);
}


body .faq_container {
  width: 100%;
  min-height: calc(100vh - 87px);
  margin-top: 87px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .faq_container .main_text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body .faq_container .main_text .header {
  font-size: 1.6rem;
color: var(--white);
}
body .faq_container .main_text .sec_text {
  color: var(--white);
}
body .faq_container .faqs {
  width: 80%;
}
body .faq_container .faqs .wrapper {
  background: var(--darker-gray);
  box-shadow: -1px 1px 9px 3px rgba(255, 255, 255, 0.2), 5px 5px 10px rgb(49 64 130 / 72%), inset 0px 0px 5px rgba(255, 255, 255, 0.2), inset 3px 3px 5px rgb(94 123 205 / 70%);
  margin-bottom: 20px;
  padding: 10px 37px;
  border-radius: 5px;
}
body .faq_container .faqs .wrapper .toggler {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: white !important;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 0;
}
body .faq_container .faqs .wrapper .toggler .icon {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
body .faq_container .faqs .wrapper .content {
  position: relative;
  font-size: 14px;
  text-align: justify;
  line-height: 1.6;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
body .faq_container .faqs .wrapper .content p {
  color: var(--white);
}

@media all and (max-width: 999px) {
  body .faq_container {
    width: 100%;
    min-height: calc(100vh - 87px);
    margin-top: 87px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  body .faq_container .main_text {
    text-align: center;
  }
  body .faq_container .main_text .header {
    font-size: 1.3rem;
  }
  body .faq_container .faqs {
    width: 100%;
  }
  body .faq_container .faqs .wrapper {
    background: var(--darker-gray);
    box-shadow: -1px 1px 9px 3px rgba(255, 255, 255, 0.2), 5px 5px 10px rgb(49 64 130 / 72%), inset 0px 0px 5px rgba(255, 255, 255, 0.2), inset 3px 3px 5px rgb(94 123 205 / 70%);
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 5px;
  }
  body .faq_container .faqs .wrapper .toggler {
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: white !important;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 0;
  }
  body .faq_container .faqs .wrapper .toggler .icon {
    font-size: 1.3rem;
    transition: all 0.3s ease;
  }
  body .faq_container .faqs .wrapper .content {
    position: relative;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  body .faq_container .faqs .wrapper .content p {
    color: var(--white);
  }
}/*# sourceMappingURL=faqStyle.css.map */