/*
	-- PORTRAIT & LANDSCAPE --
	iPad 3 Retnia Display
	iPad 4 Retnia Display
*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (-webkit-min-device-pixel-ratio: 2) {
	
	#wrapper {
		text-align: center;
	}
	section.entry h2 {
		font-size: 95px;
	}
	
	/* Services */
	.section-services ul li {
		text-align: left;
	}
	.section-services img {
		margin: 20px !important;
		padding-top: 30px;
	}
}


	/*
		-- PORTRAIT --
		iPad 3 Retnia Display
		iPad 4 Retnia Display
	*/	
	@media only screen 
	and (min-device-width : 768px) 
	and (max-device-width : 1024px) 
	and (orientation : portrait)
	and (-webkit-min-device-pixel-ratio: 2) {
		
		#wrapper {
			/* background: red; */
		}
		#header #logo {
			margin-left: 20em;
		}
		
		#navigation {
			margin-right: 1em;
		}
		#navigation ul.nav > li > a {
			padding: 4.236em 1.4em;
		}
		
		/* Intro Message */
		body .home-section#intro-message .button {
			margin: 3.5em 0em 0em 15.5em;
		}
		body .home-section#intro-message header h1 {
			margin-left: 1em;
		}
		
		.promotion-slider-content {
			width: 25%;
		}
		
		/* About You */
		.section-about-you img {
			width:45%;
		}
		.section-about-you .details {
			width:45%;
		}
		
		/* Services */
		.section-services .details {
			width:75%;
		}
		
	}
	
	
	
	/*
		-- LANDSCAPE --
		iPad 3 Retnia Display
		iPad 4 Retnia Display
	*/	
	
	@media only screen 
	and (min-device-width : 768px) 
	and (max-device-width : 1024px) 
	and (orientation : landscape)
	and (-webkit-min-device-pixel-ratio: 2) {	
		
		#wrapper {
			/* background: blue; */
		}
		#header #logo {
			margin-left: 0em;
		}
		
		#navigation {
			margin-right: 6.5em;
		}
		#navigation ul.nav > li > a {
			padding: 4.236em 1em;
		}
		
		/* Intro Message */
		body .home-section#intro-message .button {
			margin: 3.5em 0em 0em 24.5em;
		}
		body .home-section#intro-message header h1 {
			margin-left: 2.5em;
		}
		
		.promotion-slider-content {
			width: 35%;
		}
		
		/* About You */
		.section-about-you .details {
			width:55%;
		}
		
		/* Services */
		.section-services .details {
			width:75%;
		}
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	