#menu_toggle
{
	position: absolute;
	display: none;
	background: none;
	border: none;
	height: 20px;
	width: 35px;
	right: 25px;
	cursor: pointer;
}

#menu_toggle span
{
	margin: auto;
}

#menu_toggle span,
#menu_toggle span::before,
#menu_toggle span::after
{
	display: block;
	background-color: var(--verdeLS);
	border: none;
	height: 4px;
	width: 100%;
}

#menu_toggle span::before
{
	content: "";
	margin-top: -8px;
}

#menu_toggle span::after
{
	content: '';
	margin-top: 12px;
}

header menu,
header ul
{
	display: flex;
	gap: var(--gap);
}

header menu
{
	/* height: 105px; */
	align-items: center;
	text-transform: uppercase;
}

header menu li
{
	border: 10px transparent;
	height: 90px;
	line-height: 90px;
	white-space: nowrap;
	position: relative;
}

header menu li.active::after
{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 5px;
	background-color: var(--verdeLS);
}

header menu li:last-child
{
	display: none;
}

header.open
{
	position: fixed;
	height: 100vh;
	z-index: 10;
	width: 100vw;
	flex-direction: column;
	align-items: baseline;
	padding-top: 10px;
	justify-content: flex-start;
	z-index: 25;
}

header.open nav,
header.open ul
{
	display: flex;
}

header.open nav
{
	width: 100%;
}

header.open menu
{
	flex-direction: column;
	height: auto;
	align-items: flex-start;
	margin-top: 35px;
	border-bottom: 1px solid white;
	width: 100%;
	padding-bottom: 35px;
	gap: 30px;
}

header.open menu li
{
	padding: 0;
}

header.open menu li.active
{
	border-bottom: 3px solid #FFFFFF;
}

header.open ul
{
	width: 70%;
	margin: 50px auto;
	justify-content: space-around;
	font-size: 24px;
}

header.open #menu_toggle span::before
{
	margin-top: 16px;
	transform: rotate(405deg);
}

header.open #menu_toggle span
{
	height: 0;
}

header.open #menu_toggle span::after
{
	margin-top: -4px;
	transform: rotate(-405deg);
}

@media (max-width: 1250px)
{
	header
	{
		height: 75px;
		padding: 20px;
		font-size: 18px;
	}

	header #logo img
	{
		height: 50px;
	}

	header nav,
	header ul
	{
		display: none;
	}

	header menu li
	{
		height: 15px;
		line-height: 15px;
	}

	header menu li.active::after
	{
		bottom: -15px;
	}

	#menu_toggle
	{
		display: flex;
	}

	#language_toggle
	{
		display: block;
		position: absolute;
		right: 100px;
		top: 25px;
	}
}

@media (max-width: 800px)
{
	header menu li:last-child
	{
		display: initial;
	}
}
