/* NAVBAR */
.navbar {
	background: transparent;
	width: 100%;
	height: 200px;
	padding: 1rem 3rem;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
}
.logo {
	/*
	font-weight: 800;
	color: #F90;
	font-size: 1.4rem;
	*/
}
.nav {
	background: rgba(255,255,255,0.4);
	backdrop-filter: blur(8px);
	font-weight: 800;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	border: solid 1px var(--white);
	width: auto;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 1.6rem;
}
.nav-links a {
	text-decoration: none;
	color: var(--text);
	opacity: 0.9;
	transition: 0.3s;
	white-space: nowrap;
}
.nav-links a:hover {
	color: var(--sun-orange);
	opacity: 1;
}