/* nav settings */

.navbar {
    /* takes away gap at bottom of the navbar and main*/
    margin-bottom: 0;
    /* takes the curved corners built into bootstrap navbar */
    border-radius: 0;
    border: none;
}


/* main navbar colors and settings  */

.navbar-default {
    background: #F3AF1A;
    font-weight: bold;
    font-size: 13px;
}


/* nav-brand or this case phone number */

.navbar-header .navbar-brand {
    color: #fff;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #fff;
}


/* optional outside border on menu link items*/

.navbar-default .navbar-nav>li {
    border-right: none;
}

.navbar-default .navbar-nav>li:last-child {
    border-right: none;
}


/* font color of menu links */

.navbar-default .navbar-nav>li>a {
    color: #fff;
}


/* hover settings */

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    background: #999;
    color: #fff;
    border-radius: 15px;
}

.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    background: #999;
    color: #fff;
}


/* active page on menu */

.navbar-default .navbar-nav>.active>a,
.dropdown-menu>.active>a {
    color: #fff;
    background: #F3AF1A;
}


/* dropdown menu colors and settings */

.dropdown-menu {
    display: none;
    position: absolute;
    left: 15px;
    z-index: 10;
    background: #F3AF1A;
    box-shadow: 8px 8px 5px rgba(18, 18, 18, .6);
    pointer-events: auto
}

.dropdown-menu>li>a {
    font-weight: bold;
    color: #fff;
    background: #F3AF1A;
}


/* dropdown menu hover settings */

.dropdown-menu>li>a:hover,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #fff;
    background: #e29e09;
}


/* show the dropdown menu on hover */

.dropdown:hover .dropdown-menu {
    display: block;
}

@media only screen and (max-width: 768px) {
    /* hover settings */
    .navbar-default .navbar-nav>li>a:hover,
    .navbar-default .navbar-nav>li>a:focus,
    .navbar-default .navbar-nav>.active>a:hover,
    .navbar-default .navbar-nav>.active>a:focus,
    .navbar-default .navbar-nav>.active>a,
    .dropdown-menu>.active>a {
        background: #999;
        color: #fff;
    }
    .navbar-default .navbar-nav>li {
        border-right: none;
    }
}