/*==================================================
FAQ
==================================================*/

.faq{

    padding:160px 0;

    background:#fafbff;

}

.faq-list{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:white;

    border-radius:22px;

    margin-bottom:18px;

    border:1px solid #ececec;

    overflow:hidden;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:19px;

    font-weight:600;

}

.faq-question span{

    font-size:30px;

    color:#ff4eb8;

}

.faq-answer{

    display:none;

    padding:0 35px 30px;

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}