@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */


    
    
    
    .whattop{
        height: 50vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        background-color:rgb(23,41,117); 
        position: relative;
        z-index: 50;
       
    }
    
    
    .w-image{
        width: 90%;
        height: 35vh;
        margin: 15vh 0 0 5%;
        display: block;
        float: left;
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 25vh;
        
    }
    
    
    .w-text{
        color: #fff;
        width: 90%;
        margin: 15vh 5%;
        display: block;
        float: left;
        position: absolute;
         top: 0vh;
    }
    
    .w-text .title1{
        color: #fff;
        margin-left: 0;
    }
    
	





}




/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
    

    
    
    
    
    
    
    
    
    
    
    
    
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {


    
    
    
    .whattop{
        height: 50vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        background-color:rgb(23,41,117); 
        position: relative;
        z-index: 50;
        
    }
    
    
    .w-image{
        width: 55%;
        height: 50vh;
        margin: 15vh 0 0 5%;
        display: block;
        float: left;
        background-size: cover;
        background-position: center;
        position: relative;
        top: auto;
        left: auto;
    }
    
    
    .w-text{
        color: #fff;
        width: 25%;
        margin: 15vh 5%;
        display: block;
        float: left;
        clear: none;
         position: relative;
        top: auto;
        left: auto;
    }
    
    .w-text .title1{
        color: #fff;
        margin-left: 0;
    }
    
	
	
	
}
	
	