.faq_div {
    background: #FFFFFF;
    margin-bottom: 20px;
}

.faq_top {
    padding: 15px 25px;

}

.faq_icon {
    width: 31px;
    height: 30px;
    flex-shrink: 0;
    display: block;
    background: url('img/faqIcon.webp') no-repeat;
    background-size: 100% 100%;
}

.faq_tit {
    font-family: Poppins-Light;
    font-weight: 300;
    font-size: 20px;
    flex: 1;
    margin: 0 40px;
    color: #333333;
}

.faq_icon2 {
    width: 16px;
    height: 16px;
    background: url('img/add.png') no-repeat;
    background-size: 100% 100%;
}

.faq_bottom {
    border-top: 1px solid #314D3E10;
    font-family: Poppins-Light;
    font-weight: 300;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_bottom_line {
    width: 8px;
    background: #000000;
    margin-right: 20px;
    transform: scaleY(0);
    transition: transform 0.4s ease 0.1s;
}

.faq_div.active .faq_bottom_line {
    transform: scaleY(1);
}

.faq_div.active .faq_tit {
    font-family: Poppins;
    font-weight: bold;
}

.faq_div.active .faq_bottom {
    padding: 40px 90px;
    display: flex;
    max-height: unset;
    opacity: 1;
}

.faq_div.active .faq_icon2 {
    width: 16px;
    height: 4px;
    background: url('img/add2.png') no-repeat;
    background-size: 100% 100%;
}

.faq_list {
    display: none;
}


.cat_top_tabs {
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cat_top_tab {
    padding: 0 15px;
    flex-shrink: 0;
    border: 1px solid #2858A4;
    margin-right: 10px;
    line-height: 50px;
    font-size: 18px;
}



.cat_top_tab.active,
.cat_top_tab:hover {
    background: #2858A4;
}

.cat_top_tab.active,
.cat_top_tab:hover {
    color: #fff;
}

.faq_list.active {
    display: block;
}

@media only screen and (max-width:950px) {
    .faq_div.active .faq_bottom {
        padding: 40px 15px;
    }

    .cat_top_tab {
        padding: 0 10px;
        margin-right: 5px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .faq_div.active .faq_tit{
        font-size: 18px;
        margin: 0 20px;
    }
}