

/* Categories */
.pfaq-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pfaq-categories li {
  padding: clamp(10px, 2vw, 14px);
  font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;

  color: #45556C;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 6px;
}
.bor-c{
  border-right: 1px solid #D9D9D9;

}
.pfaq-categories li.active {
  background: #c7b6e2;
  color: #4C2A71;
  font-weight: 700;
}

/* FAQ Item */
.pfaq-item {
  border-bottom: 1px solid #D9D9D9;
  padding: clamp(20px, 10vw,30px) 0;
}
/* .cus-pad{
    padding:clamp(18px, 2vw,24px);
} */
.pfaq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(18px, 2vw,24px);
  font-weight: 700;
  cursor: pointer;
}

.pfaq-answer {
  display: none;
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}
.line-md--chevron-down-c {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-dasharray='12' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 16l-7 -7M12 16l7 -7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.4s' values='12;0'/%3E%3C/path%3E%3C/svg%3E");
}

/* Active */
.pfaq-item.active .pfaq-answer {
  display: block;
  background: #C4B9D1;
  border: 1px solid #711BCF;
  padding: clamp(14px, 3vw, 20px);

  border-radius: 14px;
}

.pfaq-item.active .picon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 991px) {
  .pfaq-categories {
    display: flex;
    flex-direction: column;

  }


}
.picon {
  transition: transform 0.3s ease;
}

.pfaq-item.active .picon {
  transform: rotate(180deg);
}
.pfaq-item.active .pfaq-answer {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);

}
