/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {

    padding: 100px 0;

    background: #ffffff;

}



/* =====================================================
   WRAPPER
===================================================== */

.faq-wrapper {

    max-width: 900px;

    margin: 0 auto;

}



/* =====================================================
   ITEM
===================================================== */

.faq-item {

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    margin-bottom: 20px;

    overflow: hidden;

    transition: .3s ease;

    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);

}


.faq-item:hover {

    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);

}



/* =====================================================
   QUESTION
===================================================== */

.faq-question {

    width: 100%;

    border: none;

    background: none;

    cursor: pointer;

    padding: 24px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    font-size: 20px;

    font-weight: 600;

    color: #0f172a;

}



/* =====================================================
   ICON
===================================================== */

.faq-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ecfeff;

    color: #0ea5a4;

    font-size: 24px;

    font-weight: 700;

    transition: .3s;

}



/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

    display: none;

}


.faq-answer p {

    padding: 0 30px 25px;

    color: #64748b;

    line-height: 1.9;

}



/* =====================================================
   ACTIVE
===================================================== */

.faq-item.active .faq-answer {

    display: block;

}


.faq-item.active .faq-icon {

    background: #0ea5a4;

    color: #ffffff;

    transform: rotate(45deg);

}



/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .faq-section {

        padding: 70px 0;

    }

    .faq-question {

        padding: 20px;

        font-size: 17px;

    }

    .faq-answer p {

        padding: 0 20px 20px;

    }

}




.faq-question::before,
.faq-question::after {

    content: none !important;

}