@charset 'UTF-8';


/* BUTTON */

#menu-btn {
	height: 50px;
	width: 50px;
	
	position: fixed;
	top: 50px;
	right: 50px;
	
	z-index: 99;
	
	cursor: pointer;
}

@media screen and (max-width: 700px) {
	
	#menu-btn {
		position: absolute;
		
		top: 20px;
		right: 20px;
	}
	
	#menu-btn.active {
		position: fixed;
		top: 20px;
		right: 20px;
	}
	
}


/* SIDEBAR */

#menu {
	display: none;
	
	width: 100%;
	height: 100%;
	
	position: fixed;
	top: 0;
	left: 0;
	
	z-index: 98;
	
	transition: 1s;
	
	background: black;
}

#menu.active {
	display: block;
}

.main-menu {
	position: fixed;
	
	left: 150px;
	bottom: 150px;
}

#menu a {
	color: white;
	padding-bottom: 2px;
	text-decoration: none;
	
	transition: .5s;
}

#menu a:hover {
	border-bottom: 2px solid #FFE800;
	color: #FFE800;
}


/* MENU BARS */

.menu-bar {
	border-radius: 0px;
	transition: all .5s ease-in-out;
	
	background-color: black;
}

.menu-bar.active {
	background-color: white;
}

#menu-bar1 {
	height: 3px;
	width: 25px;
	
	margin: 11.25px 9px 0 9px;
}

#menu-bar1.active {
	height: 3px;
	width: 30px;
	transform: translateY(10px) rotate(135deg);
} 

#menu-bar2 {
	height: 3px;
	width: 30px;
	
	margin: 8px 9px;
}

#menu-bar2.active {
	transform: scale(0);
}

#menu-bar3 {
	height: 3px;
	width: 15px;
	
	margin: 0 9px 11.25px 9px;
}

#menu-bar3.active {
	width: 30px;
	transform: translateY(-11.5px) rotate(45deg);
}


/* MOBILE */

@media only screen and (max-width: 700px) {

	.main-menu {
		left: 20px;
		bottom: 20px;
	}
	
}