/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Styling*/
html {
	position: relative;
	min-height: 100%;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	color: black;
}

a {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
}

.rockford-image {
	display: block;
	width: 100%;
	height: auto;
}

.title {
	padding: 20px 20px 0 20px;
	text-transform: uppercase;
	font-size: 3em;
	letter-spacing: 1.5px;}

.contact-info {
	padding: 20px;
	right: 40px;
	bottom: 40px;
	font-size: 1.7em;
}

.facebook-link:before,
.phone-link:before,
.mail-link:before {
	display: inline-block;
	vertical-align: middle;
	content: '';
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-top: -5px;
}

.facebook-link:before {
	background-image: url( facebook_black.png );
	background-size: 20px 20px;
}

.phone-link:before {
	background-image: url( phone_black.png );
	background-size: 20px 20px;
}

.mail-link:before {
	background-image: url( mail_black.png );
	background-size: 20px 20px;
}

.sub-title {
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.contact-link {
	display: block;
	margin-top: 10px;
	font-size: 0.8em;
}

.contact-link.facebook {
	margin-top: 15px;
}

.image,
.video {
	position: relative;
}

.video-link {
	display: block;
	margin: 20px auto;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: black;
	font-size: 0.7em;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY( 0 );
	}
	40% {
		-webkit-transform: translateY( -40px );
	}
	60% {
		-webkit-transform: translateY( -20px );
	}
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY( 0 );
	}
	40% {
		-moz-transform: translateY( -40px );
	}
	60% {
		-moz-transform: translateY( -20px );
	}
}

@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-o-transform: translateY( 0 );
	}
	40% {
		-o-transform: translateY( -40px );
	}
	60% {
		-o-transform: translateY( -20px );
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY( 0 );
	}
	40% {
		transform: translateY( -40px );
	}
	60% {
		transform: translateY( -20px );
	}
}

.video-link:hover {
	text-decoration: none;
}

.video-arrow {
	width: 63px;
	display: block;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
}

.video-arrow.white {
	display: none;
}

.video-arrow.black {
	display: block;
}

.video-container {
	position: relative;
	padding-bottom: 39%;
	padding-top: 15px;
	height: 0;
	overflow: hidden;
}

iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and ( max-width: 629px ) {
	.image {
		background-image: none !important;
	}
}

@media screen and ( min-width: 630px ) {
	body {
		color: white;
	}

	a {
		color: white;
	}

	.image {
		position: relative;
		width: 100%;
		height: 100vh;
		background: no-repeat center center;
		background-size: cover;
	}

	.rockford-image {
		display: none;
	}

	.title {
		position: absolute;
		padding: 0;
		top: 40px;
		right: 40px;
		font-size: 6em;
		-webkit-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-moz-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-ms-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-o-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	}

	.contact-info {
		position: absolute;
		padding: 0;
		right: 40px;
		bottom: 40px;
		font-size: 2em;
		-webkit-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-moz-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-ms-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-o-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	}

	.facebook-link:before,
	.phone-link:before,
	.mail-link:before {
		width: 40px;
		height: 40px;
	}

	.facebook-link:before {
		background-image: url( facebook.png );
		background-size: 40px 40px;
	}

	.phone-link:before {
		background-image: url( phone.png );
		background-size: 40px 40px;
	}

	.mail-link:before {
		background-image: url( mail.png );
		background-size: 40px 40px;
	}

	.video-link {
		position: absolute;
		bottom: 40px;
		left: 50px;
		font-size: 1.2em;
		color: white;
		margin-bottom: 0;
		-webkit-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-moz-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-ms-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		-o-text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
		text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	}

	.video-arrow.white {
		display: block;
	}

	.video-arrow.black {
		display: none;
	}
}

@media screen and ( min-width: 1200px ) {
	.title {
		top: 40px;
		right: 40px;
		font-size: 10em;
	}

	.contact-info {
		right: 40px;
		bottom: 40px;
		font-size: 3em;
	}

}
