﻿/* MOBILE */
@media only screen and (max-width:767px) {
    .banneritem {
        height: 450px;
    }

    .bannerint h1 {
        font-size: 2.3em;
        line-height: 1;
    }

    .stripslideritem {
        background-size: 20px, 20px;
    }

        .stripslideritem p {
            font-size: 1.2em;
            line-height: 1.2;
        }
}

/* 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) {
    .banneritem {
        height: 616px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .banneritem {
        height: 616px;
    }
}

/* Small Devices, Tablets */
/*@media only screen and (max-width : 768px) {

}*/

