/* this overides the standard font size to a responsive size */

body {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #5a656e;
}

.font-small {
    font-size: 16px;
}

.view,
body,
html {
    height: 100%
}

a {
    color: #fff;
    cursor: pointer;
}
a.1 {
    color: #2C4964;
    cursor: pointer;
}

a:hover {
    color: #c2c3c4
}
a.nav:link {color: #2C4964; text-decoration: none; }
a.nav:visited {color: purple; text-decoration: none; }
a.nav:hover {color: blue; text-decoration: underline; }
a.nav:active {color: red; } 

/* Navbar */

.navbar {
    background-color: rgba(0, 0, 0, .2)
}

.page-footer,
.top-nav-collapse {
    background-color: #2c4964
}

@media only screen and (max-width:768px) {
    .navbar {
        background-color: #2c4964
    }
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 30px;
    line-height: inherit;
    white-space: nowrap;
}


/* Navbar Hamburger color = link color when drop down */

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}


/* Footer link style */

a.footer1:link {
    color: #fff;
}

a.footer1:visited {
    color: #fff;
}

a.footer1:hover {
    color: #2196f3;
}

b,
strong {
    font-weight: bolder;
    font-size: 24px;
}

.bs-example {
    margin: 20px;
    font-size: 16px;
}


/* this effect makes the element pop up to a larger size */

.zoom:hover {
    transform: scale(1.1);
}


/* add drop shadow & color to HR */

hr.new1 {
    ;
    border: none;
    height: 20px;
    width: 100%;
    height: 50px;
    margin-top: 0;
    border-bottom: 1px solid #5793f6;
    box-shadow: 0 20px 20px -15px #c2c3c4;
    margin: -50px auto 10px;
}

h2.new2 {
    color: #5793f6;
}


/* add drop shadow to image id="shadow" */

#shadow {
    -webkit-box-shadow: 5px 5px 6px 1px rgba(0, 0, 0, 0.45);
    box-shadow: 5px 5px 6px 1px rgba(0, 0, 0, 0.45);
}


/* back to top arrow */

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.scroll {
    max-height: 100px;
    overflow-y: auto;
}

.card-text {
    font-size: 16px;
}


/* Google Map container */

.map-container {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/* This is a horizontal hr with text in the center */

.separator {
    display: flex;
    font-size: 24px;
    align-items: center;
    text-align: center;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #5a656e;
}

.separator::before {
    margin-right: .25em;
}

.separator::after {
    margin-left: .25em;
}

.dark-grey-text,
.dark-grey-text:focus,
.dark-grey-text:hover {
    color: #5a656e !important;
}


/* Carousel Section */

.carousel {
    height: 50%
}

.carousel .carousel-inner,
.carousel .carousel-inner .active,
.carousel .carousel-inner .carousel-item {
    height: 100%
}

@media (max-width:776px) {
    .carousel {
        height: 100%
    }
}

.jumbotron-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}