/* navbar css */
.navbar {
    padding: 7px 20px;
    background: white;
}

.navbar-brand {

    /* min-width: 300px; */
    width: 30%;
    padding: 0px !important;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav {
    padding-left: 50px;
    gap: 30px;
}


.nav-link {
    font-size: 16px !important;
    color: #011632 !important;
    font-weight: 500 !important;
    line-height: 24px !important;
    text-wrap: nowrap;
}

.nav-item :hover {
    color: #187C8B !important;
}


.active {
    color: #187C8B !important;
}

.nav-link .active {
    color: #187C8B !important
}

.navbar_top_strip {
    background: var(--primary_color);

}


.request_info_button {
    white-space: nowrap;
    border: none;
    margin: 8px 0;
}

#header {
    position: sticky !important;
    top: 0px !important;
    z-index: 999;
}


.top_strip_wrapper , .navbar{
    max-width: 1500px;
    margin:0 auto;
}




@media (max-width:991px) {

    .navbar {
        padding: 5px 0;
    }

    .navbar-brand {
        width: 55%;
    }

    .navbar-nav {
        padding-left: 0px;
        gap: 20px;
        align-items: center;
        font-size: 16px;
        margin-top: 30px;
    }

    .nav-link {
        font-size: 20px !important;
        font-weight:400 !important;
    }

    .navbar_top_strip .font_size_md_sc {
        font-size: 18px;
    }

    .navbar-collapse {
        height: 100vh;
    }

    .nav-item:not(:last-child) {
        width: 100%;
        display: flex;
        justify-content: center;
        border-bottom: 2px solid #EEEEEE;
       
    }
    

}


@media (max-width:576px) {

    
    .navbar-brand {
        width: 75%;
    }
}

@media (min-width:576px) and (max-width:1096px) {


    .navbar {
        padding: 7px 40px;

    }

    .navbar-brand {
        /* width: 350px; */
    }

    .navbar-nav {
        padding-left: 12px;
        gap: 0px;
    }

    .nav-link {
        font-size: 16px !important;
    }

}


@media (min-width:1600px) {
    .navbar {
        /* max-width: 2100px; */
        margin: 0 auto;
    }
}

