.faq {
    padding: 30px 0;
    background: white;
}
.faq_title {
    text-align: center;
    font-size: 35px;
    padding-bottom: 20px;
    color: #686c7d;
    font-weight: bold;
}
.faq_wrapper {
    box-sizing: border-box;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0 auto;
}
.faq_question {
    background: #4667dc;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 5px 75px 5px 25px;
    margin-top: 15px;
    font-weight: bold;
    line-height: 36px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: white;
}
.faq_close {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    right: 25px;
    transition: 0.7s;
}
.faq_answer {
    box-sizing: border-box;
    font: inherit;
    line-height: 22px;
    padding: 45px 65px;
    display: none;
    opacity: 0;
    transition: 0.7s;
}
.fadeIn {
    display: block;
    opacity: 1;
}
.faq_active .faq_close {
    transform: rotate(180deg);
}
@media (max-width: 767px) {
    .faq_question {
        line-height: 24px;
        min-height: 45px;
    }
    .faq_answer {
        padding: 10px;
    }
    .faq_title {
        font-size: 24px;
        padding-bottom: 10px;
    }
}