/* ============================================
Header — шапка, меню, логотип (Monoro)
============================================ */

/* Site Header - Start */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background: var(--white);
	border-bottom: 1px solid var(--border);
	z-index: 100;
}

.site-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	height: 100%;
	padding: 0 var(--container-indent);
}

.header-menu {
	display: flex;
	align-items: center;
}
.header-menu.header-menu-left {
	justify-content: flex-start;
	flex: 1;
}
.header-menu.header-menu-right {
	justify-content: flex-end;
	flex: 1;
}

.header-menu .menu {
	margin: 0;
	padding: 0;
	gap: 40px;
}
.header-menu .menu li {
	list-style: none;
}
.header-menu .menu a {
	color: var(--primary);
	transition: opacity 0.3s ease;
}
.header-menu .menu a:hover {
	opacity: 0.6;
}

.header-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	z-index: 1;
}
.header-logo-text {
	font-family: var(--font-family-2);
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--primary);
}
img.header-logo-img {
	width: 205px;
}

.site-header .side-menu-call.mob {
	flex-direction: column;
	gap: 5px;
	width: 24px;
	height: 16px;
	cursor: pointer;
}
.site-header .side-menu-call.mob .menu-line {
	width: 100%;
	height: 1px;
	background: var(--primary);
}
@media (max-width: 1680px) {
	img.header-logo-img {
		width: 160px;
	}
}
@media (max-width: 1279px) {
	.header-logo-text {
		font-size: 18px;
		line-height: 22px;
	}
	.site-header .side-menu-call.mob {
		display: flex;
	}
	img.header-logo-img {
		width: 140px;
	}
}
/* Site Header - End */
