/* 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;
    z-index: 200;
}


/* main navbar colors and settings  */

.navbar-default {
    background: #fff;
    border-bottom: 2px solid black;
    font-weight: normal;
    font-size: 15px;
}


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

.navbar-default .navbar-nav .navbar-brand {
    color: #000;
    font-weight: bold;
}

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


/* 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: #000;
}


/* 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 {
    background: #fff;
    color: #FF8512;
}


/* active page on menu */

.navbar-default .navbar-nav>.active>a,
.dropdown-menu>.active>a {
    color: #000;
    background: #fff;
    font-weight: bold;
}


/* dropdown menu colors and settings */

.dropdown-menu {
    display: none;
    position: absolute;
    left: 15px;
    z-index: 1;
    background: #fff;
    border: 1px solid #000;
    box-shadow: 2px 2px 5px rgba(18, 18, 18, .6);
    pointer-events: auto
}

.dropdown-menu>li>a {
    font-weight: normal;
    color: #000;
    background: #fff);
}


/* dropdown menu hover settings */

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


/* 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: #fff;
        color: #000;
    }
    .navbar-default .navbar-nav>li {
        border-right: none;
    }
}