@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
.navbar-nav .nav-link{
    color:#0c2f6d;
    font-size:16px;
    font-weight:600;
    padding:12px 16px !important;
    position:relative;
}
body {
	font-family: "Google Sans", sans-serif;
}
.navbar-nav .nav-link:hover{
    color:#f58220;
}

.active-menu{
    color:#f58220 !important;
}

.active-menu::after{
    content:'';
    position:absolute;
    left:15px;
    right:15px;
    bottom:0;
    height:3px;
    background:#f58220;
    border-radius:10px;
}

.top-bar{
    background:#0c3d87;
}

@media (max-width:991px){

    .navbar-brand img{
        height:55px;
    }

    .navbar-nav{
        padding-top:15px;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
        border-bottom:1px solid #eee;
    }

    .active-menu::after{
        display:none;
    }
}
.text-primary{
    color:#0a3d8f !important;
}

.section-title{
    padding:0 40px;
}

.section-title::before,
.section-title::after{
    content:'';
    position:absolute;
    top:50%;
    width:120px;
    height:2px;
    background:#0a3d8f;
}

.section-title::before{
    right:100%;
}

.section-title::after{
    left:100%;
}

.step-card,
.benefit-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    border:1px solid #ececec;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    height:100%;
    position:relative;
    transition:.3s;
}

.step-card:hover,
.benefit-card:hover{
    transform:translateY(-5px);
}

.step-number{
    width:50px;
    height:50px;
    background:#0a3d8f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    position:absolute;
    top:-25px;
    left:50%;
    transform:translateX(-50%);
}

.step-card img{
    max-height:110px;
}

.benefit-card img{
    max-height:90px;
}

.btn-orange{
    background:#ff7a00;
    color:#fff;
    border-radius:12px;
    padding:14px 35px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(255,122,0,.35);
}

.btn-orange:hover{
    background:#e96e00;
    color:#fff;
}

@media(max-width:768px){

    .section-title::before,
    .section-title::after{
        display:none;
    }

    .step-card{
        padding:25px 15px;
    }
}
.gp-footer-section{
    position:relative;
    margin-top:80px;
}

.gp-ribbon{
    background:#113d8f;
    color:#fff;
    font-size:30px;
    font-weight:700;
    text-align:center;
    padding:18px 40px;
    border-radius:60px;
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.gp-ribbon span{
    font-weight:600;
}

.gp-footer{
    background:#113d8f;
    color:#fff;
    margin-top:-35px;
    padding:90px 0 50px;
    position:relative;
}

.gp-footer::before{
    content: '';
    position: absolute;
    top: -27px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #eef2f5;
    border-radius: 0 0 50% 50%;
}

.gp-tagline{
    font-size:18px;
    font-weight:500;
    letter-spacing:.5px;
}

.gp-feature{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.35);
    padding-right:20px;
    justify-content:center;
}

.gp-feature i{
    font-size:42px;
}

.gp-feature h6{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.gp-feature small{
    font-size:17px;
    color:#fff;
}

@media(max-width:991px){

    .gp-ribbon{
        font-size:18px;
        border-radius:20px;
        padding:15px;
    }

    .gp-footer{
        padding:70px 0 40px;
    }

    .gp-feature{
        border-right:none;
        justify-content:flex-start;
    }

    .gp-feature i{
        font-size:32px;
    }

    .gp-feature h6{
        font-size:18px;
    }

    .gp-feature small{
        font-size:14px;
    }

    .gp-tagline{
        font-size:14px;
    }
}
.main-side-nav .main-side-menu>ul:not(.collapse)>li>a {
    position: relative;
    border-radius: var(--app-border-radius);
    padding: .75rem 1rem;
    font-weight: 500;
    color: rgba(var(--dark), 1);
    width: 100%;
    display: flex;
    gap: .5rem;
    font-size: 16px;
    text-transform: capitalize;
    transition: var(--app-transition);
}
.main-side-nav .main-side-menu a+ul li a {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: .4rem 1rem;
    color: rgba(var(--dark), .75);
    font-weight: 400;
    border-radius: .75rem;
    transition: var(--app-transition);
}