﻿.main-menu {
	position: fixed;
	top: 0px;
	width: 100vw;
	height: 72px;
	z-index: 100;
	display: flex;
	align-items: center;
	padding-left: 48px;
	padding-right: 48px;
}

.navMenu-desktop {
	display: flex;
	position:relative;
	justify-content: flex-end;
	flex-direction: row;
	gap: 0px;
}

.menu-item {
	/*margin-right: 24px;*/
	font-family: Montserrat;
	font-weight: 200;
	font-size: 20px;
	color: white;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	display:inline-block;
	/*width:125px;*/
}

	.menu-item:is(:hover),
	.selected {
		color: white;
		border-bottom: 1px solid white; 
	}

	/*.menu-item::after {
		content: '';
		position: absolute;*/
		/*width: 100%;*/
		/*transform: scaleX(0);*/
		/*height: 1px;
		bottom: 0;
		left: 0;
		background-color: white;*/
		/*transform-origin: bottom right;*/
		/*transition: position 0.3s ease-out;
		right: 763.45px;
	}

	.menu-item:hover::after {*/
		/*transform: scaleX(1);*/
		/*transform-origin: bottom left;
		right: 700px;
	}*/

.menu-container-mobile {
	width: 100vw;
	height: 100vh;
	background-color: #193C66;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	display: flex;
	flex-direction: column;
	
	padding-left:50px;
	padding-right:50px;
	/*padding-top: 100px;*/
	/*margin-top: 72px;*/
}

.menu-container-mobile-list {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	align-items: center;
	align-content: center;
	gap: 30px;
}

.menu-container-mobile .menu-item {
	margin-right: 24px;
	font-family: Montserrat;
	font-weight: 200;
	font-size: 45px;
	color: white;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
}


.wave {
	background-image: url(/assets/icons/wave.svg);
	background-repeat-y: no-repeat;
	background-repeat-x: repeat;
	width: 100%;
	height: 10px;
	/*animation: move 2s ease;
	animation-iteration-count: infinite;
	animation-timing-function: linear;*/
	visibility: hidden;
}

	.wave.selected {
		visibility: visible;
		animation: none;
	}

	.wave.hover {
		visibility: visible;
		animation: move 2s ease;
		animation-iteration-count: infinite;
		animation-timing-function: linear;
	}


@keyframes move {
	0% {
		background-position: 0 0;
	}

	50% {
		background-position: 50% 0;
	}

	100% {
		background-position: 100% 0;
	}
}


@keyframes slideLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50px); /* Move by the width of the wave */
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.main-menu {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media only screen and (min-width: 300px) and (max-width: 991px) {
	.main-menu {
		padding-left: 20px;
		padding-right: 20px;
	}
}
