.faq .answer {
    overflow: hidden;
    transition: 0.35s;
}

.faq .question-container.active .answer {
    max-height: var(--max-height)   !important;
}

.question {
    font-weight: 400;
	cursor: pointer;
	justify-content: space-between;
}

.question{
    display: flex;
    gap: 5px;
}
.question-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.question-container.active{
    padding-bottom: 10px;
}

