    /*====================================================================
	MENU
    ====================================================================*/

body {
	margin-top: 130px;
}

#stage {
	margin-top: 5em;
	border: 2px solid #D9D9D9;
	font-family: 'Roboto Condensed', sans-serif;
	max-width: 1370px;
	background: #eee;
}

#stage .inner {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	padding: 8em 0;
}

#stage strong {
	font-size: 2.75em;
}
#stage .typed-cursor {
	font-size: 2.75em;
	color: #D9D9D9;
}
#stage span {
	font-size: 2em;	
}

.hover-subline{
	overflow:hidden;
}

.hover-subline .subline {
	height: 0px;
	opacity: 0;
	transition: all 0.2s;
}
.hover-subline:hover .subline {
	height: 50px;
	opacity: 1;
}


#menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	padding: 0.5em 1em;
	border-bottom: 1px solid #D9D9D9;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#menu #logo {
	display: block;	
	width: 140px;
	height: 60px;
	background: #ccc;
	text-indent: -9999px;
	
	background: url(Logo-BKF-CAMP.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#menu ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	margin: 0;
	margin-top: 0.5em;
	padding: 0;
	gap: 1em;
}

#menu ul li {
	
}

#menu ul li a {
	font-family: 'Roboto Condensed';
	font-weight: bold;
	color: #0099ff;
}

#menu #menu-toggler {
	display: none;
	
}

@media (max-width: 890px) {
	#menu ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		order: 9;
		flex: 0 0 100%;
		height: calc(100vh - 87px);
		position: absolute;
		top: -100vh;
		opacity: 0;
		left: 0;
		right: 0;
		background: #fff;
		transition: all 0.3s;
	}
	
	#menu ul li {
		
	}
	
	#menu ul li a {
		display: block;
		text-align: center;
		padding: .5em;
	}
	
	#menu #menu-toggler {
		display: block;
		color: #000000;
		font-size: 1.75em;
		padding: 0.75rem;
	}
	
	#menu #menu-toggler i:last-child {
		display: none;
	}
	
	#menu.open ul {
		top: 76px;
		opacity: 1;
	}
	#menu.open #menu-toggler i:first-child {
		display: none;
	}
	#menu.open #menu-toggler i:last-child {
		display: block;
	}
}