
/* Large Screens (Desktops) */

@media only screen and (max-width : 1430px) {
	.section {
		max-width: 1200px;
	}	
}

@media only screen and (max-width : 1279px) {
	.section {
		max-width: 990px;
	}

}

/* Medium Screens (Tablets - Landscape) */

@media only screen and (max-width : 1225px) {
	.section {
		max-width: 970px;
	}

}

/* Small Screens  (Tablets - Portrait ) */

@media only screen and (max-width : 991px) {
	.section {
		max-width: 750px;
	}
	
	#header {
		height: 170px;
	}
	
	#header .logo {
		margin-top: 50px;
	}	

	#navigation {
		top: 135px;
	}
		
}

/* Extra Small Screens (Mobiles) */
@media only screen and (max-width : 767px) {
	body {
		background: #fff;
	}
	
	#header {
		height: auto;
		padding: 15px 0;
		border-bottom: 3px solid #0f5177;
	}
	
	#header .contact {
		position: static;
		color: #a6a6a6;
		background: none;
	}
	
	#header .logo {
		display: block;
		margin: 0 auto 10px;
		float: none;
	}
	
	#menuBtn {
		display: block;
	}
	
	#slider {
		border-bottom: 2px solid #0f5177;
	}
	
	#navigation {
		display: none;
	}
	
	#header .contact {
		padding: 0;
		height: auto;
	}
	
	#header .contact ul li {
		float: none;
		text-align: center;
	}
	
	#content {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	#intro .left,
	#intro .right {
		float: none;
		width: auto;
	}
	
	#intro .left {
		margin-bottom: 30px;		
	}
}

@media only screen and (max-width : 500px) {

}

@media only screen and (max-width : 478px) { 

	
}