#faq {
    padding: 120px 0;
    background-color: #fff
}

#faq .container {
    width: min(970px, 100%)
}

#faq .container .section_title {
    font-size: 40px;
    line-height: 140%;
    letter-spacing: -.045em;
    font-weight: 500;
    margin-bottom: 48px
}

#faq .faq_wrapp {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

#faq .btn-faq {
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 56px;
    transition: .3s
}

#faq .btn-faq.active {
    background-color: #ffffff
}

#faq .btn-faq {
    background-color: #000000
}

#faq .btn-faq:after {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    background: rgba(0, 0, 0, 0);
    background-image: url('https://res.cloudinary.com/dtzusgwzt/image/upload/v1753732835/plus_rkkueh.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: .3s;
    margin: auto;
}

#faq .btn-faq.active:after {
    background-image: url('https://res.cloudinary.com/dtzusgwzt/image/upload/v1753732835/minus_at3pru.svg');
}

#faq .faq_text {
    display: none;
    padding: 20px 0;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -.045em;
    font-weight: 400
}

#faq .faq_text.active {
    display: block;
    animation: answerAppear 3s linear 1 forwards;
    overflow: hidden
}

@keyframes answerAppear {
    0% {
        max-height: 0
    }
    to {
        max-height: 100vh
    }
}

#faq .faq_block {
    background: #fff;
    padding: 16px 16px 14px 32px;
    border: 1px solid #e8e8e8;
    border-radius: 8px
}

#faq .faq_block.active {
    background-color: #000000;
    color: #fff
}

#faq .faq_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

#faq .faq_title h3 {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -.045em;
    font-weight: 400
}

@media screen and (max-width:860px) {
    #faq {
        padding: 40px 16px 64px
    }
    #faq .container {
        padding: unset
    }
    #faq .container .section_title {
        font-size: 32px;
        line-height: 140%;
        letter-spacing: -.045em;
        font-weight: 500;
        margin-bottom: 32px
    }
    #faq .container .faq_wrapp .faq_block {
        padding: 16px
    }
    #faq .container .faq_wrapp .faq_block .faq_title {
        display: grid;
        grid-template-columns: auto 44px;
        gap: 16px
    }
    #faq .container .faq_wrapp .faq_block .faq_title h3 {
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -.045em;
        font-weight: 400
    }
    #faq .container .faq_wrapp .faq_block .faq_text.active {
        font-size: 14px;
        line-height: 140%;
        letter-spacing: -.045em;
        font-weight: 400;
        padding-top: 14px
    }
}