.navbar {
    /* background-color: #24292e; */
    color: #2e2e2e;
    letter-spacing: .01rem;
    font-family: merriweather,serif;
    font-size: 100%;
    background-color: white;
}

.nav-link {
    font-family: Montserrat,helvetica neue,Helvetica,Arial,sans-serif;
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.85rem;
    color: #2e2e2e;
}
.caps {
    text-transform: uppercase;
    letter-spacing: .2em;
}

.dropdown-item{
    padding: 10px 15px;
    font-family: Montserrat,helvetica neue,Helvetica,Arial,sans-serif;
    color: #2e2e2e;
    letter-spacing: .01rem;
    font-size: 100%;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: none;
}

.fadein {
    opacity: 1;
}

.nav-fade {
    box-shadow: 0 5px 6px 0px #988f8f;
}

nav.shift ul li a {
    position:relative;
    z-index: 1;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}

nav.shift ul.navtext li a.nav-link:hover {
    color: #91640F;
}

nav.shift ul.navtext li a.nav-link:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: #F1C40F;
    visibility: none;
    opacity: 0;
    z-index: -1;
}

nav.shift ul.navtext li a.nav-link:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

/* .nav-item.active a {
    background: #F1C40F;
    opacity: 1;
} */

.navbar-toggler-icon {
    color: #2e2e2e;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(46,46,46,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");

}

.navbar-toggler {
    text-decoration: none;
}

/* For mobile phones, show the brand in navbar */
@media only screen and (max-width: 991px) {
    .navbar-brand{
        visibility: visible!important;
        width: auto!important;
        font-family: Montserrat,helvetica neue,Helvetica,Arial,sans-serif;
        font-weight: 700;
        padding-top: 0px;
        padding-bottom: 0px;
        font-size: 1.0rem;
        color: #2e2e2e;
    }
}