/*==================================================
    FAQ SECTION
==================================================*/

.faq{

    padding:100px 0;

    background:#ffffff;

}

/*==================================================
    SECTION HEADING
==================================================*/

.faq .section-heading{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.faq .section-badge{

    display:inline-block;

    padding:8px 22px;

    background:#e8f8ef;

    color:#00A651;

    border-radius:50px;

    font-size:15px;

    font-weight:700;

    margin-bottom:20px;

}

.faq .section-heading h2{

    font-size:44px;

    font-weight:800;

    color:#1f2937;

    margin-bottom:20px;

    line-height:1.3;

}

.faq .section-heading p{

    font-size:17px;

    color:#6b7280;

    line-height:1.8;

}

/*==================================================
    FAQ WRAPPER
==================================================*/

.faq-wrapper{

    max-width:950px;

    margin:auto;

}

/*==================================================
    FAQ CARD
==================================================*/

.faq-item{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    border-color:#00A651;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==================================================
    QUESTION
==================================================*/

.faq-question{

    width:100%;

    border:none;

    background:#ffffff;

    padding:24px 30px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    font-size:20px;

    font-weight:700;

    color:#1f2937;

    transition:.3s;

}

.faq-question:hover{

    color:#00A651;

}

/*==================================================
    ICON
==================================================*/

.faq-icon{

    width:38px;

    height:38px;

    border-radius:50%;

    background:#ecfdf3;

    color:#00A651;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:bold;

    transition:.35s;

    flex-shrink:0;

}

.faq-item.active .faq-icon{

    background:#00A651;

    color:#ffffff;

    transform:rotate(45deg);

}

/*==================================================
    ANSWER
==================================================*/

.faq-answer{

    display:none;

    padding:0 30px 28px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-answer p{

    color:#6b7280;

    font-size:16px;

    line-height:1.9;

}

/*==================================================
    TABLET
==================================================*/

@media(max-width:991px){

    .faq{

        padding:80px 0;

    }

    .faq .section-heading{

        margin-bottom:55px;

    }

    .faq .section-heading h2{

        font-size:36px;

    }

    .faq-question{

        font-size:18px;

        padding:22px 24px;

    }

    .faq-answer{

        padding:0 24px 24px;

    }

}

/*==================================================
    MOBILE
==================================================*/

@media(max-width:576px){

    .faq{

        padding:65px 0;

    }

    .faq .section-heading{

        margin-bottom:45px;

    }

    .faq .section-heading h2{

        font-size:30px;

    }

    .faq .section-heading p{

        font-size:15px;

    }

    .faq-question{

        font-size:16px;

        padding:18px 18px;

    }

    .faq-answer{

        padding:0 18px 20px;

    }

    .faq-icon{

        width:32px;

        height:32px;

        font-size:20px;

    }

}