﻿.navbar-custom {
    background-color: #ffffff;
}
    /* change the brand and text color */
    .navbar-custom .navbar-brand,
    .navbar-custom .navbar-text {
        color: #961ceb;
    }
    /* change the link color */
    .navbar-custom .navbar-nav .nav-link {
        color: #961ceb;
    }
    /* change the color of active or hovered links */
    .navbar-custom .nav-item.active .nav-link,
    .navbar-custom .nav-item:hover .nav-link {
        color: #961ceb;
    }
.nav-link-custom {
    display: block;
    padding: 0.5rem 0.5rem;
    text-transform: uppercase;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
}

.nav-link-custom:hover, .nav-link:focus {
        text-transform: uppercase;
        text-decoration: unset;
        color: #961ceb;
    }

.nav-link-custom.disabled {
        color: #fdfefe;

}

.nav-menu-custom .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu-custom .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu-custom .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu-custom .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0b2341;
}

    .nav-menu-custom .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #ed502e;
    }

.nav-menu-custom .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu-custom .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu-custom .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu-custom .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu-custom .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu-custom .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu-custom .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu-custom .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

