@charset "utf-8";


#menu_toggle {
	opacity: 0;
}
#menu_toggle:checked + .menu_box > span {
	transform: rotate(45deg);
}
#menu_toggle:checked + .menu_box > span::before {
	top: 0;
	transform: rotate(0deg);
}
#menu_toggle:checked + .menu_box > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu_toggle:checked ~ #menu_btn {
	left: 0 !important;
}
.menu_box {
	position: fixed;
	top: 30px;
	left: 20px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 2;
}
.menu_box > span,
.menu_box > span::before,
.menu_box > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: white;
	transition-duration: .25s;
}
.menu_box > span::before {
	content: '';
	top: -8px;
}
.menu_box > span::after {
	content: '';
	top: 8px;
}
#menu_btn {
	display: block;
	position: fixed;
	top: 0;
	left: -100%;
	width: 250px;
	height: 100%;
	margin: 0;
	padding: 80px 0;
	list-style: none;
	background-color: black;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
	transition-duration: .25s;
	z-index: 1;
}
.menu_item {
	display: block;
	padding: 12px 24px;
	color: white;
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 15px;
	text-decoration: none;
	transition-duration: .25s;
}
.menu_item:hover {
	background-color: #9b9b11;;
}