@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&family=Murecho:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Kufam", sans-serif;
  --secondary-font: "Murecho", sans-serif;
  --primary-color: #6be6e65d;
  --secondary-color: #a6af2e;
  --btn-hover: #a6af2e;
  --bg-1: #f6f9ffb2;
  --bg-2: #000000;
  --text-color-1: #2a5055;
  --text-color-2: #424242;
  --text-color-3: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

.container {
  max-width: 1340px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Hero */
.faq-hero {
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.21) 0%,
      rgba(0, 0, 0, 0.7) 74%
    ),
    url(../img/contact-page/FAQ-Hero.png) lightgray 50% / cover no-repeat;
}

/* Faq Start */

#faq {
  position: relative;
  width: 100%;
  background: var(--ac-black);
  padding: 80px 0;
}

#faq .faq_wrapper {
    width: 100%;
    max-width: 80%;
    margin: auto;
}

#faq .faq_acc details {
  overflow: hidden;
  margin-bottom: 16px;

}

#faq .faq_acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background-color: transparent;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#faq .faq_acc summary .icon {
  transition: transform 0.3s ease;
}

#faq .faq_acc details[open] summary {
  background: var(--primary-color);
}

#faq .faq_acc details[open] summary .icon {
  transform: rotate(180deg);
}

#faq .faq_acc details summary .icon svg {
  width: 16px;
  height: 16px;
}

#faq .faq_acc .content {
  background: #FDF7EA;
  padding: 10px 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

#faq .faq_acc details .heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color-1);
  font-family: var(--primary-font);
  margin: 0;
}

#faq .faq_acc .content p {
  display: block;
  text-align: left;
  margin: 0;
  width: 100%;
  max-width: 96%;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  #faq .faq_wrapper .title {
    font-size: 34px;
  }
  #faq .faq_acc {
    margin-top: 20px;
  }

  #faq .faq_wrapper {
    width: 100%;
    max-width: 100%;
}
}

/* FAQ End */
