/*=========================================================
FAQ SECTION
Section Specific Styles
=========================================================*/


.faq-section{

    background:var(--white);

    padding:100px 0;

}



/*=========================================================
FAQ CONTAINER
=========================================================*/

.faq-container{

    max-width:900px;

    margin:0 auto;

}



/*=========================================================
FAQ ITEM
=========================================================*/

.faq-item{

    border-bottom:1px solid var(--border);

}


.faq-item:first-child{

    border-top:1px solid var(--border);

}



/*=========================================================
QUESTION
=========================================================*/

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:28px 0;

    background:none;

    border:none;

    cursor:pointer;

    color:var(--dark);

    text-align:left;

}



.faq-question span{

    flex:1;

    padding-right:20px;

}



/*=========================================================
ICON
=========================================================*/

.faq-question i{

    font-size:18px;

    color:var(--secondary);

    transition:var(--transition);

}



/*=========================================================
ANSWER
=========================================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}



.faq-answer p{

    padding:0 50px 28px 0;

}



/*=========================================================
ACTIVE
=========================================================*/

.faq-item.active .faq-answer{

    max-height:250px;

}


.faq-item.active .faq-question i{

    transform:rotate(45deg);

}



/*=========================================================
HOVER
=========================================================*/

.faq-question:hover{

    color:var(--secondary);

}



/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){


    .faq-question{

        padding:24px 0;

    }


    .faq-answer p{

        padding-right:40px;

    }

}



/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px){


    .faq-question{

        padding:22px 0;

    }


    .faq-question span{

        padding-right:16px;

    }


    .faq-answer p{

        padding-right:0;

    }

}

/*=========================================================
FAQ SECTION HEADING
=========================================================*/

.faq-section .section-heading{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;

}


.faq-section .section-heading h2{

    font-size:42px;
    line-height:1.15;
    font-weight:700;
    color:var(--dark);

}


.faq-section .section-heading h2 span{

    color:var(--secondary);

}


.faq-section .section-heading p{

    margin-top:20px;
    font-size:18px;
    color:var(--text);

}

