@font-face {
  font-family: 'Proxima-Nova';
  src: url('./fonts/proximanova-reg.woff') format('woff'), 
	   url('./fonts/proximanova-reg.ttf')  format('truetype'), 
	   url('./fonts/proximanova-reg.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova';
  src: url('./fonts/proximanova-bold.woff') format('woff'), 
	   url('./fonts/proximanova-bold.ttf')  format('truetype'), 
	   url('./fonts/proximanova-bold.svg') format('svg');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova';
  src: url('./fonts/proximanova-light.woff') format('woff'), 
	   url('./fonts/proximanova-light.ttf')  format('truetype'), 
	   url('./fonts/proximanova-light.svg') format('svg');
  font-weight: 300;
  font-style: normal;
}


* {
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	outline: none;
}

body {
	font-family: 'Proxima-Nova';
	font-size: 100%;
	width: 100%;
	line-height: 1em;
}

.bg {
	width: 100%;
	height: 200px;
	background-image: url('./images/bg.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

header {
	width: 100%;
	text-align: center;
	z-index: 99;
	top: 20px;	
}

.logo {
	width: 600px;
	margin: 70px auto 0;
	max-width: 80%;
	padding-bottom: 15px;
}

.logo img {
	width: 500px;
	max-width: 100%;
}

.tagline {
	font-size: 32px;
	font-weight: 300;
}

.body {
	margin: 50px auto;
	width: 500px;
	max-width: 95%;
	text-align: center;
	line-height: 1.8em;
	font-size: 23px;
	font-weight: 300;
}

.cta {
	text-align: center;
}

.cta h3 {
	font-weight: 300;
	margin: 0 0 15px 0;
	font-size: 23px;
	line-height: 1em;
}

.cta h2 {
	font-weight: bold;
	font-size: 23px;
	margin: 0;
	line-height: 1em;
}

.email-form {
	margin: 15px 0;
}

.email-form input {
	display: inline-block;
	border: 3px solid #000;
	height: 36px;
	line-height: 36px;
	padding: 5px 10px;
	vertical-align: top;
	font-size: 14px;
	width: 250px;
}

.email-form button {
	display: inline-block;
	width: 100px;
	height: 36px;
	background-image: url('./images/button.png');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: transparent;
	border: 0 none;
	cursor: pointer;
}

.social {
	width: 400px;
	max-width: 100%;
	margin: 50px auto 50px;
	text-align: center;
}

.social a {
	padding: 0 30px;
}

.email-success {
	display: block;
	margin: 30px 0;
	font-size: 24px;
	color: #27ae60;
	text-align: center;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	.bg {
		display: none;
	}
	
	.logo {
		margin-top: 10px;
	}
	
	.email-form input {
		width: 180px;
	}
	
	.tagline {
		font-size: 21px;
	}
	
	.cta h3,
	.body {
		font-size: 17px;
	}
	
}
