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

.faq{

    background:white;

}

.faq-list{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    border:1px solid var(--color-border);

    border-radius:var(--radius-lg);

    margin-bottom:20px;

    overflow:hidden;

    background:white;

    transition:var(--transition-base);

}

.faq-item:hover{

    box-shadow:var(--shadow-sm);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    cursor:pointer;

    padding:28px 30px;

    text-align:left;

    font-size:1.05rem;

    font-weight:600;

    color:var(--color-heading);

    position:relative;

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:30px;

    font-size:1.5rem;

    color:var(--color-primary);

    transition:.3s;

}

.faq-item.active .faq-question::after{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 30px;

    color:var(--color-text);

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:250px;

}