/*==========================================================
FAQ SECTION
==========================================================*/

.gf-faq{

    position:relative;

    padding:20px 0 90px;

    background:#fff;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,.05) 0%,
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,.05) 0%,
    transparent 30%),

    #fff;

}


/*==========================================================
HEADING
==========================================================*/

.gf-faq-heading{

    width:min(900px,92%);

    margin:0 auto 70px;

    text-align:center;

}

.gf-faq-label{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:50px;

    background:#FFF6DD;

    color:#C99812;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.gf-faq-heading h2{

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    color:#111;

    margin-bottom:22px;

}

.gf-faq-heading p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#666;

}


/*==========================================================
WRAPPER
==========================================================*/

.gf-faq-wrapper{

    width:min(1050px,92%);

    margin:auto;

}


/*==========================================================
ITEM
==========================================================*/

.gf-faq-item{

    background:#fff;

    border:1px solid rgba(212,175,55,.18);

    border-radius:20px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.gf-faq-item:hover{

    border-color:#D4AF37;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}


/*==========================================================
QUESTION
==========================================================*/

.gf-faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px 34px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    text-align:left;

    font-size:22px;

    font-weight:700;

    color:#111;

}

.gf-faq-question span:first-child{

    max-width:90%;

}


/*==========================================================
ICON
==========================================================*/

.gf-faq-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FFF6DD;

    color:#C99812;

    font-size:26px;

    font-weight:700;

    transition:.35s ease;

    flex-shrink:0;

}

.gf-faq-item.active .gf-faq-icon{

    transform:rotate(45deg);

}


/*==========================================================
ANSWER
==========================================================*/

.gf-faq-answer{

    display:none;

    padding:0 34px 30px;

}

.gf-faq-item.active .gf-faq-answer{

    display:block;

}

.gf-faq-answer p{

    font-size:17px;

    line-height:1.9;

    color:#666;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:991px){

    .gf-faq-heading h2{

        font-size:52px;

    }

}

@media(max-width:767px){

    .gf-faq{

        padding:80px 0;

    }

    .gf-faq-heading{

        margin-bottom:50px;

    }

    .gf-faq-heading h2{

        font-size:38px;

    }

    .gf-faq-heading p{

        font-size:17px;

    }

    .gf-faq-question{

        padding:22px;

        font-size:18px;

    }

    .gf-faq-answer{

        padding:0 22px 24px;

    }

}


