
/* --------css-import_Font Family-------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap');
/* --------css-import_Font Family-------- */


*
{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    transition:all 0.3s ease-in-out;
    font-family: 'Plus Jakarta Sans', sans-serif;
}


/* ------Global_heding_section-------- */

.heading_section
    {
    padding:0px 90px 0px 90px;    
    margin:0 auto 60px;
    text-align:center;
    position:relative;
    z-index:2;
}

.heading_section span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(34,197,94,.1);
    border: 1px solid rgba(11, 59, 118, 0.26);
    color: #0b3b76;
    font-size:10px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
    position:relative;
}

.heading_section span::before,
.heading_section span::after{
    content:"";
    width:5px;
    height:5px;
    border-radius:50%;
    background:#0b3b76;
    animation:headingPulse 2s infinite;
}

.heading_section h2{
    font-size:38px;
    line-height:1.15;
    font-weight:700;
    margin:0 0 25px;
}

.heading_section p{
    max-width:780px;
    margin:0 auto;
    font-size:15px;
    line-height:1.9;
    color: #4c4e52;
}

.heading_section::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-25px;
    transform:translateX(-50%);
    width:120px;
    height:4px;
    border-radius:20px;
    background: linear-gradient(90deg,#22c55e,#0b3b76,#22c55e);
}

@keyframes headingPulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(1.5);
        opacity:.5;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:991px){
    .heading_section h2{
        font-size:42px;
    }
}

@media(max-width:767px){
    .heading_section h2{
        font-size:32px;
    }

    .heading_section p{
        font-size:16px;
        line-height:1.8;
    }

    .heading_section span{
        font-size:12px;
        padding:8px 16px;
    }
}

/* ---section_all_global------- */

section
{
    padding-bottom:40px !important;
}
/* ---section_all_global------- */






/* ------Global_heding_section-------- */





