html {
    height: 100%;
    background-repeat:no-repeat;
	background: linear-gradient(45deg, #00676B 0%, #fff 150%) fixed;
}

body {
	height: 100%;
    display: flex;
    flex-direction: column;
	margin: 0;
	min-height: 100vh;
}

h1,h2,h3,h4,h5 {
	color:#fff;
	font-family: sans-serif;
	font-weight:200;
	text-transform: uppercase;
	padding-top:2em;
}

p,li {
	color:#fff;
	font-size: 1.1rem;
	line-height: 1.7rem;
}

a {
	color:#fff;
}

header {
	position: relative;
	width: 100%;
	padding:0;
	margin:0;
}
header .branding {
	width: 100%;
	max-width: 1000px;
	height: 200px;
	margin:0 auto;
	position: relative;
}
.home header .branding {
	min-height: 45vh;
}
header .logo {
  	height: auto;
	float: left;
	width: 175px;
	position: absolute;
	bottom:-10px;
	left:10px;
}
.home header .logo {
	width: 25%;
	bottom:-35px;
}
header .logo svg {
	-webkit-filter: drop-shadow( -5px 5px 0px rgba(0, 103,107, .7));
  	filter: drop-shadow( -5px 5px 0px rgba(0, 103, 107, .7));
  	height:auto;
}
header h1 {
	display:none;
}

nav {
	box-sizing: border-box;
	width: 72.5%;
	margin-left:27.5%;
	position:absolute;
	bottom:0;
	padding:0 10px;
}
nav ul {
	margin:0;
	padding:0;
	width:100%;
	position: relative;
}
nav ul li {
	display:block;
}
nav ul li {
	box-sizing: border-box;
	height:auto;
	display:inline-block;
	width:15.6%;
	padding-right:1%;
}
nav ul li img {
}
nav ul li:last-of-type {
	padding-right:0;
}
nav ul li span {
	display: none;
}

main {
    flex: 1;
    box-sizing: border-box;
    width: 100%;
	max-width: 600px;
	margin:0 auto 5em auto;
	padding:0 10px;
}

footer {
    box-sizing: border-box;
	letter-spacing: 0.05em;
	text-align:center;
	color:#fff;
	width: 100%;
	max-width: 1000px;
	margin:0 auto;
	padding:0 10px;
	position: relative;
}
footer ul {
	padding-left:0;
}
footer ul li {
	display: inline-block;
}
footer ul li:last-of-type::before {
	content: "• ";
}
footer ul li a {
	text-decoration: none;
}

@media screen and (max-width:640px) {
	header .branding {
		height: auto;
	}
	header .logo {
		float: none;
		width: 50%;
		height:auto;
		position: relative;
		bottom:0px;
		left:0px;
		right:0px;
		top:15px;
		margin:0 auto;
		display:block;
	}
	.home header .logo {
		width: 50%;
	}
	nav {
		position:relative;
		width: 100%;
		margin:20px auto 0 auto;
		box-sizing: border-box;
	}
}

@media screen and (max-width:640px) and (orientation:landscape) {
	header .logo, .home header .logo {
		width: 16.6%;
	}
}

@media screen and (max-width:420px) {
	nav {
		margin:40px auto 0 auto;
	}
	nav ul {
		text-align:center;
	}
	nav ul li {
		width: 32%;
	}
}