#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: #FFFFFF;
	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: calc(var(--gap) / 2);
	color: #FFFFFF;
	font-family: "Gotham-Medium";
}

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

header menu li
{
	border: 10px transparent;
	height: var(--headerHeight);
	line-height: var(--headerHeight);
	white-space: nowrap;
	position: relative;
}

header menu li:last-of-type  a{
	border-radius: var(--radius);
	border: 1px solid #FFFFFF;
	color: #FFFFFF !important;
	font-size: inherit !important;
	padding: 3px 15px;
}

header.open menu li:last-of-type a {
	border: 1px solid #000000;
	color: #000000 !important;
}

header menu li:hover
{
	/* color: var(--verdeLS); */
}

header menu li.active
{
	/* color: var(--verdeLS); */
}

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 menu li a
{
	/* padding-left: 17px; */
}

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;
	color: black;
	background-color: white;
}

header.open nav,
header.open ul,
header.open ul.social
{
	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;
	color: inherit;
}

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;
	color: inherit;
}

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

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

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

header #logo img
{
	height: 60px;
}

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

	header #logo img
	{
		height: 50px;
	}

	header nav,
	header ul,
	header ul.social
	{
		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;
	}
} */
