/* CSS stylesheet */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }

html, body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    font-size: 1em;
    font-family: 'LatoWeb', sans-serif;
    background-image: url(../img/mf.jpg);
    background-size: cover;
    background-attachment: fixed;
}

body {
    overflow-y: scroll;
    -ms-overflow-style: scrollbar;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

h2 {
    margin: 40px 0;
}

strong, b {
    font-weight: 700;
}

a, button {
    outline: none !important;
    text-decoration: none;
}

button {
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

div.container {
    max-width: 960px;
}

/* ******************
// Navigation
******************* */
nav.navigation {
	background-color: rgba(0,0,0,.8);
	height: 80px;
	position: fixed;
	top:0;
	left:0;
	right:0;
	z-index: 777;
}

nav.navigation a.brand {
	display: inline-block;
	float: left;
	height: 80px;
	line-height: 80px;
	font-size: 32px;
	padding: 0 25px 0 0;
	color: #DADADA;
	text-decoration: none;
}

nav.navigation ul.menu {
	list-style: none;
	float: left;
	padding-left: 0;
}

nav.navigation ul.menu>li {
	display: inline;
	float: left;
}

nav.navigation ul.menu>li>a {
	display: inline-block;
	height: 80px;
	line-height: 80px;
	font-size: 22px;
	padding: 0 20px;
	color: #DADADA;
	text-decoration: none;
}

nav.navigation ul.menu>li>a:hover {
	color: #FC0;
}

div.container>.btn-empty.menu-open,
div.container>.btn-empty.menu-close {
	float: right;
	padding-right: 12px;
	display: none;
}

nav.navigation .btn-empty {
	border: 0;
	color: #DADADA;
	line-height: 80px;
	font-size: 32px;
	background-color: transparent;
	text-decoration: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
}

nav.navigation .btn-empty:hover {
	color: #FF4343;
}

@media (max-width: 480px) {

	nav.navigation ul.menu {
		position: fixed;
		width: 100%;
		left: -100%;
		top: 80px;
		bottom: 0;
		z-index: 776;
		background-color: rgba(0,0,0,.8);
	}

	nav.navigation ul.menu.on {
		left: 0;
	}

	nav.navigation ul.menu>li {
		float: none;
	}

	nav.navigation ul.menu>li>a {
		display: block;
		height: 60px;
		line-height: 60px;
	}

	div.container>.btn-empty.menu-open {
		display: inline-block;
	}

	#main-menu:target ul.menu {
		left: 0;
	}

	#main-menu:target ~ section.main {

	}

	#main-menu:target div.container>.btn-empty.menu-open {
		display: none;
	}

	#main-menu:target div.container>.btn-empty.menu-close {
		display: inline-block;
	}

}


div.mt-wrap {
	min-height: 100%;
	min-height: 100vh;
    padding-top: 70px;
    background-color: rgba(255,255,255,.4);
}


/* ***********************
// FOOTER
************************ */
footer {
background-color: #121212;
color: #DEDEDE;
}


/* ***********************
// Buttons
************************ */
.btn-warp {
background-color: #FF4343;
color: #FFF;
}

.btn-clear {
background: transparent;
border: 0;
color: #F9F9F9;
}

.btn-black, .btn-black:active, .btn-black:focus {
background: #333;
color: #BBB;
}

.btn-black:hover {
background: #000;
color: #666;
}
