.section-faqblock{
    padding-top: 0;
}
.faqblock_text-block{
    display: flex;
}
.section-faqblock .section_pretitle {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 44px;
    color: var(--color-4);
    font-weight: 400;
    margin-left: 10px;
}

.section-faqblock .section_title {
    color: var(--color-4);
    font-size: 47px;
    line-height: 67px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 25px;
}


.faq-container {
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-top: 1px solid #8e8e8e;
}
.faq-item:last-child{
    border-bottom: 1px solid #8e8e8e;
}

.faq-question {
    font-size: 20px;
    line-height: 44px;
    color: #000000;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: background-color 0.5s ease;
}

.faq-answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    font-weight: 400;
}

.faq-icon {
    position: relative;
    right: -10px;
    width: 18px;
    margin-top: 15px;
    margin-left: 10px;
    transition: transform 0.5s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 1440px) {
    .section-faqblock .section_title{
        font-size: 40px;
        line-height: 59px;
        margin-right: 40px;
    }
}
@media (max-width: 992px) {
    .faqblock_text-block{
        flex-direction: column;
    }
    .section-faqblock .col-lg-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .faqblock_block-pretitle{
        justify-content: center;
    }
    .section-faqblock .section_title{
        text-align: center;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .section-faqblock .section_title {
        font-size: 30px;
        line-height: 50px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
