/* We use this media query to add styles to any device that supports media queries */
@media only screen {
}

@media only screen and (max-width: 1024px) {
	.navigation_toggle_button {
		font-size: 24px;
	}

	#top_navigation {
		top: 88px;	
		font-size: 18px;
	}

	#content_container {
	}

	#title_section,
	#site_logo,
	#site_logo img {
		height: 80px;
	}

	#site_title,
	#title_section > .row > .large-12 {
		line-height: 80px;
	}

	.navigation_toggle_button {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}

}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
	h1 {
		font-size: 40px;
		line-height: 56px;
		letter-spacing: -2px;
	}

	h2 {
		font-size: 34px;
		line-height: 50px;
		letter-spacing: -1px;
	}

	h3 {
		font-size: 28x;
		line-height: 44px;
		letter-spacing: -1px;
	}

	h4 {
		font-size: 22px;
		line-height: 38px;
		letter-spacing: 0px;
	}

	h5 {
		font-size: 18px;
		line-height: 34px;
		letter-spacing: 0px;
	}

	h6 {
		font-size: 16px;
		line-height: 32px;
		letter-spacing: 0px;
	}

	.navigation_toggle_button {
		font-size: 20px;
	}

	#top_navigation {
		top: 68px;	
		font-size: 16px;
	}

	#content_container {
	}

	#title_section,
	#site_logo,
	#site_logo img {
		height: 60px;
	}

	#site_title,
	#title_section > .row > .large-12 {
		line-height: 60px;
	}

	.navigation_toggle_button {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}


	#slogan h2.slogan {
	  font-size: 28px;
	}

	.content_padding_horizontal {
		padding-left: 10px;
		padding-right: 10px;
	}

	.content_padding_vertical {
		padding-top: 20px;
		padding-bottom: 20px;
	}

}

/* Used to alter styles for screens at least 640px wide. */
@media only screen and (max-width: 640px) {
	#sidebar_navigation {
		display: none;
	}
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 480px) {	
	h1 {
		font-size: 36px;
		line-height: 54px;
		letter-spacing: -1px;
	}

	h2 {
		font-size: 30px;
		line-height: 46px;
		letter-spacing: -1px;
	}

	h3 {
		font-size: 26x;
		line-height: 40px;
		letter-spacing: 0px;
	}

	h4 {
		font-size: 20px;
		line-height: 34px;
		letter-spacing: 0px;
	}

	h5 {
		font-size: 18px;
		line-height: 34px;
		letter-spacing: 0px;
	}

	h6 {
		font-size: 16px;
		line-height: 32px;
		letter-spacing: 0px;
	}

	.navigation_toggle_button {
		font-size: 20px;
	}

	#top_navigation {
		min-width: 100%;
		top: 48px;	
		font-size: 16px;
	}

	#sidebar_navigation {
		display: none;
	}

	#sidebar {
		border: none !important;
	}

	#content_container {
	}

	#title_section,
	#site_logo,
	#site_logo img {
		height: 40px;
	}

	#site_title,
	#title_section > .row > .large-12 {
		line-height: 40px;
	}

	.navigation_toggle_button {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	#slogan h2.slogan {
	  font-size: 18px;
	}

	#slider_pager {
		padding-top: 0px;
	}

	.content_padding_horizontal {
		padding-left: 0px;
		padding-right: 0px;
	}

	#site_logo {
		display: none;
	}

}

@media only screen and (max-width: 640px) {
	#sidebar {
		margin-top: 40px !important;
	}
}

/* Used to alter styles for screens at least 1280px wide. */
@media only screen and (min-width: 769px) {
	h1 {
			font-size: 44px;
			line-height: 60px;
			letter-spacing: -2px;
		}

		h2 {
			font-size: 38px;
			line-height: 54px;
			letter-spacing: -2px;
		}

		h3 {
			font-size: 32px;
			line-height: 48px;
			letter-spacing: -1px;
		}

		h4 {
			font-size: 26px;
			line-height: 42px;
			letter-spacing: -1px;
		}

		h5 {
			font-size: 20px;
			line-height: 36px;
			letter-spacing: 0px;
		}

		h6 {
			font-size: 18px;
			line-height: 34px;
			letter-spacing: 0px;
		}
}


/* Apply styles to screens in landscape orientation */
@media only screen and (orientation: landscape) {}

/* Apply styles to screens in portrait orientation */
@media only screen and (orientation: portrait) {}

/* We also use Modernizr to add a .touch class to the body when applicable */
/* You can prepend this class to anything and it will style only for touch devices */
.touch .your-element {}