/* VARIABLES */
:root {
  --font-size: 16px;
}

/* GENERAL */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: var(--font-size);
	background: #ccc;
}

.content {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-content: center;
	padding: 0 1em;
	width: 100%;
	max-width: 1200px;
	align-items: center;
}

/* NAVIGATION */

#navigation {
	position: fixed;
	top: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-content: center;
	width: 100%;
	height: 4em;
	background: #fff;
	z-index: 10;
}

#navigation .content {
	width: 100%;
	height: 100%;
}

.logo {
	width: auto;
	height: 4em;
}

#menuBtn {
	position: absolute;
	top: 0;
	left: 1em;
	bottom: 0;
	width: 2em;
	height: 2em;
	margin: auto;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: nowrap;
	cursor: pointer;
	z-index: 100;
}

#menuBtn .menu-open {
	display: block;
}

#menuBtn .menu-close {
	display: none;
	color: #fff;
}

.menu-opened #menuBtn .menu-open {
	display: none;
}

.menu-opened #menuBtn .menu-close {
	display: block;
}

body.menu-opened {
	overflow: hidden;
}

#menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	padding-top: 4em;
	display: none;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	color: #fff;
}

.menu-opened #menu {
	display: flex;
}

#menu .logo {
	height: 5.5em;
}

#menu .section {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	margin: 1em 0;
}

#menu .section p {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2em;
	color: #797d8a;
	width: 18em;
	text-align: center;
}

#menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.menu-item {
	display: block;
	color: #fff;
	text-decoration: none;
}

.menu-item div {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	height: 3em;
}

.menu-item div i {
	color: #ea003f;
	padding: 0.5em;
}

.menu-item div p {
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
}

/* PAGE */

#page {
	margin-top: 4em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-content: center;
}

#page .content {
	padding: 0;
}

#page img {
	width: 100%;
	display: block;
}

/* RESPONSIVE */

.mobile {
	display: block;
}
	
.desktop {
	display: none;
}

@media screen and (min-width: 800px) {
    .mobile {
		display: none !important;
	}
	
	.desktop {
		display: block;
	}
	
	body.menu-opened {
		overflow: auto;
	}
	
	#navigation {
		height: 5em;
		border-bottom: 0.25em solid #f1f1f5;
	}
	
	#menu {
		position: relative;
		display: flex;
		flex-direction: row;
		background: transparent;
		padding-top: 0;
	}
	
	#menu .menu-items {
		flex-direction: row;
	}
	
	#menu .menu-item,
	#menu .menu-item i {
		color: #666699;
	}
	
	#menu .menu-item {
		margin-left: 1em;
	}
	
	#menu .menu-item i {
		padding: 0.25em;
	}
	
	.menu-item div p {
		font-size: 1em;
	}
	
	#menu .menu-item:hover,
	#menu .menu-item:hover i {
		color: #ea003f;
	}
	
	#page {
		margin-top: 5em;
	}
}