* {
  margin: 0;
  padding: 0;

}
.faq_area {
  padding: 10px 0;

  background:#fff;
}
.faq_wrapper {
  max-width: 1200px;
  margin: auto;
}
.faq_item {
  margin-bottom: 10px;
}
.faq_title {
  padding: 15px;
  background: #ebebeb;
  color: #000;
  font-wight: 700;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  border-radius: 10px;
}
.faq_title span.arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' class='bi bi-chevron-down' viewBox='0 0 14 14'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
  right: 20px;
  color: #000;
  
  top: 0;
  margin: auto;
  bottom: 0;
  transition: all 0.5s;
}
.faq_title.active span.arrow {
  transform: rotate(180deg);
}
.faq_details {
  font-size: 18px;
  padding: 15px;
  background: #fff;
  display: none;
  color:#000;
}