/* MOBILE */
@media only screen and (max-width:767px) {
    body {
    }

    .stripimage {
        height: 180px;
        background-position: center;
    }

    footer h2 {
    }

    .navbar {
        flex-wrap: nowrap;
    }

    h2.greentop {
        font-size: 1.4em;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 0;
    }

    h2.greensmaller {
        margin-bottom: 0;
    }

    .homevideo {
        height: 160px;
    }

    .logo-img-content {
        margin-top: 50px;
        margin-bottom: 50px;
        height: 150px;
    }
    
    nav li.active a::after, .nav-link:hover::after {
        background-position: left;
    }
    
    .mapholder {
        height: 300px;
    }
}

/* TABLET */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
}

/* DESKTOP */
@media only screen and (min-width: 768px) {
}

@media screen and (min-width: 1120px) {
}


/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Small Devices, Tablets */
/*@media only screen and (max-width : 768px) {

}*/

