* {
	box-sizing: border-box;
}

body {
	font-size: 10px;
	font-family: 'Open Sans', sans-serif;
	line-height: normal;
	font-weight: 300;
}

img, iframe {
	max-width: 100%;
}

/* Typography */

h1, h2, h3, h4, button, .button {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: #272727;
	text-transform: uppercase;
}

h1 {
	font-size: 4em;
	text-transform: uppercase;
	margin-bottom: 0;
}
	@media screen and (min-width: 900px) {
		h1 { font-size: 4.8em; }
	}

h2 {
	font-size: 3em;
}

h3 {
	font-size: 2.6em;
}

h4 {
	font-size: 1.8em;
}

.uppercase {
	text-transform: uppercase;
}



p, li {
	font-size: 1.8em;
	line-height: 1.6;
}

strong {
	font-weight: 600;
}

/* Layout */
.inner {
	width: 100%;
	box-sizing: border-box;
	max-width: 700px;
	margin: auto;
	padding: 0 40px;
}
	@media screen and (max-width: 400px) {
		.inner {
			padding: 0 20px;
		}
	}

.center {
	text-align: center;
}

.box-shadow {
	box-shadow: 5px 10px #888888;
}

.margin-top { margin-top: 50px; }
.margin-bottom { margin-bottom: 50px; }
.margin-top-0 { margin-top: 0; }

.padding-top { padding-top: 50px; }
.padding-bottom { padding-bottom: 50px; }

.border-top { border-top: 1px solid #ccc; }


form {
}

.input {
	margin-bottom: 10px;
}

input {
	font-size: 1.6em;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}

a {
	color: #e74c3c;
}

button, .button {
	font-size: 1.6em;
	padding: 20px;
	background-color: #e74c3c;
	color: #FFF;
	width: 100%;
	border: none;
	text-decoration: none;
	display: block;
	text-align: center;
}

section#intro {
	display: flex;
	flex-direction: column;
	padding: 20px;
	padding-bottom: 40px;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
	border-bottom: 1px solid #ccc;
}

	section#intro article {
		margin-bottom: 20px;
	}

	@media screen and (min-width: 600px) {

		section#intro {
			flex-direction: row;
		}

		section#intro article {
			order: 1;
			padding: 20px;
			padding-left: 60px;
			max-width: 700px;
		}

		section#intro img {
			max-width: 400px;
		}

	}
