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

.faq{

    padding:160px 0;

}

.faq-list{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#10231C;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.3s;

}

.faq-item:hover{

    border-color:#58F0A6;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 32px;

    color:#fff;

    font-size:22px;

    font-weight:700;

    text-align:left;

}

.faq-question span:first-child{

    flex:1;

}

.faq-icon{

    font-size:34px;

    color:#58F0A6;

    transition:.3s;

    margin-left:25px;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 32px 28px;

    margin:0;

    color:#BFCFC7;

    line-height:1.8;

    font-size:18px;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

@media(max-width:768px){

    .faq{

        padding:100px 0;

    }

    .faq-question{

        font-size:18px;

        padding:22px;

    }

    .faq-answer p{

        padding:0 22px 22px;

        font-size:16px;

    }

}