.faq-list {
    max-width: 1300px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    font-size: 18px;
    position: relative;
    color: #062168;
    padding: 18px 35px 10px 50px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    min-height: 20px;
}

.faq-item.active .faq-question {
    color: #86a7ea;
}

.faq-item .ic {
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 0;
    width: 40px;
    height: 40px;
    font-family: 'Arimo', sans-serif;
    font-size: 25px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.faq-question .ic {
    background: #86a7ea;
    color: #fff;
}

.faq-item.active .faq-question .ic,
.faq-question:hover .ic {
    background: #062168;
    color: #fff;
}

.faq-question:before {
    content: '\f107';
    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;
    color: #86a7ea;
    font-size: 24px;
    position: absolute;
    top: 14px;
    right: 10px;
}

.faq-question:hover:before,
.faq-item.active .faq-question:before {
    color: #86a7ea;
}

.faq-item.active .faq-question:before {
    content: '\f106';
}

.faq-answer {
    display: none;
    position: relative;
    overflow: hidden;
    
}

.faq-answer .ic {
    color:#062168;
}

.faq-answer .editor {
    border-top: 1px solid #e8e8e8;
    padding: 15px 10px 15px 50px;
    min-height: 26px;
    color: #434343;
    background:#f1f1f1;
}

.content-top {
    display: none;
}