/*==============================
            FAQ
==============================*/

.faq-container{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    margin-bottom:16px;

}

.faq-question{

    width:100%;

    padding:22px 24px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:var(--white);

    font-weight:600;

}

.faq-question:hover{

    background:rgba(255,255,255,.03);

}

.faq-icon{

    font-size:1.5rem;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 24px 24px;

    color:var(--text-light);

}

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}