/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
body {
	font-family: proxima-nova, sans-serif;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}
#container {
	position: relative;
	width: 100%;
	height: 100%;
	border: 1px solid #999;
	overflow: hidden;
	background: url('images/gradient.png');
	background-repeat: repeat-y;
	background-size: 300px 1px;
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 194px;
	transform: translateX(300px);
}
#slide_1 {
	background: url('images/bg_1.jpg') no-repeat;
	background-size: cover;
	transform: translateX(0);
}
#slide_2 {
	background: url('images/bg_2.jpg') no-repeat;
	background-size: cover;
}
#slide_3 {
	background: url('images/bg_3.jpg') no-repeat;
	background-size: cover;
	opacity: 0;
	transform: translateX(0);
}
.text {
	position: absolute;
	opacity: 0;
}
#text_1 {
	top: 46px;
	left: 12px;
	width: 160px;
	height: 41px;
	background: url('images/text_1.svg') no-repeat;
	background-size: contain;
}
#text_2 {
	top: 0;
	right: 0;
	width: 173px;
	height: 107px;
	background: url('images/text_2.svg') no-repeat;
	background-size: contain;
}
#text_3 {
	top: 34px;
	left: 0;
	width: 100%;
	color: #FFF;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}
#text_4 {
	bottom: 30px;
	left: 64px;
	width: 172px;
	height: 85px;
	background: url('images/text_4.svg') no-repeat;
	background-size: contain;
}
#text_5 {
	top: 78px;
	left: 16px;
	color: #FFF;
	font-size: 20px;
	line-height: .9em;
	font-weight: 800;
	text-transform: uppercase;
}
#arrow_1 {
	position: absolute;
	top: 80px;
	left: 75px;
	width: 0;
	height: 70px;
	overflow: hidden;
}
#arrow_1:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 72px;
	height: 70px;
	background: url('images/arrow_1.svg') no-repeat;
	background-size: contain;
}
#arrow_2 {
	position: absolute;
	top: 55px;
	left: 125px;
	width: 0;
	height: 81px;
	overflow: hidden;
}
#arrow_2:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 82px;
	height: 81px;
	background: url('images/arrow_2.svg') no-repeat;
	background-size: contain;
}
#lockup {
	position: absolute;
	top: 35px;
	right: 10px;
	width: 123px;
	height: 126px;
	background: url('images/lockup.svg') no-repeat;
	background-size: contain;
	transform: scale(0);
}
#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 56px;
	background: url('images/gradient.png');
	background-repeat: repeat-y;
	background-size: 300px 1px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#logo {
	position: absolute;
	bottom: 7px;
	left: 20px;
	width: 112px;
	height: 42px;
	background: url('images/smithfield-foods-logo.svg') no-repeat;
	background-size: contain;
	z-index: 99;
}
#cta {
	position: absolute;
	bottom: 13px;
	right: 20px;
	width: 124px;
	height: 28px;
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	line-height: 26px;
	text-align: center;
	text-transform: uppercase;
	background: #007297;
	border: 1px solid #FFF;
	border-radius: 14px;
	z-index: 9;
	transition: .3s;
}
#container:hover #cta {
	background: #4097CB;
}
