/* Navbar background, links, and color stylings */
.bg-jcondon {
    background-color: rgb(0, 78, 123);
    background-image: linear-gradient(-225deg, #2580B3 0%, #B9B6E5 100%);
    color: #ffffff;
}

.bg-jcondon-2 {
    /* background-color: rgb(0, 78, 123); */
    background-image: linear-gradient(-225deg, #CBBACC 0%, #2580B3 100%);
    color: #ffffff;
}

.nav-link {
    color: #ffffff;
}

/* Show div on only smaller screens (not technically mobile, just not desktop */
.mobile-show {
    display: none;
}
@media screen and (max-width: 991px) { 
    .mobile-show { display: block;}
}

/* Other Various Design Elements */
