/* ######### NAVBAR  ############# */
/* ############################### */

#navigation-bar {
	height: 60px;
	width: 92vw;
	display: flex;
	justify-content: space-between;
	background: var(--btr-blue);
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 9999;
	margin: 0;
	padding: 0 4vw 0 4vw;
}

#logo {
	height: 24px;
	transition: opacity 1s;
}

.navigation-bar-link {
	font-size: 16px;
	font-weight: normal;
	color: white;
}

.navigation-bar-link:hover {
	text-decoration: none;
}

@media screen and (max-width: 1000px) {
	#navigation-bar {
		display: none;
	}
}

.navigation-bar-text {
	font-size: var(--medium-small-font);
	font-weight: bold;
	border: none;
	background: transparent;
}

#navigation-menu {
	z-index: 9;
	height: 100vh;
	width: 100vw;
	background: var(--btr-blue);
	position: fixed;

	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.navigation-menu-text {
	font-size: var(--medium-font);
	color: white;
	margin-top: 30px;
}

#navigation-bars {
	display: block;
}

#navigation-close {
	display: none;
}
