@import url( 'https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css' );

html, body {
	height: 100%;
}

* {
	box-sizing: border-box;
}

:root {
	--primary-color: #f05e25;
	--green-color: #36B14A;
}

body {
	font-family: "Asap", sans-serif;
	margin: 0;
}

a {
	text-decoration: none;
}

figure {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

button {
	padding: 0;
}

.main-header {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 24px;
	height: 125px;
}

.header-actions {
	margin-left: auto;
}

.header-actions svg {
	fill: var(--green-color);
}


.app-logo {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	left: 50%;
	transform: translateX(-50%);
}

.app-logo h6 {

	font-size: 48px;
	color: var(--primary-color);
}

.header-actions {
	display: flex;
}


.icons {
	display: flex;
	align-items: center;
}

.icon svg {
	width: 32px;
	height: 32px;
	margin-right: 18px;
}

.icon:last-child svg {
	margin-right: 0;
}

.intro-image {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.intro-image figure {
	max-width: 80%;
}
img {
	display: block;
	max-width: 100%;
}

.newsletter {
	padding: 40px 40px 0px 40px;
	color: #fff;
}

.newsletter-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--green-color);
	padding: 40px 18px;
	text-align: center;
}
form {
	display: flex;
	justify-content: center;
	margin-top: 32px;
	width: 100%;
	max-width: 480px;
	margin: 32px auto 0;
}

input {
	border: 2px solid #fff;
	padding: 12px 18px;
	border-radius: 4px;
	transition: border .25s ease;
	height: 48px;
}

input:focus {
	outline: none;
	border-color: var(--primary-color);
	transition: border .25s ease;
}

form input[type=submit] {
	height: 100%;
	border: 1px solid #fff;
	border-radius: 24px;
	background-color: var(--primary-color);
	color: #fff;
	padding: 8px 24px;
	font-weight: 500;
	margin-left: 12px;
	align-self: center;
	cursor: pointer;
	transition: border .25s ease;
	height: 48px;
}

form input[type=submit]:hover {
	border-color: #f05e25;
	transition: border .25s ease;
}

.mc-field-group {
	display: flex;
	flex-direction: column;
}

#mc_embed_signup {
	display: flex;
	justify-content: center;
	width: 100%;
}

#mc_embed_signup_scroll {
	display: flex;
	width: 100%;
}

#mc_embed_signup div.mce_inline_error {
	margin-top: 8px;
}


.form-left {
	flex: 1;
}

.form-right div {
	height: 100%;
}

#mce-responses {
	margin-top: 12px;
}


footer {
	display: flex;
	justify-content: center;
	padding: 24px;
}

.footer-actions svg {
	fill: var(--primary-color);
}


@media screen and (max-width: 768px) {

	.app-logo {
		position: static;
		transform: translateX(0);
		left: auto;
	}

	.app-logo svg {
		width: 100px;
	}
	.app-logo h6 {
		font-size: 38px;
	}

	.icon svg {
		width: 24px;
		height: 24px;
		margin-right: 12px;
	}

	.intro-image {
		margin-top: 32px;
	}

	.newsletter {
		padding: 24px 24px 0px 24px
	}

	#mc_embed_signup_scroll {
		flex-direction: column;
	}

	form input[type=submit] {
		width: 100%;
		margin-left: 0;
	}

	#mce-responses {
		margin-bottom: 12px;
	}

	form {
		width: 100%;
		flex-direction: column;
	}
	form button {
		height: 48px;
		width: 100%;
		margin-left: 0;
		margin-top: 12px;
	}
}

@media screen and (max-width: 576px) {

	.app-logo h6 {
		font-size: 32px;
	}

	.main-header {
		padding: 24px 24px 16px;
	}

	.intro-image {
		margin-top: 18px;
	}

	form {
		margin-top: 18px;
	}
}

@media screen and (max-width: 400px) {
	.intro-image {
		margin-top: 0;
	}	
}