@charset "UTF-8";

.hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100vh;
    transition: transform 0.7s, opacity 1s;
    transform: translateX(100%);
    opacity: 0;
    color: #ffffff;
	z-index: 500;
}

.hamburger-menu.show {
    transform: translateX(0%);
    opacity: 1;
}

.navlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    height: inherit;
}

.navlist li {
	padding-bottom: 15px;
	color: #fff;
	list-style-type: none;
}

.hamburger {
    position: fixed;
    width: 80px;
    height: 80px;
	z-index: 900;
	top: 10px;
	right: 50px;
}

.hamburger span {
    position: relative;
    right: 0;
	top: 20px;
    width: inherit;
    height: 5px;
	color: #fff;
    transition: transform 0.5s, opacity 0.5s;
}

.top-line {
    top: 0px;
	background-color: #c32022;
}

.center-line {
    top: 15px;
	background-color: #c32022;
}

.bottom-line {
    bottom: 0px;
	background-color: #c32022;
}

.top-line.active {
    transform: translateY(15px) rotate(45deg);
	background-color: #cfb578;
}

.center-line.active {
    opacity: 0;
}

.bottom-line.active {
    transform: translateY(-35px) rotate(-45deg);
	background-color: #cfb578;
}