nav {
	height: 20vh;
	display: flex;
	justify-content: space-between;
	padding: .3rem 5rem;
	transition: all .3s linear;
	position: sticky;
	top: 0;
	z-index: 100;
	color: #000;
	background: #fff;
}
nav img {
	height: 100%;
}
nav span {
	margin: 0 1rem;
	font-size: 1.3rem;
}
nav span:hover {
	cursor: pointer;
	border-bottom: 4px solid var(--celeste);
	margin-bottom: -4px;
}
.active {
	border-bottom: 4px solid var(--celeste);
	margin-bottom: -4px;
}
.newNav {
	width: 100%;
	height: 10vh;
	padding: .2rem 5rem;
	background: #fff;
	position: fixed;
	z-index: 100;
	font-size: 1.1rem;
	border-bottom: 1px solid #c5c5c5;
}