.header-content, .container {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: var(--container-width);
}
.header {
	background: #000000;
}
.header-mobile-only {
	display: none;
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	width: 100%;
}
.header-top {
	height: 32px;
	font-size: 14px;
}
.header-top a:hover {
	text-decoration: underline;
}
.header__social {
	display: flex;
	gap: 18px;
}
.header__social a {
	display: flex;
	align-items: center;
}
.header-nav {
	background: #141414;
	background: linear-gradient(180deg, #141414 0%, #080808 100%);
	height: 64px;
	border-bottom: 2px solid #1A1A1A;
}
.header__logo {
	display: flex;
	margin-right: 16px;
	align-items: center;
}
	.header__logo img {
		height: 80%;
		width: auto;
	}
.header__main {
	display: flex;
	height: 100%;
}
#header__hamburger, #header__close-btn {
	display: none;
	padding: 16px;
}
#header__hamburger svg, #header__close-btn svg {
	height: 24px;
	width: 24px;
}
.header-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 100%;
	margin: 0;
	z-index: 1000;
}
.header-nav ul li {
	list-style-type: none;
}
.header-nav ul li .header-nav__link {
	height: 37px;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	transition-duration: 200ms;
	padding: 0.5rem 1rem;
	border-radius: 0.375rem;
}
.header-nav ul li .header-nav__link:hover {
	background-color: rgba(255, 255, 255, 0.09);
}
.header-nav ul li > a, .header-nav ul li > button {
	display: flex;
	color: #ffffff;
	fill: #ffffff;
	align-items: center;
	height: 100%;
	font-size: 18px;
	padding-left: 14px;
	padding-right: 14px;
}
.header-nav ul li > a:hover, .header-nav ul li > button:hover {
	text-decoration: none;
}
@media (max-width: 902px) {
	.header-content {
		padding: 0 8px;
	}
}
@media (max-width: 602px) {
	.header__main {
		justify-content: space-between;
		width: 100%;
	}
	.header-mobile-only {
		display: block;
	}
	#header__hamburger {
		display: block;
	}
	body.menu-open #header__close-btn {
		display: block;
		z-index: 1001;
		position: fixed;
		top: 12px;
		right: 12px;
	}
	.header-nav ul {
		display: none;
	}
	body.menu-open .header-nav ul {
		position: fixed;
		display: flex;
		z-index: 1000;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: #000000;
		padding: 64px 0 0;
		flex-direction: column;
		text-align: center;
	}
	body.menu-open .header-nav ul li {
		height: initial;
		border: none;
	}
	body.menu-open .header-nav ul li > a, body.menu-open .header-nav ul li > button {
		display: block;
		height: initial;
		margin-top: 24px;
		font-size: 24px;
		text-align: center;
		width: 100%;
	}
	body.menu-open .header-nav ul li > a .arrow, body.menu-open .header-nav ul li > button .arrow {
		display: none;
	}
	body.menu-open .header-nav ul li .dropdown-content {
		display: block;
		position: initial;
		border: none;
		transform: translate(0);
		left: 0;
	}
	body.menu-open .header-nav ul li .dropdown-content > a, body.menu-open .header-nav ul li .dropdown-content > button {
		font-size: 16px;
		border: none;
	}
}
