.faq-banner-content{
  position: absolute;
  /* top: 12%; */
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}
.faq-banner-content menu {
  padding: 2% 0;
  padding-right: 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-banner-content menu ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:row;
  gap: 38px;
  font-size: 16px;
  margin-bottom: 0px;
}
.faq-banner-content menu ul li a{
  text-decoration: none;
 color: white;
}
.faq-banner-content .head-title{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 46px;
}
.headtitle{
  font-size: 36px;
}
.faq .header{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.faq{
  padding: 46px 0;
  height: 100%;
}
.header select{
  display: flex;
  height: auto;
  width: 250px;
  font-size: 24px;
}






.faq section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq .container{
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}





.faq-accordion{
  padding: 24px 0;}
.title {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-accordion .container{
  transition: 0.01s ease-out;
  padding: 18px;
}


.title img.search-icon {
  margin-right: 8px; 
  width: 20px; 
  height: 20px;
}

#open {
  display: flex;
  align-items: center;
}

#open img.plus-icon,
#open img.minus-icon {
  width: 18px; 
  height: auto; 
}

.desc{
  font-size: 16px;
  display: none;
  width: 95%;
  margin: auto;
  padding-bottom: 15px;
  padding-top: 10px;
}

@media (max-width: 768px) {

  .faq .header {
      align-items: flex-start;
      padding: 10px 0;
      flex-direction: column;
  }

  .title img.search-icon {
      margin-right: 8px;
      width: 20px;
      height: 20px;
      margin-top: 4px;
  }

  .faq .title .question {
      display: flex;
      align-items: flex-start;
  }

  .faq-accordion .container {
      transition: 0.01s ease-out;
      padding: 18px 10px;
  }

  .faq .desc {
    width: 84%;
  }

}