.banner {
    margin-bottom: -8%;
}
.content {
    max-width: 1280px;
    margin: 0 5%;
    padding: 60px 65px 0;
}
.faq-list li {
    margin-bottom: 6px;
}
.faq-question {
    position: relative;
    cursor: pointer;
    padding: 14px 50px 14px 60px;
    color: #777777;
    font-size: 15px;
    line-height: 1.4;
    border: 1px solid #EAEAEA;
}
.faq-item .faq-question:hover,
.faq-item.active .faq-question{
    background: url(../images/faq/faq-question-bg.jpg);
    border-color: #47A38A;
    color: #fff;
    font-weight: bold;
}
.faq-question .icon {
    background-image: url(../images/faq/icon_q.png);
    width: 40px;
    height: 40px;
    position: absolute;
    left: 12px;
    top: 4px;
}
.faq-question:hover .icon,
.faq-item.active .faq-question .icon {
    background-position: 0 100%;
}
.faq-question:after {
    content: " ";
    background: url(../images/faq/accordion.png) no-repeat;
    display: block;
    width:  30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 15px;
}
.faq-question:hover:after {
    background-position: 100% 0;
}
.faq-item.active .faq-question:after {
    background-position: 100% 0 ;
}
.faq-answer {
    display: none;
    padding: 25px 60px;
    border: 1px solid #30BBB8;
    color: #30BBB8;
    line-height: 1.75;
    margin-top: 1px;
}

@media screen and (max-width: 900px) {
    .banner,
    .content {
        margin: 0;
    }
    .content {
        padding: 40px 0 0;
    }
}
@media screen and (max-width: 500px) {
    .faq-question {
        padding: 10px 15px 10px 45px;
    }
    .faq-question:after {
        display: none;
    }
    .faq-question .icon {
        background-size: 100% auto;
        width: 30px;
        height: 30px;
        left: 8px;
    }
    .faq-answer {
        padding: 20px;
    }
}