.faq__wraper{
    margin: auto;
}

.faq-item {
    margin-bottom: 1px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f8f8f8;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #eeeeee;
}

.faq-question.active {
    background-color: #e8e8e8;
}

.question__text {
    flex: 1;
    font-weight: 500;
    font-size:  24px;
}

.question__arrow{

}

.question__arrow svg {
    transition: transform 0.3s ease;
}

.faq-question.active .question__arrow svg {
    transform: rotate(-180deg);
    width: 18px;
    height: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
    font-size: 18px;
    color: var(--gray2);
}

.faq-answer.open {
    max-height: 500px;
    padding: 30px;
    /*cursor: pointer;*/
}

.h_line {
    height: 1px;
    background-color: #ddd;
    margin: 0;
}

@media (max-width: 992px) {
    .question__text{
        font-size:20px
    }

    .faq-answer{
        font-size:18px
    }
}

@media (max-width: 400px) {
    .question__text{
        font-size: 16px;
    }

    .faq-answer{
        font-size: 14px;
    }
}