/* change the background color */
.navbar-custom {
    background-color: #082F60;
}

/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: rgba(255, 255, 255, .8);
    padding: 0.6rem 1rem;
}

/* change the link color and add padding for height */
.navbar-custom .navbar-nav .nav-link {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    padding: 0.5rem 1rem;
    border-radius: 23px 23px 23px 23px;
    -moz-border-radius: 23px 23px 23px 23px;
    -webkit-border-radius: 23px 23px 23px 23px;
    border: 0px solid #000000;
}

/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: #ffffff;
    background-color: #2780CD;
    /* add background-color to active links */
}

.logo {
    width: 80%;
}

nav .dropdown-item:focus,
nav .dropdown-item:hover {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    text-decoration: none;
    background-color: #2780CD;
}

/* Hasta Aqui */
/*.sidebar-nav {
    padding: 9px 0;
}

.dropdown-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    visibility: hidden;
    margin-top: -1px;
}

.dropdown-menu li:hover .sub-menu {
    visibility: visible;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-tabs .dropdown-menu,
.nav-pills .dropdown-menu,
.navbar .dropdown-menu {
    margin-top: 0;
}

.navbar .sub-menu:before {
    border-bottom: 7px solid transparent;
    border-left: none;
    border-right: 7px solid rgba(0, 0, 0, 0.2);
    border-top: 7px solid transparent;
    left: -7px;
    top: 10px;
}

.navbar .sub-menu:after {
    border-top: 6px solid transparent;
    border-left: none;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    left: 10px;
    top: 11px;
    left: -6px;
}
*/