.faq {
  padding: 0px 0px 50px 0px;
  /* background: linear-gradient(180deg, #030e20 0%, rgb(3 14 32 / 73%) 100%); */
  position: relative;
  overflow: hidden;
  background-image: url(../images/wh-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fbfbfbe5;
}


.faq .container {
  position: relative;
  z-index: 1;
}

.faq-box {
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding: 50px 0;
}

.faq-item {
  border-bottom: 1px solid #727376;
}

.faq .fq_LFtxt {
  margin-top: 100px;
}

.faq .fq_LFtxt h5 {
  display: inline;
  /* background-color: #f9e9d3; */
  color: #000000;
  border: 1px solid #000000;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 20px;
  position: relative;
}

.faq .fq_LFtxt h5::before {
  content: "";
  position: absolute;
  left: 109%;
  top: 50%;
  transform: translateY(-50%);
  width: 108px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.faq .fq_LFtxt h1 {
  padding-top: 20px;
  color: #e8edf2;
  font-family: "Playfair Display", serif;
}

.faq .fq_LFtxt h1 {
  font-size: var(--font-hl);
  color: #000000;
  position: relative;
}

.faq .fq_LFtxt p {
  font-size: 20px;
  padding: 10px 0px;
  color: #000000;
  line-height: 1.5;
}

.faq .fq_LFtxt h1:after {
  content: "";
  height: 2px;
  width: 70px;
  background: #c4a96d;
  display: inline;
}

.faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #000000;
  padding: 18px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq .faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq .faq-answer p {
  padding: 0 18px 15px;
  color: #a08300;
  font-size: 18px;

}

.faq .faq-item.active .faq-answer {
  max-height: 150px;
}

.faq .faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* responsive start */
@media (min-width:1200px) and (max-width:1399px) {
  .faq .fq_LFtxt h1 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 25px;
  }

  .faq .fq_LFtxt h5 {
    font-size: 15px;
  }

  .faq .fq_LFtxt p {
    font-size: 16px;
    padding: 10px 0px;
  }

  .faq .faq-question {
    font-size: 18px;
  }
}

@media (min-width:1400px) and (max-width:1500px) {
  .faq .fq_LFtxt h1 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 30px;
  }

  .faq .fq_LFtxt h5 {
    font-size: 15px;
  }

  .faq .fq_LFtxt p {
    font-size: 16px;
    padding: 10px 0px;
  }

  .faq .faq-question {
    font-size: 18px;
  }
}

@media (min-width:1900px) and (max-width:2500px) {
  .faq .fq_LFtxt h1 {
    font-size: 45px;
  }

  .faq .fq_LFtxt p {
    font-size: 22px;
    padding: 10px 0px;
  }

  .faq .faq-question {
    font-size: 27px;
  }
}

@media (max-width:990px) {
  .faq .fq_LFtxt p {
    font-size: 15px;
  }

}

@media (max-width:990px) {
  .faq .fq_LFtxt h5::before {
    width: 40px;
  }
  .faq .faq-question {
      font-size: 18px;

  }
}

@media (min-width:1901px) and (max-width:3000px) {
  .faq .fq_LFtxt h5 {
    font-size: 22px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-item {
    margin: 15px 0;
  }
}