/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
	.hero-image {
		background-repeat: no-repeat;
		background-size: cover;
		background-position:center center; 
		height:300px;
		max-width:1600px;
		padding:0 30px;
		box-sizing: border-box;
	}
	.hero-wrapper {
		max-width: 1280px;
		height: 300px;
		-webkit-transform-style: preserve-3d;
	  	-moz-transform-style: preserve-3d;
	  	transform-style: preserve-3d;
	  	position: relative;
		margin:auto;
		overflow: hidden;
	}
	/* Font Size */
	.hero-image h1, .hero-image h2 {
		line-height: 1.1em;
	}
	.hero-image h1 {
		font-size: 24px;
		font-weight: 600;
		margin:0;
		letter-spacing: normal;
	}
	.hero-image h2 {
		font-size: 18px;
		margin:0;
	}
	.hero-image .button {
		border:#fff solid 2px;
		font-weight:300;
		margin-top:30px;
		display: inline-block;
	}
	/* Text Position */
	.hero-text {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.hero-text-center {
		text-align: center;
	}
	.hero-text-left, .hero-text-right {
		text-align: center;
		width:100%;
		float:none;
	}

	/* Font Color */
	.hero-light h1, .hero-light h2 {
		color:#fff;
		text-shadow: 0 0 5px black;
	}
	.hero-dark h1, .hero-dark h2 {
		color:#111;
	}
	.home-videos {
		background:#222;
		padding:30px 0;
		width:100%;
	}
	.home-videos * {
		color:#999;
	}
	.home-videos h3 {
		color:white;
		font-weight: 300;
		margin: 0;
	}
	.home-videos small {
		text-transform: uppercase;
	}
	.home-videos p {
		margin-bottom:2em;
	}

	.home-video-thumb-wrapper img {
		border:#444 solid 1px;
		width:100%;
		margin-bottom:15px;
	}
	.home-video-thumb-wrapper {
		position: relative;
	}
	.home-video-play {
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background:url(../images/play.png) no-repeat;
		background-position: center center;
		transition: opacity .5s ease-in-out;
		-moz-transition: opacity .5s ease-in-out;
		-webkit-transition: opacity .5s ease-in-out;
		opacity: .60;
	}
	.home-video-thumb-wrapper:hover .home-video-play {
		opacity: 1;
	}
	.home-video-thumb-wrapper a {
		position: absolute;
		top:0;
		left:0;
		width: 100%;
		height:100%;
		z-index: 10;
	}
}


/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.hero-text-left {
		text-align: left;
		width:50%;
		float:left;
	}
	.hero-text-right {
		text-align: right;
		width:50%;
		float:right;
	}
	.home-videos p, .home-video-thumb-wrapper img {
		margin-bottom:0;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.hero-image, .hero-wrapper {
		height:500px;
	}
	.hero-image h1 {
		font-size:40px;
	}
	.hero-image h2 {
		font-size:32px;
	}
}













