/* Andy Ellison Ratpack stylesheet */

/* -----------------------------------------------------------------------------   general styles */


::selection {
	background: #b20f2b; /* Safari */
	color: #fff;
	}
	
::-moz-selection {
	background: #b20f2b; /* Firefox */
	color: #fff;
	}

:focus {
  	-moz-outline-style: none;
	}

*	{
	margin: 0;
	padding: 0;
	}

body {
	background: #000;
	color: #ccc;
	line-height: 1.6;
	font-family: Arial,Helvetica,Sans-Serif;
	opacity: 0;
	-moz-transition: opacity 2s ease 0.5s;
	-webkit-transition: opacity 2s ease 0.5s;
	}

body.up {
	opacity: 1;
}

a 	{
	outline: none;
	color: #fff;
	background: #b20f2b;
	line-height: 1.3;
	padding: 18px;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	margin: 30px 0;
	text-decoration: none;
	border-radius: 5px;
	border: 2px solid rgba(255,255,255,0.2);
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	}

a:hover {
	background: #7f091e;
	}

p 	{
	padding-bottom: 14px;
	}

b	{
	color: #fff;
	font-size: 21px;
	line-height: 1.3;
	}

div.header {
	width: 100%;
	overflow: hidden;
	background: url(../images/hero.jpg) center 0 no-repeat;
}

div.wrapper {
	padding: 30px 0;
	margin: 0 auto;
	max-width: 960px;
}

div.strip {
	background: #5f0b1a;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}

div.strip p {
	color: rgba(255,255,255,0.6);
}

div.strip p b {
	color: rgba(255,255,255,1);
}


div.end {
	text-align: center;
	padding: 70px 20% 100px;
	line-height: 1.3;
}

div.end p {
	font-size: 21px;
	font-weight: bold;
}

div img {
	float: right;
	margin: -40px 0 0 40px;
	/*border: 2px solid rgba(255,255,255,0.5);*/
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,.15), 0 2px 2px rgba(0,0,0,.1);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,.15), 0 2px 2px rgba(0,0,0,.1);
	box-shadow: 0 0 4px rgba(0,0,0,.15), 0 2px 2px rgba(0,0,0,.1);
	-webkit-transform: rotate(4deg);
	-moz-transform: rotate(4deg);
	-ms-transform: rotate(4deg);
	-o-transform: rotate(4deg);
}

div.strip img {
	float: left;
	margin: -40px 40px 0 0;
	-webkit-transform: rotate(-4deg);
	-moz-transform: rotate(-4deg);
	-ms-transform: rotate(-4deg);
	-o-transform: rotate(-4deg);
}
	
h1 {
	display: block;
	margin: 50px auto 475px;
	text-indent: -9999px;
	background: url(../images/logo.png) 0 0 no-repeat;
	width: 259px;
	height: 173px;
	position: relative;
	opacity: 0;
	-moz-transition: all 1.3s ease 1.5s;
	-webkit-transition: all 1.3s ease 1.5s;
}

h1.stretch {
	opacity: 1;
}

h1:after, h1:before {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 1px;
	background: #fff;
	top: 82px;
	-moz-transition: all 1.3s ease 1.75s;
	-webkit-transition: all 1.3s ease 1.75s;
}

h1:before {
	right: 275px;
}

h1:after {
	left: 275px;
}

h1.stretch:before {
	width: 300%;
}

h1.stretch:after {
	width: 300%;
}

/* -----------------------------------------------------------------------------    responsive break - tablet portrait display  */

																					@media screen and (max-width: 700px) {
body {
	font-size: 13px;
}

b, div.end p {
	font-size: 18px;
}

div.header {
	background-size: cover;
}

h1 {
	margin: 20px auto 250px;
	background-size: cover;
	width: 159px;
	height: 106px;
}

h1:before, h1:after {
	display: none;
}

img {
	display: none;
}

div.wrapper {
	padding: 20px 20px 0;
}

a {
	margin: 30px 0 100px;
}

																					}

