nav {
	position: absolute;
	top: 0;
	width: 95vw;
	padding: 0 2.5vw;
	height: 10vh;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	font-family: "Raleway", sans-serif;
	text-transform: uppercase;

	overflow-y: hidden;
	z-index: 5;
}

nav .anim-fadein {
	animation-duration: 0.25s;
	animation-delay: 1.25s;
}

nav .navbar-list {
	display: flex;
	flex-direction: row;
	align-items: center;
}

nav a {
	text-decoration: none;
	color: #ddd;
}

nav a:hover {
	color: #fff;
}

nav .navbar-list li:last-child a:hover,
nav .navbar-list li:last-child:hover a {
	color: #000;
	cursor: pointer;
}

nav .navbar-list li {
	list-style: none;
	padding: 1vh 1.75vw;
	font-size: 8pt;
}

nav .navbar-list li:last-child {
	margin: 0;
	border: 2px solid #fff;
	border-radius: 300px;
	margin-left: 1.75vw;
}

nav .navbar-list li:last-child:hover {
	background-color: white;
	color: #000;
	cursor: pointer;
}

nav h1,
nav h2 {
	font-weight: 600;
	letter-spacing: 2px;
}

.hamburger {
	display: none;
	font-size: 24pt;
	margin-right: 2vh;
	align-items: center;
	justify-content: center;
}

.hamburger > i{
	overflow: hidden;
}

@media (max-width: 1400px) {
	nav{
		height: 8vh;
		overflow-x: hidden;
	}

	nav .hamburger {
		display: flex;
	}

	nav .navbar-list{
		overflow: hidden;
		position: fixed;
		right: 0;
		top: 0;

		width: 0;
		height: 100vh;

		padding-top: 6vh;
		flex-direction: column;

		background-color: var(--banner-bkg-colour);
	}

	nav .navbar-list > li{
		margin: 0 0 2vh 0;
		width: 80%;
		text-align: center;
	}


}
