@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:400,300);
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-color: #242424;
	font-family: 'Montserrat', sans-serif;
}
.menu{
	display: inline-block;
	overflow-y: scroll;
}
nav {
	position: fixed;
	display: flex;
	align-items: flex-start;
	width: 23%;
	height: 99.8%;
	background-color: #111;
}
#main {
	position: fixed;
	right: 0;
	width: 78.3%;
	height: 100%;
	color: #fff;
	overflow: hidden;
	background-color: #242424;
}
h1 {
	font-weight: bold;
	margin-bottom: 50px;
	font-size: 55px;
	text-align: center;
}
p {
	margin-bottom: 20px;
	line-height: 26px;
}
p::first-letter {
	font-size: 200%;
	font-weight: bold;
}
li, ul label.title, ul, a {
	width: 100%;
	color: #FFF;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	display: block;
	font-weight: bold;
}
ul label {
	height: 35px;
}
ul li{
	height: 35px;
	overflow: hidden;
}
li {
	display: block;
	background-color: #363636;
}
label.title {
	font-size: 14px;
	background: linear-gradient(#111, #2f2f2f);
	padding: 10px 15px;
	cursor: pointer;
    transition: all .25s;
}
a{
	font-size: 12px;
	cursor: pointer;
	text-decoration: none;
	color: #FFF;
	display: block;
	padding: 10px 25px;
	transition: all .25s;
}
a:hover {
	background-color: #444;
    box-shadow: inset 5px 0px 0px 0px #fff;
}
label:hover {
	text-shadow: 0px 0px 10px #fff;
}
input[type="radio"] {
	display: none;
}
#workflow:checked + li, #programming:checked + li, #witg:checked + li, #easystart:checked + li, #deepdive:checked + li {
	height: 100%;
}
i {
	margin-right: 12px;
}
#mobile-splash {
	visibility: hidden;
	height: 0px;
	overflow:hidden;
}
@media screen and (max-width: 600px){
	nav {
		width: 100%;
		position: relative;
	}
	main {
		width: 100%;
		position: relative;
	}
	#mobile-splash {
		visibility: visible;
		position: fixed;
		z-index: 999;
		background-color: #111;
		color: white;
		width: 100%;
		height: 100%;
		text-align: center;
	}
}
