/*=========================================
FAQ SECTION
=========================================*/

.faq-section{

    padding:120px 0;

    background:#ffffff;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;

    padding:25px 30px;

    border:none;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:19px;

    font-weight:600;

}

.faq-question i{

    color:#d4af37;

    transition:.35s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s;

    padding:0 30px;

}

.faq-answer p{

    padding-bottom:25px;

    line-height:1.9;

    color:#666;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question{

    background:#d4af37;

    color:#fff;

}

.faq-item.active .faq-question i{

    color:#fff;

    transform:rotate(45deg);

}

@media(max-width:768px){

.faq-section{

padding:80px 0;

}

.faq-question{

font-size:17px;

padding:20px;

}

}