* {
	box-sizing: border-box;
}

body {
	font-family: Helvetica;
    margin: 0;
}

nav{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	color: white;
	background: #23272b;
	border-bottom: 2px solid #4a4a4a;
}
div#logokl{
	order: 1;
}
div#logokl img{
	display: inline-block;
	height: 54px;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 10px;
	margin-right: 4px;
	cursor: pointer;
}
div#navigation_wrapper{
	flex-grow: 2;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
}
div#navigation{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
}
img#mobilemenutoggle{
	display: inline-block;
	width: 45px;
	height: 45px;
	cursor: pointer;
}
div.navigation-item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 3px;
	margin-bottom: 3px;
	font-size: 20px;
	background: #1d1d1d;
	cursor: pointer;
}

header {
	height: 70vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.3)), url(../img/HeaderBackground.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: white;
}
h1 {
	font-size: 2.5em;
	margin: 0;
}
h2 {
	font-size: 2.3em;
	text-align: center;
}
h3 {
	font-size: 1.6em;
}

section.leftbody{
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 50px;
}
section.rightbody{
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 50px;
}

section.rightbody div{
	margin: 0 30px;
    font-size: 0.95em;
    line-height: 1.4em;
}
section.leftbody div{
	margin: 0 30px;
    font-size: 0.95em;
    line-height: 1.4em;
}

p{
	line-height: 1.4em;
}

img.sideimg{
	width: 100%;
	max-width: 250px;
	max-height: 250px;
	align-self: center;
}

a {
	text-decoration: underline;
	color: #0070ff;
}

hr {
	background: white;
	height: 1px;
	width: 70%;
}

.btn {
	padding: 15px;
	background: #4286f4;
	color: white;
	display: inline-block;
	cursor: pointer;
}

div.colorbox{
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid #23272b;
}

img.picturebox{
	display: inline-block;
	width: 30px;
	height: 30px;
}

.hide{
	display: none;
}

.mobilehide{
	display: none !important;
}

@media(min-width: 900px){
	nav{
		height: 80px;
	}
	div#logokl{
		order: 0;
	}
	div#logokl img{
		display: inline-block;
		height: 74px;
		margin-top: 2px;
		margin-bottom: 2px;
		margin-left: 4px;
		margin-right: 2px;
	}
	div#navigation_wrapper{
		flex-flow: row nowrap;
		justify-content: space-evenly;
	}
	div#navigation{
		flex-grow: 2;
		flex-flow: row nowrap;
		justify-content: space-evenly;
	}
	img#mobilemenutoggle{
		display: none;
	}
	div.navigation-item{
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 12px;
		padding-right: 12px;
	}
	header{
		padding-top: 100px;
		height: 100vh;
	}
	h1 {
		font-size: 4.5em;
	}
	h2 {
		font-size: 2.85em;
	}
	h3 {
		font-size: 1.8em;
	}
	section.rightbody{
		flex-wrap: nowrap;
	}
	section.leftbody{
		flex-wrap: nowrap;
		flex-direction: row-reverse;
	}
	section.rightbody div{
	    line-height: 1.5;
		font-size: 1.15em;
	}
	section.leftbody div{
	    line-height: 1.5;
		font-size: 1.15em;
	}
	p{
		line-height: 1.5;
	}
	img.sideimg{
		width: 40%;
		max-width: 250px;
		max-height: 250px;
	}
	.mobilehide{
		display: flex !important;
	}
}