.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-question,
.faq-answer {
    position: relative;
}
.faq-question {
    cursor: pointer;
    color: #555;
    font-size: 18px;
    line-height: 1.5;
    padding: 15px 55px;
    background: #f6f6f6;
    transition: all 0.3s ease;
}
.faq-question h3{
    font-weight: 500;
}
.faq-question:hover,
.faq-item.active .faq-question {
    background: #555;
    color: #fff;
}
.faq-question:after {
    content: "";
    background: url(../../images/common/faq/accordion.svg) no-repeat;
    display: block;
    width: 19px;
    height: 18px;
    position: absolute;
    top: 22px;
    right: 20px;
}
.faq-question:hover:after,
.faq-item.active .faq-question:after {
    background: url(../../images/common/faq/accordion_.svg) no-repeat;
}
.faq-question .icon {
    background: #fff;
    color: #333;
    font-family: 'Cormorant Garamond',serif;
    text-indent: unset;
    font-style: unset;
    font-size: 30px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    position: absolute;
    left: 12px;
    top: 15px;
    border-radius: 50%;
}
.faq-answer {
    display: none;
    padding: 15px 25px;
    border: solid 1px #777;
    margin-top: 5px;
}
@media screen and (max-width: 1000px) {
    .faq-question h3 {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    .faq-question {
        padding-left: 55px;
        padding-right: 15px;
    }
    .faq-question .icon {
        left: 8px;
    }
    .faq-question:after {
        display: none;
    }
}