/**
 * Basic CSS Media Query Template
 * TODO: I should probably use Sass...
 * Author: Michael Vieth
 * ------------------------------------------
 *  Responsive Grid Media Queries - 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet
 *   480-less    - phone landscape & smaller
 * --------------------------------------------
 */
@media (min-width: 1024px) and (max-width: 1280px) {
}

@media (min-width: 480px) and (max-width: 768px) {
}

@media (max-width: 480px) {
	.section_one {
		padding-top: 0;
	}
	p.block_text_normal {
		padding-left: 15px;
		padding-right: 15px;
	}
	.video_infobelow {
		padding: 10px 0px;
	}
	p.block_text_quote {
		padding-left: 15px;
		padding-right: 60px;
		font-size: 1.7rem;
	}
	p.block_text_large {
		font-size: 1.7rem;
		padding: 15px 15px 0;
		margin-bottom: 0;
	}
	.block_image_1400 img {
		padding-left: 0;
		padding-right: 0;
	}
	.block_image_1000 {
		padding-left: 0;
		padding-right: 0;
	}
	.block_image_1000 img {
		padding-left: 0;
		padding-right: 0;
	}
	.block_image_1200 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 380px) {
	p.block_text_quote {
		font-size: 1.5rem;
	}
	p.block_text_large {
		font-size: 1.5rem;
	}
}
@media (max-width: 1440px) {
	.section_title {
		margin-top: -28%;
		position: relative;
	}
}

/* Portrait */
@media screen and (orientation: portrait) {
	/* Portrait styles here */
}
/* Landscape */
@media screen and (orientation: landscape) {
	/* Landscape styles here */
}

/* CSS for iPhone, iPad, and Retina Displays */

/* Non-Retina */
@media screen and (-webkit-max-device-pixel-ratio: 1) {
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min--moz-device-pixel-ratio: 1.5),
	only screen and (min-device-pixel-ratio: 1.5) {
}

/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
}

/* iPhone Landscape */
@media screen and (max-device-width: 480px) and (orientation: landscape) {
}

/* iPad Portrait */
@media screen and (min-device-width: 481px) and (orientation: portrait) {
}

/* iPad Landscape */
@media screen and (min-device-width: 481px) and (orientation: landscape) {
}
