/*==========================
FAQ SECTION
==========================*/

.faq-section{

    background:#f8fbff;

}

.section-subtitle{

    color:#19557d;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

}

.faq-wrapper{

    max-width:900px;
    margin:auto;

}

.faq-item{

    background:#fff;
    border-radius:14px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-3px);

}

.faq-question{

    width:100%;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 30px;
    cursor:pointer;
    font-size:20px;
    font-weight:700;
    text-align:left;

}

.faq-question span{

    flex:1;
    padding-right:20px;

}

.faq-icon{

    width:24px;
    height:24px;
    fill:none;
    stroke:#19557d;
    stroke-width:2;
    transition:.35s;

}

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 28px;
    margin:0;
    line-height:1.8;
    color:#555;

}

.faq-item.active{

    border-left:5px solid #c59859;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

.faq-item.active .faq-answer{

    max-height:300px;

}

@media(max-width:768px){

.faq-question{

    font-size:17px;
    padding:18px;

}

.faq-answer p{

    padding:0 18px 20px;

}

}