.menu-logo {
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	padding: 20px 40px;
	padding-top: 30px;
}
.menu-logo-fixed {
	padding-top: 10px;
	position: fixed;
	width: 100%;
	background: rgba(0, 0, 0, .7);
}
.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menu > li {
	margin: 0 1rem;
	overflow: hidden;
}
.menu > li > div > a {
	color: white;
	font-size: 15px;
	cursor: pointer;
	text-transform: uppercase;
	padding: 8px 5px;
	border-bottom: 1px solid transparent;
}
.menu > li > div > a:hover {
	transition-property: color, background-color, opacity, border-color, fill;
    transition-duration: 0.3s;
    transition-timing-function: ease;
	border-color: #707682;
	padding: 8px 5px;
}
.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	height: 50px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.selected {
	border-bottom: 1px solid #707682!important;
}
#menu-toggle {
	display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: #fff;
	position: absolute;
	height: 2px;
	width: 30px;
	transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 2px;
}
.menu-button::before {
	content: '';
	margin-top: -8px;
}
.menu-button::after {
	content: '';
	margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
	margin-top: 0px;
	transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
	background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
	margin-top: 0px;
	transform: rotate(-405deg);
}
@media (max-width: 1156px) {
	.menu-button-container {
		display: flex;
	}
	.menu {
		position: absolute;
		top: 0;
		margin-top: 100px;
		left: 0;
		flex-direction: column;
		width: 100%;
		justify-content: center;
		align-items: center;
	}
	#menu-toggle ~ .menu li div {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
		z-index: 1;
		background-color: black;
	}
	#menu-toggle:checked ~ .menu li div {
		border: 1px solid #333;
		height: 2.5em;
		padding: 0.5em;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}
	.menu > li {
		width: 100%!important;
		display: block;
	}
	.menu > li > div {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 0.5em 0;
		color: white;
		width: 100%!important;
	}
	.menu > li > div > a:hover {
		border-bottom: 1px solid transparent;
	}
	.selected {
		border-bottom: 1px solid transparent!important;
	}
	.menu > li > div:not(:last-child) {
		border-bottom: 1px solid #444;
	}
}.menu-logo {
		text-align: center;
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: white;
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 30px;
		padding-top: 30px;
	}
}