/*--------------------------------------------------------------
# Header 6 (Figma)
--------------------------------------------------------------*/

.site-header {
	color: #000;
	background: #fff;
}

.site-header__inner {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1280px;
	min-height: 110px;
	margin: 0 auto;
	padding: 24px 64px;
}

.site-header__brand {
	flex: 1 1 auto;
	min-width: 0;
}

.site-header__title,
.site-header__brand .custom-logo-link {
	display: inline-block;
	color: #000;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 56px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -1.68px;
	text-decoration: none;
	word-break: break-word;
}

.site-header__brand .custom-logo-link img {
	display: block;
	width: auto;
	max-height: 62px;
	height: auto;
}

.site-header__nav {
	flex: none;
}

.site-header__menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__menu a {
	display: inline-block;
	color: #000;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.08px;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	white-space: nowrap;
}

.site-header__menu a:hover,
.site-header__menu a:focus,
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a {
	opacity: 0.7;
}

@media (max-width: 1279px) {
	.site-header__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		min-height: 131px;
		padding: 24px;
	}

	.site-header__brand {
		flex: none;
		width: 100%;
	}

	.site-header__title,
	.site-header__brand .custom-logo-link {
		font-size: 40px;
		letter-spacing: -0.8px;
	}

	.site-header__menu {
		gap: 24px;
	}
}

@media print {
	.site-header {
		display: none;
	}
}
