@charset "utf-8";

/* CSS Document */
/* For Company Name */
/* By Alan Horne */


/* ---------------------------------------------------------------------------------------------------------*/
/* GLOBAL STYLES RESET */
/* ---------------------------------------------------------------------------------------------------------*/

img,  {
    margin: 0;
    padding: 0;
    border: 0;
}

/* ---------------------------------------------------------------------------------------------------------*/
/* CORE HTML SETUP */
/* ---------------------------------------------------------------------------------------------------------*/

html {
  height: 100%;
  margin-bottom: 1px;
  overflow-y: scroll !important;
}

form {
  margin: 0;
  padding: 0;
}

body {
	text-align: center;
	font-size: 24px;
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	line-height: 1.5;
	margin: 0;
	color: #1d1d1d;
	background: #ffffff;
	position: relative;
}

blockquote {
    padding: 15px;
    font-size: 110%;
    line-height: 120%;
    color: #666666;
    background: #fafafa;
    margin: 10px 10px 20px 10px;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}


/* ---------------------------------------------------------------------------------------------------------*/
/* HEADER STYLES */
/* ---------------------------------------------------------------------------------------------------------*/


h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
    margin: 0 0 40px 0;
    color: #BD4545;
	display: block;
}

h1 { font-size: 72px; }

/* ---------------------------------------------------------------------------------------------------------*/
/* TEXT STYLES */
/* ---------------------------------------------------------------------------------------------------------*/

p { margin:0px 0px 10px 0px; }

/* ---------------------------------------------------------------------------------------------------------*/
/* BUTTON STYLES */
/* ---------------------------------------------------------------------------------------------------------*/

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

a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------------------*/
/* MAIN BODY HTML SETUP */
/* ---------------------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------*/
/* MOBILE */
/* ----------------------------------------------------------------------------------*/

.wrapper {
	width: 94%;
	max-width: 960px;
	padding: 20px 0;
	margin: 0 auto;
}

.logo {
	margin-bottom: 20px;
}

.logo img {
	width: 56px;
	height: auto;
}

.underline {
	display: block;
	text-align: center;
	height: 4px;
	width: 55px;
	border-radius: 2px;
	background: #BD4545;
	margin: 10px auto;
}

h1 {
	font-size: 48px;
	margin: 20px 0;
}

p {
	font-size: 18px;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul li {
	display: inline;
	padding-right: 15px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}

.coming-soon {
	margin-top: 40px;
}


/* ----------------------------------------------------------------------------------*/
/* MOBILE LANDSCAPE - TABLET PORTRAIT */
/* ----------------------------------------------------------------------------------*/

@media all and (min-width: 500px) {
	
	
	
}

/* ----------------------------------------------------------------------------------*/
/* TABLET LANDSCAPE */
/* ----------------------------------------------------------------------------------*/

@media all and (min-width: 750px) {
	
	.wrapper {
		padding: 40px 0;
		width: 90%;
	}
	
	.logo {
		float: left;
		width: 20%;
		text-align: left;
	}
	
	.content {
		float: left;
		width: 80%;
		text-align: left;
	}
	
	.underline {
		margin: 10px 0;
	}
	
	h1 {
		font-size: 60px;
	}
	
	p {
		font-size: 24px;
	}
	
	ul {
		margin-top: 30px;
	}
	
	ul li {
		font-size: 18px;
	}
	
	.coming-soon {
		margin-top: 100px;
	}
	
}

/* ----------------------------------------------------------------------------------*/
/* DESKTOP */
/* ----------------------------------------------------------------------------------*/

@media only screen and (min-width : 1000px) {
	
	.wrapper {
		padding: 100px 0;
	}
	
	h1 {
		font-size: 72px;
	}
	
	
}