.faq-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-question,
.faq-answer {
    position: relative;
}
.faq-question {
    position: relative;
    box-sizing: border-box;
    padding: 15px 55px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question .name{
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #333;
    font-size: 18px;
}
.faq-question:hover,
.faq-item.active .faq-question {
    background: #CEB397;
}
.faq-question:after {
    content: "\f107";
    font-family: 'icon-font', serif;
    position: absolute;
    text-align: center;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 25px;
    color: #333;
    transition: all 0.3s ease;
}
.faq-question:hover:after,
.faq-item.active .faq-question:after{
    transform: rotate(180deg);
}
.faq-question .icon{
    position: absolute;
    left: 10px;
    top: 8px;
    display: block;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-indent: unset;
    font-size: 30px;
    font-weight: 500;
    font-style: unset;
    color: #333;
    font-family: "Tomorrow", sans-serif;
}
.faq-answer{
    display: none;
    padding: 15px 25px;
    margin-top: 5px;
    color: #666;
    background: #F2EFEC;
}
@media screen and (max-width: 1000px){
    .faq-question{
        padding: 15px 40px;
    }
    .faq-question .name{
        font-size: 15px;
    }
    .faq-question .icon{
        top: 13px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 25px;
    }
    .faq-question:after{
        right: 15px;
        top: 20px;
        width: 15px;
        height: 15px;
        line-height: 15px;
        font-size: 20px;
    }
}
@media screen and (max-width: 480px){
    .faq-question {
        padding-right: 15px;
    }
    .faq-question:after{
        display: none;
    }
}