@charset "utf-8";
/* CSS Document */
/*This CSS is responsible for handling navbar responsive behavior and appearance*/


header {
	z-index: 9999;
	position: fixed;
	top: 0px;
	width: 100%;
	height: auto;
	margin: 0;
  	padding: 0;
	display: block;
	background: rgba(15,15,15,0.95);
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-image: linear-gradient(90deg,rgb(75,0,0) 20%,rgb(150,0,0) 25%, rgb(150,0,0) 50%, rgb(95,55,150) 50%,rgb(95,55,150) 75%,rgb(57,29,95) 80%) 1;
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
}
nav {
	display: flex;
}
nav ul {
	top: 0px;
	height: auto;
	margin: auto;
	padding: 0;
	display: flex;
	align-items: center;
}
nav ul li {
	list-style: none;
}
nav ul li a {
	width: 200px;
	height:auto;
	margin: 0;
	padding: 2em 0px;
	overflow: hidden;
	display: block;
	font-family:"Good Times";
	font-size: 28px;
	color: rgba(150,150,150,1.00);
	text-align: center;
	text-decoration: none;
}
nav ul li a.logo {
	width: 125px;
	aspect-ratio: 1 / 1;
	padding: 0px 0px;
	margin: 10px 0px;
	background-image: url("../assets/iLavVex_NLogo.png");
	background-size: cover;
	background-position: 50% 50%;
}
nav ul li a.current {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: rgba(100,100,100,1.00);
	border-bottom-style: solid;
	border-bottom-width: 3px;
	border-bottom-color: rgba(100,100,100,0.95);
}
nav ul li a.logo.current {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	border: none;
}
nav ul li a:hover:not(.logo) {
	color: rgba(150,0,0,1.00);
	border-bottom-style: solid;
	border-bottom-width: 3px;
	border-bottom-color: rgba(150,0,0,0.95);
}
.navbg {
	width: 100%;
	height: 120px;
	top: 0px;
	margin: 0;
	padding: 0;
	border: none;
	background: rgba(25,25,25,1.00);
}
.menu-btn {
	margin: 0;
	padding: 0;
	width: 85px;
	height: 100%;
	display: none;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.bar {
	width: 70%;
	height: 3px;
	background-color: rgb(200,200,200);
	margin: 5px 0;
	transition: 0.5s;
}



@media screen and (max-width: 1400px) {
	
}
@media screen and (max-width: 930px) {
	nav ul {
		flex-flow: column;
	}
	nav ul li a.text {
		width: 100vw;
		font-size: 0px;
		opacity: 0;
		transition: 0.5s;
	}
	.text.active {
		width: 100vw;
		font-size: 20px;
		opacity: 100%;
	}
	nav ul li a.logo {
		width: 75px;
	}
	nav ul li a.current {
		border: none;
	}
	nav ul li a:hover:not(.logo) {
		border: none;
	}
	.navbg {
		height: 95px;
	}
	.menu-btn {
		position: absolute;
		left: 3%;
		display: flex;
		height: 95px;
	}
	.bar.bar1.active {
		transform: rotate(-45deg) translate(0px, 18px);
	}
	.bar.bar2.active {
		opacity: 0;
	}
	.bar.bar3.active {
		transform: rotate(45deg) translate(0px, -18px);
	}
}
@media screen and (max-width: 700px) {
	
}