:root {
	--bg: #11052de2;
}
.menu-btn {
	position: relative;
	display: none;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	border-radius: 5px;
}

.menu-btn-burger {
	width: 30px;
	height: 3px;
	border-radius: 20px;

	background-color: #fff;
	transition: all 0.5s ease-in-out;
}
.menu-btn-burger::before,
.menu-btn-burger::after {
	content: " ";
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #fff;
	border-radius: 1px;
	transition: all 0.5s ease-in-out;
}

.menu-btn-burger::before {
	transform: translateY(-7px);
}
.menu-btn-burger::after {
	transform: translateY(7px);
}
/*Animation*/
.menu-btn.open .menu-btn-burger {
	transform: translateX(-20px);
	background: transparent;
	box-shadow: none;
}
.menu-btn.menu-btn.open .menu-btn-burger::before {
	transform: rotate(45deg) translate(13px, -13px);
}

.menu-btn.menu-btn.open .menu-btn-burger::after {
	transform: rotate(-45deg) translate(13px, 13px);
}
.hamburger-list {
	width: 100%;
	height: 30vh;
	display: none;
	z-index: 1000;
	position: fixed;
	top: 75px;
	justify-self: center;
	justify-content: space-around;
	align-items: center;
	background-color: var(--bg);
	list-style-type: none;
}
.hamburger-list a {
	text-decoration: none;
	color: white;
}
.hamburger-list li {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}
.hamburger-list li::before {
	content: " ";
	position: absolute;
	left: 0px;
	top: -100;
	height: 1px;
	width: 100%;
	background-color: #534879;
	margin-top: -20px;
}
@media screen and (max-width: 640px) {
	.menu-btn {
		display: flex;
	}
	.normal-list {
		display: none;
	}
	.hamburger-list {
		display: none;
		flex-flow: column nowrap;
	}
	.hamburger-list.open {
		display: flex;
	}
}
