.faq_wrap{
    width: 1460px;
    margin: 150px auto 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.faq_tabs{
    display: flex;
    gap: 16px;
}

.faq_button{
    width: 195px;
    height: 48px;
    padding: 16px 25px 16px 25px;
    font-family: Graphik LCG;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 14px;
    background-color: #F2F4FD;
    transition: 0.25s;
}

.faq_button.active{
    background: #052289;
    color: white;
    transition: 0.25s;
}

.faq_title{
    display: flex;
    font-family: Graphik LCG;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -1.8px;
    color: #232942;
}

.faq_content{
    margin-top: 63px;
    display: flex;
    row-gap: 16px;
    flex-wrap: wrap;
}

.faq_item{
    display: flex;
    justify-content: space-between;
    padding: 22px 22px 22px 38px;
    border-radius: 16px;
    background-color: #F2F4FD;
    cursor: pointer;
    width: 100%;
}

.faq_text__block{
    display: flex;
    flex-direction: column;
    width: fit-content;
    justify-content: center;
}

.faq_content .content_text_24px {
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-right: 10px;
    color: #232942;
    height: 54px;
    display: flex;
    align-items: center;
}

/* .faq_item.active .content_text_24px{
    padding-top: 12px;
    transition: padding-top 0.3s ease-out;
} */

.faq_content .content_text_16px {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    /* max-height: 0; */
    margin-top: 0px;
    color: #586181;
    opacity: unset;
    font-size: 14px;
    line-height: 1.4;
}

.faq_item_plus_minus {
    width: 54px;
    height: 54px;
    background-color: #E960A12B;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plus_minus_icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    stroke-width: 4;
    transition: transform 0.5s ease;
}

.plus_line.horizontal, .plus_line.vertical {
    transform-origin: center;
    fill: none;
    stroke: #E960A1;
}

.plus_line {
    stroke-width: 4;
    transition: transform 0.5s ease;
}


/* -------------------------------- АДАПТИВ ---------------- */
@media (max-width: 1455px) {
    .faq_wrap {
        width: 944px;
        margin-top: 120px;
    }

    .faq_content{
        margin-top: 31px;
    }

    .faq_tabs{
        margin-top: 63px;
        overflow: scroll;
        scrollbar-width: none;
    }
}

@media (max-width: 944px) {
    .faq_wrap {
        width: 91vw;
        margin-top: 100px;
    }

    .faq_title {
        font-size: 28px;
        line-height: 1.2;
        flex-wrap: wrap;
    }

    .faq_button{
        width: auto;
        padding: 16px 32px 16px 32px;
        text-align: center;
    }

    .faq_content .content_text_24px {
        height: auto;
        font-size: 16px;
        line-height: 1.5;
    }

    .faq_item.active .content_text_16px {
        margin-top: 13px;
        
    }
}