/*
====================================================
SECTION FAQ
====================================================
*/

.faq{

    padding:120px 0;

    background:#ffffff;

}

.faq .section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.faq .section-header h2{

    font-size:46px;

    color:#222;

    margin:20px 0;

}

.faq .section-header p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

/*
====================================================
LISTE FAQ
====================================================
*/

.faq-list{

    max-width:900px;

    margin:0 auto;

}

/*
====================================================
ÉLÉMENT
====================================================
*/

.faq-item{

    background:#fff;

    border-radius:20px;

    margin-bottom:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    overflow:hidden;

}

/*
====================================================
QUESTION
====================================================
*/

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 35px;

    background:none;

    border:none;

    cursor:pointer;

    text-align:left;

    font-size:20px;

    font-weight:600;

    color:#222;

    transition:.3s;

}

.faq-question:hover{

    color:#0057B8;

}

/*
====================================================
ICÔNE
====================================================
*/

.faq-icon{

    font-size:20px;

    color:#0057B8;

    transition:.35s;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

/*
====================================================
RÉPONSE
====================================================
*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 35px 30px;

    color:#666;

    line-height:1.8;

    font-size:16px;

}

/*
====================================================
BOUTON
====================================================
*/

.faq .section-footer{

    margin-top:60px;

    text-align:center;

}

/*
====================================================
RESPONSIVE
====================================================
*/

@media(max-width:768px){

    .faq{

        padding:80px 0;

    }

    .faq .section-header{

        margin-bottom:50px;

    }

    .faq .section-header h2{

        font-size:34px;

    }

    .faq .section-header p{

        font-size:16px;

    }

    .faq-question{

        padding:24px;

        font-size:18px;

    }

    .faq-answer p{

        padding:0 24px 24px;

    }

}