@charset "utf-8";
/*------------ faq ------------*/
.faq-list{
    padding: 0 15px;
}
.faq-item{
    border-bottom: 1px solid #ECE8E3;
    list-style-type: none;
}
.faq-question{
    position: relative;
    font-size: 17px;
    min-height: 27px;
    padding: 32px 5px 32px 75px;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-question h3{
    margin: 0;
    color: #46352B;
}
.faq-question i{
    display: none;
}
.faq-question:before{
    content: '';
    display: block;
    background: #46352B;
    width: 53px;
    height: 53px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    left: 5px;
    transition: all 0.3s ease;
}
.faq-question::after {
    position: absolute;
    content: "\f107";
    top: 31px;
    left: 21px;
    font-size: 30px;
    color: #fff;
    display: block;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.faq-question:hover:before{
    background: #EE7B1D;
}
.faq-item.active .faq-question:after {
    top: 28px;
    content: "\f106";
}
.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
    color: #EE7B1D;
}
.faq-answer{
    margin: 0 0 20px 75px;
    background: #FBF8F4;
    border-radius: 8px;
    padding: 15px 20px;
    display: none;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-question:before{
        width: 30px;
        height: 30px;
        left: 0;
    }
    .faq-question{
        padding: 20px 0 20px 40px;
    }
    .faq-answer{
        margin: 0 0 20px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-question::after {
        top: 25px;
        left: 9px;
        font-size: 19px;
    }
    .faq-item.active .faq-question:after {
        top: 23px;
    }
}