.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq_list {
    max-width: 960px;
    width: 100%;
}
.faq__item{
    width: 100%;
    background-color: var(--boxed-color-blue);
    margin-bottom: 12px;
    padding: 0 16px;
    border-radius: 5px;
    position: relative;
    transition: all .3s ease;
    border: 1px solid #ECEEF7
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__item--boxed{
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}
.faq__question{
    padding: 24px 0;
    text-transform: none;
    position: relative;
    transition: all .3s ease;
    cursor: pointer;
    gap: 20px;
    line-height: 1.2;
    min-height: 72px;
    color: var(--body-text);
}
.faq__question.active {
    color: var(--basic-company)
}
.question_text {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    transition: all .3s;
    line-height: 1;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 15px;
    transition: all .3s ease;
}
.faq__item.visible {
    background: var(--boxed-color-blue);
    border: 1px solid #B0B6D2;
}
.faq__question.active .faq__arrow{
    transform: rotate(-90deg);
}
.faq__content{
    padding: 0 !important;
    border-bottom: none;
    position: relative;
    display: none;
}
.faq__answer{
    font-size: 16px;
    font-weight: 400;
    padding: 16px 0 24px;
    position: relative;
    line-height: 1.3;
    border-top: 1px solid #DFE2EE;
}
.faq__question.active .see_more_plus {
    transform: rotate(180deg);
}
.see_more_plus {
    transition: all .3s ease;
    display: flex;
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}