
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
}

/* ===== HERO BANNER ===== */

#heroBanner{
    width:100%;
    position:relative;
    overflow:hidden;
    background:#000;
}

#heroBanner .carousel-inner,
#heroBanner .carousel-item{
    width:100%;
}

/* ===== IMAGE ===== */

#heroBanner .hero-banner{
    width:100%;
    display:block;
    object-fit:cover;
}

/* ===== LARGE SCREEN ===== */

@media only screen and (min-width:1400px){

    #heroBanner .hero-banner{
        height:90vh;
    }

}

/* ===== DESKTOP ===== */

@media only screen and (min-width:1200px) and (max-width:1399px){

    #heroBanner .hero-banner{
        height:95vh;
    }

}

/* ===== LAPTOP ===== */

@media only screen and (min-width:992px) and (max-width:1199px){

    #heroBanner .hero-banner{
        height:70vh;
    }

}

/* ===== TABLET ===== */

@media only screen and (min-width:768px) and (max-width:991px){

    #heroBanner .hero-banner{
        height:420px;
    }

}

/* ===== MOBILE ===== */

@media only screen and (max-width:767px){

    #heroBanner .hero-banner{
        width:100%;
        height:auto;
        object-fit:contain;
    }

}

/* ===== SMALL MOBILE ===== */

@media only screen and (max-width:480px){

    #heroBanner .hero-banner{
        width:100%;
        height:auto;
        object-fit:contain;
    }

}




/* faq part */


    
    .soncap-faq-section{
    padding:80px 0;
    background:#fff;
}
.faq-answer p{
    padding:0 25px 25px;
    margin:0;
    line-height:1.9;
    color:#333;
    text-align:justify;
    font-size: 12px;
    font-weight: 600;
}

.faq-heading{
    text-align:center;
    margin-bottom:50px;
}

.faq-heading h2{
    font-size:42px;
    color:#0c2340;
    font-weight:700;
    margin-bottom:10px;
}

.faq-heading p{
    color:#666;
    font-size:16px;
}

.faq-wrapper{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.faq-left{
    width:60%;
}

.faq-right{
    width:40%;
    position:sticky;
    top:100px;
}

.faq-right img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.faq-card{
    margin-top:25px;
    background:#0c2340;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.faq-card h3{
    color:#fff;
    margin-bottom:15px;
}

.faq-card p{
    color:#d9d9d9;
    margin-bottom:20px;
}

.faq-btn{
    display:inline-block;
    padding:12px 30px;
    background:#fff;
    color:#0c2340;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.faq-item{
    background:#fff;
    border:1px solid #e7e7e7;
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 25px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#0c2340;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#0c2340;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
    flex-shrink:0;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:991px){

    .faq-wrapper{
        flex-direction:column;
    }

    .faq-left,
    .faq-right{
        width:100%;
    }

    .faq-right{
        position:relative;
        top:auto;
        order:-1;
        margin-bottom:30px;
    }

    .faq-heading h2{
        font-size:30px;
    }

    .faq-question{
        font-size:16px;
    }
}