/*==================================================
FAQ
==================================================*/

.faq-section{

    position:relative;

    padding:130px 0;

    overflow:hidden;

    background:#ffffff;

}

.faq-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-250px;

    top:-250px;

    border-radius:50%;

    background:radial-gradient(circle,#FFD9E860,transparent 70%);

}

.faq-section::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    bottom:-250px;

    border-radius:50%;

    background:radial-gradient(circle,#D4AF3730,transparent 70%);

}

.faq-heading{

    text-align:center;

    max-width:760px;

    margin:auto;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

.faq-wrapper{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(212,175,55,.15);

    border-color:#D4AF37;

}

.faq-item.active{

    border-color:#D4AF37;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 30px;

    font-size:20px;

    font-weight:600;

    color:#111;

    text-align:left;

}

.faq-question i{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#f7f7f7;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#D4AF37;

    transition:.4s;

    font-size:24px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:#D4AF37;

    color:#111;

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-answer p{

    color:#666;

    line-height:1.9;

    font-size:16px;

    margin:0;

}

@media(max-width:768px){

    .faq-section{

        padding:90px 0;

    }

    .faq-question{

        padding:22px;

        font-size:17px;

    }

    .faq-answer{

        padding:0 22px 22px;

    }

    .faq-question i{

        width:40px;

        height:40px;

        font-size:20px;

    }

}