/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/
.nav-font {
    font-size: small !important;
}

.login-signup ul.navbar-nav>li a.btn, .primary-menu ul.navbar-nav>li a.btn {
    padding: .5rem .5rem !important;
}


@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-item{
    color: #4c4d4d;
    text-transform: uppercase;
    font-weight: 500;
}
.dropdown-item:hover{
    color: #252c65;
}

.custom-nav-container {
    position: relative;
    width: 100%;
}

.custom-nav-tabs {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    border-bottom: none;
    padding-left: 0px !important;
    margin-left: 0px !important;
    margin-bottom: 0px !important;
}

.custom-nav-tabs .custom-nav-item:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.custom-nav-tabs .custom-nav-item {
    list-style: none;
}

.custom-nav-tabs .custom-nav-link {
    color: #555;
    position: relative;
    padding: 8px 15px;
    border: none;
    background: transparent;
    transition: color 0.3s ease-in-out;
    font-size: 0.95rem !important;
    text-decoration: none;
    display: inline-block;
}

.custom-nav-tabs .custom-nav-link.active {
    color: #012257 !important;
    font-weight: 600;
}

.custom-nav-underline {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin-top: -2px;
}

.custom-nav-active-underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #012257;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.custom-nav-tabs .custom-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    background-color: #012257;
}
