#faq{
    background-color: #fff;
}
.faq_body{
    padding:0 30px 30px 30px;
    
}
.faq_heading {
    background: #ebebeb;
    padding: 30px 10px;
    text-align: center;
}
.faq_question{
    margin-bottom: 16px;
    border: 1px solid #ebebeb;
    overflow: hidden;
}
.faq_question h4 {
    position: relative;
    background: #ebebeb;
    padding: 15px 48px 15px 15px;
}
.faq_question h4::after {
    content: "\002B";
    font-size: 32px;
    position: absolute;
    top: 6px;
    right: 16px;
}
.faq_question h4.active::after {
    content: "\2212";
}
.faq_question p {
    max-height: 0;
    padding: 0;
    font-size: 16px;
    color: #6b6969;
    transition: all 0.2s ease-out;
    line-height: 1.25;
}

@media (max-width: 767.98px){
    .faq_heading h1{
        font-size: 20px;
    }
    .faq_body{
        padding: 0 15px 5px 15px;
    }
    .faq_question h4{
        font-size: 14px;
    }
    .faq_question p{
        font-size: 13px;
    }
}