/*=========================================
FAQ HERO
=========================================*/

.faq-hero{

    padding:180px 0 90px;
    background:linear-gradient(135deg,#0d1b3d,#1f4c9c);
    text-align:center;
    color:#fff;

}

.hero-tag{

    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.10);
    color:#f4b400;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;

}

.faq-hero h1{

    font-size:54px;
    font-weight:700;
    margin-bottom:20px;

}

.faq-hero p{

    max-width:720px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#d9e3ff;

}


/*=========================================
FAQ SECTION
=========================================*/

.faq-section{

    padding:100px 0;
    background:#f8f9fc;

}

.faq-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.faq-column{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.faq-column h3{

    font-size:28px;
    margin-bottom:25px;
    color:#16356b;
    border-left:5px solid #f4b400;
    padding-left:15px;

}


/*=========================================
FAQ ITEM
=========================================*/

.faq-item{

    border-bottom:1px solid #ececec;

}

.faq-question{

    width:100%;
    background:none;
    border:none;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 0;

    font-size:18px;
    font-weight:600;

    color:#16356b;

    transition:.3s;

}

.faq-question:hover{

    color:#f4b400;

}

.faq-question i{

    transition:.35s;

}

.faq-item.active i{

    transform:rotate(45deg);

}


/*=========================================
FAQ ANSWER
=========================================*/

.faq-answer{

    max-height:0;
    overflow:hidden;

    transition:max-height .40s ease;

}

.faq-answer p{

    padding-bottom:20px;

    color:#555;
    line-height:1.8;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.faq-grid{

grid-template-columns:1fr;

}

.faq-hero h1{

font-size:42px;

}

}


@media(max-width:768px){

.faq-hero{

padding:150px 0 70px;

}

.faq-hero h1{

font-size:34px;

}

.faq-hero p{

font-size:17px;

}

.faq-column{

padding:25px;

}

.faq-question{

font-size:17px;

}

}