.nav-item {
    margin-right: 25px !important;
    font-weight: 500;
    font-size: 13px;
}

.cool-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: all 1s;
    -webkit-transition: all 1s;
}



.active .cool-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: #f8b508;
    transition: width .3s;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}

.cool-link::after {
    content: '';
    display: block;
    width: 0%;
    height: 4px;
    background: #f8b508;
    transition: width .3s;
    position: absolute;
    bottom: 0;
    right: 0;
}

.cool-link:hover::after {
    width: 100%;
}

footer .cool-link:hover::after {
    width: 0% !important;
}

.navbar {
    border-bottom: 1px solid #c2687cbb;
}

/* ----------- Dark Link ----------------*/

.dark-link {
    display: inline-block;
    color: black;
    text-decoration: none;
    transition: all 1s;
}

.active .dark-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: black;
    transition: width .3s;
}

.dark-link::after {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    background: black;
    transition: width .3s;
}

.dark-link:hover::after {
    width: 100%;
}

.dark-brand-size {
    width: 200px !important;
}

/* Background */

.bg-nav-img {
    background-image: url("../img/index/home_banner.jpg");
}


/* Misc */

@media(max-width:991px) {
    .navbar {
        position: relative;
        /* background-image: url(../img/index/home_banner.jpg) !important; */
    }

    .active .cool-link::after, .cool-link::after {
        display: none !important;
    }

    .active .cool-link {
        color: #f8b508 !important;
    }

    .cool-link {
        padding-top: 20px !important;
    }
}