/*=====================================
    FAQ SECTION
=====================================*/

.faq-section{
    padding:120px 0;
    background:#fafafa;
}

.faq-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;
    align-items:center;
}

/*=====================================
    LEFT
=====================================*/

.faq-left{
    position:sticky;
    top:120px;
}

.faq-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    background:#fff3eb;
    color:#ff6b00;
    font-family:"Poppins",sans-serif;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.faq-subtitle::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff6b00;
}

.faq-title{
    margin:25px 0 20px;
    font-family:"Poppins",sans-serif;
    font-size:52px;
    line-height:1.15;
    font-weight:700;
    color:#141b2d;
}

.faq-description{
    margin-bottom:40px;
    color:#666;
    font-size:16px;
    line-height:1.9;
}

.faq-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#ff6b00;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.faq-btn:hover{
    background:#141b2d;
    color:#fff;
}

/*=====================================
    RIGHT
=====================================*/

.faq-right{
    display:flex;
    flex-direction:column;
}

.faq-item{
    border-bottom:1px solid #e8e8e8;
}

.faq-question{

    width:100%;

    padding:28px 0;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    text-align:left;

    font-family:"Poppins",sans-serif;

    font-size:22px;

    font-weight:600;

    color:#141b2d;

}

.faq-question i{

    font-size:16px;

    transition:.35s;

    color:#141b2d;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 40px 0 0;

    color:#666;

    font-size:16px;

    line-height:1.9;

}

.faq-item.active .faq-answer{

    padding:0 40px 30px 0;

}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
    color:#ff6b00;
}

.faq-answer p:last-child{
    margin-bottom:0;
}

/*=====================================
    RESPONSIVE
=====================================*/

@media(max-width:1199px){

    .faq-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .faq-left{

        position:static;

    }

}

@media(max-width:991px){

    .faq-section{

        padding:90px 0;

    }

    .faq-title{

        font-size:42px;

    }

    .faq-question{

        font-size:20px;

    }

}

@media(max-width:767px){

    .faq-title{

        font-size:34px;

    }

    .faq-question{

        font-size:18px;

        padding:22px 0;

    }

    .faq-answer{

        padding:0 0 25px;

        font-size:15px;

    }

    .faq-btn{

        width:100%;

    }

}

@media(max-width:575px){

    .faq-section{

        padding:70px 0;

    }

    .faq-title{

        font-size:30px;

    }

    .faq-description{

        font-size:15px;

    }

    .faq-subtitle{

        font-size:13px;

        padding:10px 18px;

    }

}