/*==========================================================
                    FAQ SECTION
==========================================================*/

.faq-section{

    padding:120px 0;

    background:#ffffff;

}

.faq-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.faq-header h2{

    font-size:52px;

    font-weight:800;

    color:#1F2937;

    margin:18px 0;

}

.faq-header p{

    font-size:20px;

    line-height:1.8;

    color:#667085;

}

/*==========================================================
                    WRAPPER
==========================================================*/

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

/*==========================================================
                    FAQ ITEM
==========================================================*/

.faq-item{

    background:#fff;

    border-radius:22px;

    margin-bottom:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 25px 55px rgba(26,142,75,.12);

}

/*==========================================================
                    QUESTION
==========================================================*/

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:26px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:22px;

    font-weight:700;

    color:#1F2937;

    text-align:left;

    transition:.35s;

}

.faq-question:hover{

    color:#1A8E4B;

}

.faq-question i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1A8E4B;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-style:normal;

    font-size:28px;

    transition:.35s;

}

/*==========================================================
                    ANSWER
==========================================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

    background:#f8fffb;

}

.faq-answer p{

    padding:0 30px 28px;

    font-size:17px;

    line-height:1.9;

    color:#667085;

}

/*==========================================================
                    ACTIVE
==========================================================*/

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-question{

    color:#1A8E4B;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:#28b463;

}