body {
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
}
header {
	font-size: 16px;
	background-color: #000000;
	position: absolute;
	top: 0;
	left: 0;
	background-color: black;
	width: 100%;
	box-sizing: border-box;
}

header .logo {
	color: white;
	height: 50px;
	line-height: 50px;
	font-size: 30px;
	float: left;
	font-weight: bold;
	padding-left: 20px;
}

header nav {
	float: right;
}

header nav ul {
	background-color: black;
	margin: 0;

	padding: 0;
	display: flex;
}

header nav ul li {
	list-style: none;
}

header nav ul li a {
	font-size: 16px;
	font-family: Geometria;
	line-height: 60px;
	padding: 0 20px;
	color: white;
	text-decoration: none;
	display: block;
}

header nav ul li a:hover,
header nav ul li a.active {
	color: white;
	/* background: #2196f3; */
}

.menu-toggle {
	color: white;
	float: right;

	padding-right: 10px;
	line-height: 50px;
	padding-top: 1.2%;
	padding-bottom: 1.2%;

	display: none;
}

@media (max-width: 991px) {
	#signButToHide {
		display: none;
	}
	.menu-toggle {
		display: block;
	}

	header {
		padding: 0 20px;
	}
	header nav {
		position: absolute;
		width: 100%;
		height: calc(100vh - 50px);

		top: 50px;
		left: -100%;
		transition: 0.5s;
	}
	header nav.active {
		left: 0;
	}

	header nav ul {
		display: block;
		text-align: center;
	}
	header nav ul li a {
		color: white;
	}
}
