/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

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

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

    }

    /* Medium Devices, Desktops */
    @media only screen and (max-width : 992px) {
		.home-slider .slider-caption.white h2 {
			font-size: 3.5rem;
			line-height: 1.4em;
		}
		.home-slider .slider-caption {
			top: 15%;
			left: 3%;
		}
		
		/* LATEST NEWS */
		.latest-news .banner.well .wrapper {width:728px;} 		
    }

    /* Small Devices, Tablets */
    @media only screen and (max-width : 768px) {
		.home-slider .slider-caption.white h2 {
			font-size: 3rem;
			line-height: 1.2em;
		}
		.home-slider .slider-text-wrapper {
			max-width: 40rem;
		}
		.home-slider .slider-caption {
    		top: 25%;
            left:4%;
		}
        
		.home-slider .owl-prev, .home-slider .owl-next {
    		top: 35%;
		}
		
		/* LATEST NEWS */
		.latest-news .banner.well .wrapper {width:468px;}   
    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 480px) {
		.home-slider .slider-caption.white h2 {
			font-size: 2rem;
			line-height: 1.2em;
		}
		.home-slider .slider-text-wrapper {
			max-width: 25rem;
		}
		.home-slider .slider-caption {
    		top: 15%;
            left:4%;
		}
        
		.home-slider .owl-prev, .home-slider .owl-next {
    		top: 35%;
		}
		
		/* LATEST NEWS */
		.latest-news .banner.well .wrapper {width:468px;}  
    }

    /* Custom, iPhone Retina */ 
    @media only screen and (max-width : 320px) {
		/* LATEST NEWS */
		.latest-news .banner.well .wrapper {width:320px;}
			        
    }