.header {
	display: flex;
	background-color: black;
	color: white;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 2001;
	height: 12.5vh;

	transition: height 0.3s ease-in-out;
}

.navbar {
	flex: 1;
}

.navbar-list {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: calc(1vw + 2rem);
	font-size: calc(1rem + 0.05vw);
	height: 100%;
}

.navbar-list-item {
	display: flex;
	align-items: center;
	text-transform: uppercase;
}
.navbar-list-item a {
	position: relative;
}

.navbar-list-item a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 0.1em;
	background-color: rgb(2, 189, 2);
	opacity: 0;
	transition: all 300ms, transform 300ms;
}

.navbar-list-item.active a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.1em;
	background-color: rgb(2, 189, 2);
	opacity: 1;
	/* transition: all 300ms, transform 300ms; */
}

.navbar-list-item a:hover::after {
	opacity: 1;
	width: 100%;
}

.header-logo {
	display: flex;

	align-items: center;
}

.space {
	flex: 1;
}

.nav-button {
	display: none;
	cursor: pointer;
	margin: 0px 10px;
}

.header-logo-wrapper {
	height: 100%;
}

.header-logo-image {
	height: 100%;
}

.navbar-wrapper {
	opacity: 0;
}

.nav-button-close {
	display: none;
}

.nav-button-close-wrapper {
	display: flex;
	justify-content: right;
}

#google_translate_element {
	position: fixed;
	top: 0;
	right: 0;
	/* z-index: 100; */
}

@media only screen and (max-width: 1076px) {
	.nav-button {
		display: block;
		background: none;
		border: none;
	}

	#google_translate_element {
		/* margin: 20px; */
		/* display: block; */
		position: relative;
	}

	.nav-button-close {
		display: flex;
		justify-content: right;

		width: calc(0.3vw + 60px);

		cursor: pointer;
		background-color: transparent;
		border: none;
		padding: 10px 15px;
	}
	.nav-button-close img {
		width: 100%;
	}

	.navbar {
		position: fixed;
		top: 0;
		left: -120%;
		height: 100%;
		width: 300px;
		display: block;
		background-color: white;
		z-index: 1000;

		transition: left 1s ease;
	}
	.navbar a {
		font-size: 1.4rem;
	}
	.navbar-list {
		display: block;
	}
	.navbar.active {
		left: 0;
	}
	.navbar-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;

		background-color: rgba(40, 40, 40, 0.9);
		opacity: 0;

		z-index: 999;
		pointer-events: none;
		transition: opacity 0.4s ease-in-out;
	}

	.navbar-wrapper.active {
		opacity: 1;
		/* display: block; */

		pointer-events: all;
	}

	.navbar-list-item {
		padding: 10px 15px;
		border-bottom: 1px solid rgba(129, 129, 129, 0.2);
	}
	.navbar a {
		color: black;
	}

	.navbar-list-item a::after {
		background-color: transparent;
	}

	.navbar-list-item.active a::after {
		background-color: transparent;
	}
	.navbar-list-item.active a {
		color: rgb(2, 189, 2);
	}
	.header-logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 100%;
	}
	.space {
		display: none;
	}
}
