#main>.fusion-row{
    display:block!important
}
.faq-accordion{
    display:flex;
    flex-direction:column;
    gap:14px
}
.faq-item{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    overflow:hidden
}
.faq-question{
    width:100%;
    border:0;
    background:0 0;
    cursor:pointer;
    text-align:left;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:18px 20px
}
.faq-question-text{
    color:#000;
    font-size:18px;
    font-weight:600;
    line-height:1.3
}
.faq-icon{
    width:18px;
    height:18px;
    position:relative;
    flex:0 0 auto
}
.faq-icon::after,.faq-icon::before{
    content:"";
    position:absolute;
    inset:0;
    margin:auto;
    background:#000;
    opacity:.65
}
.faq-icon::before{
    width:18px;
    height:2px
}
.faq-icon::after{
    width:2px;
    height:18px;
    transition:transform .2s,opacity .2s
}
.faq-question[aria-expanded=true] .faq-icon::after{
    transform:scaleY(0);
    opacity:0
}
.faq-answer{
    border-top:1px solid rgba(0,0,0,.06)
}
.faq-answer-inner{
    padding:18px 20px 22px;
    color:#000;
    line-height:1.8;
    font-size:16px
}
@media (max-width:600px){
    .faq-question-text{
        font-size:16px
    }
    .faq-answer-inner{
        font-size:15px
    }
}
