/* MOBILE NAV */

nav.mobile-nav{
	position: fixed;
	display: flex;
	justify-content:flex-end;
	align-items:flex-start;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.5);
	z-index: 850;
	padding: 100px 0 0 0;
	transition:all 0.3s;
	pointer-events:none;
	transition:all 0.3s;
	opacity:0;
	backdrop-filter:blur(4px);
}

nav.mobile-nav .mobile-nav-wrapper{
	transform:translateX(100%);
	transition:all 0.3s;
}

nav.mobile-nav.opened .mobile-nav-wrapper{
	transform:translateX(0);
}

nav.mobile-nav ul.nav{
	padding: 30px 0;
	
}

nav.mobile-nav.opened{
	opacity:1;
	pointer-events:auto;
}



nav.mobile-nav ul.nav {
	list-style: none;
	background: var(--transparent-aqua);
	width: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 5px 0 0 5px;
	flex-wrap: nowrap;
	padding: 1.5rem 0;
	box-shadow: var(--inner-glow);
}

nav.mobile-nav ul li{
	position:relative;
}

nav.mobile-nav img,
nav.mobile-nav .subtitle{
	display:none;
}

nav.mobile-nav .mobile-nav-wrapper {
	width:100%;
	max-width:320px;
	position:relative;
}

nav.mobile-nav .nav-close-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	background-color: var(--brand-light-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transform: translate(-25%,-25%);
	color: #fff;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.15),0 0 0 1px rgba(255,255,255,0.2) inset;
	cursor: pointer;
	transition:all 0.3s;
}

nav.mobile-nav .nav-close-btn:hover{
	box-shadow: 0px 1px 2px rgba(0,0,0,0.15),0 0 0 1px rgba(255,255,255,0.2) inset, 0 0 6px RGB(0, 202, 237);
}

nav.mobile-nav ul li a {
	color: #fff;
	padding: 0.5rem 1.5rem;
	display: block;
	transition: all 0.3s;
	width: 100%;
	border: none;
}

nav.mobile-nav ul a:hover{
	background-color:var(--transparent-aqua);
	box-shadow: var(--inner-glow);
}

/* expand stuff */

nav.mobile-nav ul li div.expand {
	display: flex;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
	flex: 0 0 48px;
}

nav.mobile-nav ul li div.expand.opened .wrapper:before{
	transform:scaleY(-1);
}

nav.mobile-nav ul li div.expand .wrapper{
	position: relative;
	width: 30px;
	height: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:all 0.3s;
	border-radius:50%;
}

nav.mobile-nav ul li div.expand .wrapper:before{
	content:'';
	position:absolute;
	width:13px;
	height:8px;
	background:#fff;
	clip-path:polygon(1px 0, calc(100% - 1px) 0,100% 1px, 50% 100%, 0 1px);
	transition:all 0.3s;
}

/* MOBILE BURGER */

#mobile-burger {
	display:flex;
	flex-direction: column;
	width: 44px;
	height: 44px;
	justify-content: center;
	z-index: 900;
	cursor: pointer;
	background: var(--transparent-aqua);
	border-radius: 5px;
	gap: 4px;
	padding: 8px;
	align-items: center;
	box-shadow:var(--inner-glow);
	backdrop-filter:blur(12px);
	-webkit-backdrop-filter:blur(12px);
	transition:all 0.3s;
}

#mobile-burger:hover{
	background: var(--brand-light-color);
	
}

#mobile-burger span {
	width: 100%;
	height: 3px;
	background: #fff;
	display: block;
	transition: all 0.3s;
	border-radius: 1px;
}