/* 
 Theme Name:     Bare bones for Divi
 Author:         Divi theme examples
 Author URI:     http://www.divithemeexamples.com 
 Template:       Divi
 Version:        1.0 
*/ 


/* ----------- PUT YOUR CUSTOM CSS BELOW THIS LINE -- DO NOT EDIT ABOVE THIS LINE --------------------------- */ 

/* Large screens (1405px upwards) */
@media only screen and ( min-width: 1405px ) { 
	.logo_container  h1 {
   		display: none!important;
	}
}

/* Laptops and desktops (1100-1405px) */
@media only screen and ( min-width: 1100px ) and ( max-width: 1405px) { 
	.logo_container  h1 {
   		display: none!important;
	}
}


/* Tablets in landscape mode (981-1100px) */
@media only screen and ( min-width: 981px ) and ( max-width: 1100px ) { 
	/*#main-header #logo {
		max-height:100%!important;
		height:90%;
	 }*/
	 
	h1 {
   		display: none;
	}
}





/* Tablets in portrait mode (768-980px) */
@media only screen and ( min-width: 768px ) and ( max-width: 980px ) {
	#main-header #logo {
		max-height:100%!important;
		height:90%;
	 }
	 
	 .nepean { 
		color: #189ca1;
	}
	
	.tutoring { 
		color: #d17c32;
	}
	
	h1 {
   		font-size: 15px;
   		display: inline;
	}
}

/* Smartphones in landscape mode (480-768px) */
@media only screen and ( min-width: 480px ) and ( max-width: 767px ) {
	#et-info a { display:block; margin-bottom:1em }
	
	#main-header #logo {
		max-height:100%!important;
		height:90%;
	 }
	 
	 .nepean { 
		color: #189ca1;
	}
	
	.tutoring { 
		color: #d17c32;
	}
	
	h1 {
   		font-size: 15px;
   		display: inline;
	}
}

/* Smartphones in portrait mode (0-479px) */
@media only screen and ( max-width: 479px ) {
	#et-info a { display:block; margin-bottom:1em }
	
	#main-header #logo {
		max-height:100%!important;
		height:90%;
	 }
	 
	.nepean { 
		color: #189ca1;
	}
	
	.tutoring { 
		color: #d17c32;
	}
	
	h1 {
   		font-size: 15px;
   		display: inline;
	}
}