/*
 * Base
 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-size: 16px;
  	background-color: #ffffff; 
  	color: #000000;
  	font-family: "ff-din-web", Helvetica, Arial, sans-serif;
}

a {
	color: #000000;
	text-decoration: none;
}

/*
 * Typography
 */
h1, h2, h3, h4 {
	margin: 0;
	font-weight: 700;
	line-height: 1;
}

h1 {
	margin-bottom: 1rem;
	font-family: "din-condensed-web", Helvetica, Arial, sans-serif;
	font-size: 3em;
	text-transform: uppercase;
}

h2 {
	margin-bottom: 1rem;
	font-size: 1.333em;
	line-height: 1.3;
	text-transform: uppercase;
}

h3 {
	margin-bottom: 1.3rem;
	font-size: 1.25em;
	line-height: 1.2;
}

h4 {
	font-size: 1em;
}

.small {
	font-size: 0.75em;
}

p {
	margin: 0 0 1.3rem 0;
	line-height: 1.3;
}

p > a {
	border-bottom: 1px solid #000000;
}

.strong {
	font-weight: 700;
}

.red {
	color: #ed331a;
}

.center {
	text-align: center;
}

.link--red {
	color: #ed331a;
	border-bottom: 1px solid #ed331a;
}

/*
 * Button and inputs
 */
.btn, input {
	display: block;
	margin: 0 auto;
	padding: 1rem;
	width: 100%;
	max-width: 300px;
	border: none;
	font-size: 1em;
	font-family: "ff-din-web", Helvetica, Arial, sans-serif;
}

input {
	margin-bottom: 1.3rem;
	padding-top: 1.1rem;
	border: 2px solid #ffffff;
}

input:focus {
	outline: 0;
	border: 2px solid #ed331a;
}

.btn {
	color: #ffffff;
	background-color: #ed331a;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
}

/*
 * Grid
 */
.wrap {
	margin: 0 auto;
	max-width: calc(100% - 2rem);
}

 section {
 	margin-bottom: 4rem;
 }

/*
 * Header
 */
header {
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 56px 0 0 0; 
	padding: 1rem;
	width: 100%;
	font-family: "din-condensed-web", Helvetica, Arial, sans-serif;
	font-size: 1.25rem;
	text-transform: uppercase;
}

.header-nav__link {
	margin-left: 5px;
}

/*
 * Hero
 */
.hero {
	position: relative;
	width: 100%;
	height: 300px;
	max-width: 1440px;
	overflow: visible;
	margin: 0 auto;
	background-image: url(../img/lettering.png);
	background-size: cover;
	background-position: 50%;
}

.hero_content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

/*
 * Specific elements
 */
.banner {
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
	color: #ffffff;
	background-color: #ed331a;
	font-weight: 700px;
	text-transform: uppercase;
	text-align: center;
	padding: .5rem 0;
}

.banner > a {
	color: #ffffff;
	border-bottom: 2px solid #ffffff;
}

.social-icon {
	width: 18px;
	height: 18px;
	margin-right: 4px 
}

/*
 * Media queries
 */
@media screen and (min-width: 481px) {
	body {
		font-size: 1.1em;
	}
	.wrap {
		max-width: calc(100% - 4rem);
	}
	header {
		margin-top: 54px;
	}
	p {
		line-height: 1.4;
	}
	.btn, input {
		max-width: 400px;
	}
	.banner {
		padding: 1rem 0;
	}
	.banner > br {
		display: none;
	}
	.banner > a {
		margin-left: .5rem;
	}
}

@media screen and (min-width: 768px) {
	body {
		font-size: 1.2em;
	}
	.wrap {
		max-width: 703px;
	}
	header {
		margin-top: 57px;
		font-size: 1.5rem;
	}
	h1 {
		font-size: 4em;
	}
	h2 {
		font-size: 1.5em;
	}
	.btn, input {
		max-width: 500px;
	}
	.hero {
		margin: 3rem auto;
		height: 400px;
	}
}