html, body
{
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #222;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1rem;
	overflow-x: hidden;
}
h2
{
	font-size: 1.5em;
}

.main
{
	width: 100%;
	max-width: 1200px;
	min-height: 100%;
	margin: 0 auto;
}
.main .column
{
	float: left;
	min-height: 100%;
	box-sizing:border-box;
}
.main .column.left
{
	width: 25%;
}
.main .column.right
{
	width: 75%;
	background-color: #fff;
}

.logo
{
	display: block;
	margin: 0 auto;
	width: 90%;
	margin-top: 40px;
}

.menu-icon
{
	display: none;
}
ul.menu 
{
	margin: 30px;
	padding: 20px;
	border-radius: 8px;
	background: #2e2e2e;
	list-style-type: none;
}
ul.menu l
{
}
ul.menu a
{
	display: block;
	color: #9c9c9c;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
}
ul.menu a:hover 
{
	color: #555;
	text-decoration: none;
	outline: none;
	transition: all .3s ease-out;
}
.header
{
	background-color: #555;
	color: #fff;
	padding: 40px;
	font-size: 1.2em;
	text-align: center;
}
.header a
{
	color: #ddd;
	text-decoration: none;
}
.header a:hover
{
	text-decoration: underline;
}

.footage
{
	color: #555;
	padding-top: 30px;
}
.footage .item
{
	padding-left: 30px;
	padding-right: 30px;
}
.footage .item .label
{
	font-size: 0.9em;
}
.footage .item .fa-book
{
	margin-left: 10px;
}
.footage .item .video
{
	/* video ratio: 1.777777*/
	width: 100%;
	height: 400px;
}
.footage .item .image
{
	width: 100%;
	height: auto;
	overflow: hidden;
	box-sizing: border-box;
	display: block;
}
.footage .item .image img
{
	width: 100%;
	transition: all .3s ease-out;
}
.footage .item .image img:hover
{
	transform: scale(1.2);
}
.footage .item hr
{
	margin: 50px;
	border: none;
	height: 1px;
	background-color: #ddd;
}

@media screen and (max-width: 768px) 
{
	h2
	{
		font-size: 1.3em;
	}
	
	.main .column
	{
		float: none;
		min-height: 0%;
	}
	.main .column:after
	{
		clear: both;
	}
    .main .column.left
	{
		width: 100%;
		clear: both;
	}
	.main .column.right
	{
		width: 100%;
		clear: both;
	}
	
	.logo
	{
		margin-top: 15px;
		margin-bottom: 15px;
		margin-left: 5px;
		width: 60%;
		float: left;
	}

	.menu-icon
	{
		display: block;
		float: right;
		color: #fff;
		font-size: 2em;
		margin-top: 30px;
		margin-right: 30px;
		cursor: pointer;
	}

	ul.menu 
	{
		display: none;
		float: right;
		border-radius: 4px;
	}
	
	.header
	{
		padding: 30px;
	}
}

@media screen and (max-width: 400px) 
{
	.logo
	{
		margin-top: 20px;
		width: 50%;
	}
}