@import url(../../global.css);

.sec6 .content .faq .p1 .accordionQues {
  background: linear-gradient(126deg,rgba(30, 21, 66, 1) 0%, rgba(5, 0, 0, 1) 100%);;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  cursor: pointer;
}

.sec6 .content .faq .p1 {
  overflow: hidden;
}


.sec6 .content .faq .p1 img {
  height: 30px;
  width: 30px;
  filter: invert(1);
  opacity: 0.6;
}

.sec6 .accordionAns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.accordionAns {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordionAns.active {
  max-height: 300px;
  opacity: 1;
}