.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	backdrop-filter: blur(27px);
	-webkit-backdrop-filter: blur(27px);
	background: rgba(255, 255, 255, 0.01);
	transition: backdrop-filter 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
	backdrop-filter: blur(52px);
	-webkit-backdrop-filter: blur(52px);
	background: rgba(255, 255, 255, 0.9);
}

body:not(.home) .site-header {
	background: rgba(27, 40, 48, 0.92);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

body:not(.home) .site-header.is-scrolled {
	background: rgba(27, 40, 48, 0.98);
	backdrop-filter: blur(52px);
	-webkit-backdrop-filter: blur(52px);
}

body:not(.home) .site-header .header__nav .nav-item__label,
body:not(.home) .site-header.is-scrolled .header__nav .nav-item__label {
	color: var(--color-light);
}

body:not(.home) .site-header .header__social-icon,
body:not(.home) .site-header.is-scrolled .header__social-icon {
	color: var(--color-white);
}

body:not(.home) .site-header.is-scrolled .social-icon {
	background: rgba(255, 255, 255, 0.08);
}

body:not(.home) .site-header .header__phone,
body:not(.home) .site-header.is-scrolled .header__phone {
	color: var(--color-orange);
}

body:not(.home) .site-header .header__burger span,
body:not(.home) .site-header.is-scrolled .header__burger span {
	background-color: var(--color-light);
}

.site-header .container {
	max-width: 1700px;
}

.header__bar {
	position: relative;
	height: 70px;
	display: flex;
	align-items: center;
	padding-left: 120px;
	justify-content: space-between;
}

.header__logo-wrap {
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	padding: 12px;
	z-index: 10;
	display: flex;
	align-items: flex-start;
}

.header__logo-wrap img {
	display: block;
	width: 77px;
	height: 106px;
	object-fit: contain;
}

.header__logo-link {
	display: block;
	line-height: 0;
}

.header__logo-mobile {
	display: none;
	align-items: center;
	line-height: 0;
}

.header__logo-mobile img {
	height: 36px;
	width: auto;
}

.header__nav {
	flex: 1;
}

.header__nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.header__nav .nav-item {
	list-style: none;
}

.header__nav .nav-item__link {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	padding: 20px 16px 10px;
	text-decoration: none;
}

.header__nav .nav-item__label {
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.28px;
	color: var(--color-light);
	white-space: nowrap;
	transition: color 0.2s ease;
}

.header__nav .nav-item__underline {
	height: 3px;
	width: 0;
	background-color: var(--color-orange);
	border-radius: 30px;
	transition: width 0.25s ease;
}

.header__nav .nav-item:hover .nav-item__underline,
.header__nav .nav-item.is-active .nav-item__underline {
	width: 100%;
}

.site-header.is-scrolled .header__nav .nav-item__label {
	color: var(--color-dark);
}

.header__right {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}

.header__social {
	display: flex;
	gap: 10px;
	align-items: center;
}

.header__social-icon {
	color: var(--color-white);
}

.site-header.is-scrolled .social-icon {
	background: rgba(0, 0, 0, 0.05);
}

.site-header.is-scrolled .header__social-icon {
	color: var(--color-dark);
}

.header__phone {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 64px;
	text-decoration: none;
	color: var(--color-light);
	transition: color 0.2s ease;
}

.header__phone-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.header__phone-number {
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	white-space: nowrap;
}

.site-header.is-scrolled .header__phone {
	color: var(--color-orange);
}

.header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 4px;
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
}

.header__burger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-light);
	border-radius: 2px;
	transition: background-color 0.2s ease;
}

.site-header.is-scrolled .header__burger span {
	background-color: var(--color-dark);
}

.header__mobile {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.header__mobile.is-open {
	opacity: 1;
	pointer-events: all;
}

.header__mobile-top {
	height: 64px;
	background: #fff;
	box-shadow: 0 4px 5px rgba(55, 41, 41, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	flex-shrink: 0;
}

.header__mobile-logo {
	display: flex;
	align-items: center;
	line-height: 0;
}

.header__mobile-logo img {
	height: 33px;
	width: auto;
}

.header__mobile-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-dark);
	flex-shrink: 0;
}

.header__mobile-body {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	background: linear-gradient(160deg, #2d4e5f 0%, #1a3040 100%);
	border-radius: 0 0 8px 8px;
	padding: 0 16px;
}

.header__mobile-nav {
	flex-shrink: 0;
}

.header__mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__mobile-nav-list .menu-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__mobile-nav-list .menu-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.header__mobile-nav-list .menu-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.28px;
	color: var(--color-light);
	text-decoration: none;
	transition: color 0.2s ease;
}

.header__mobile-nav-list .menu-item a:hover,
.header__mobile-nav-list .current-menu-item a {
	color: var(--color-orange);
}

.header__mobile-contacts {
	margin-top: 94px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.header__mobile-phone {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--color-light);
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}

.header__mobile-phone svg {
	flex-shrink: 0;
}

.header__mobile-address {
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 200;
	font-size: 12px;
	line-height: 1.4;
	color: var(--color-white);
	text-align: center;
}

.header__mobile-social {
	display: flex;
	gap: 10px;
}

.social-icon--lg {
	width: 44px;
	height: 44px;
}

body.menu-is-open {
	overflow: hidden;
}

.header__lang-switcher {
	list-style: none;
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
}

.header__lang-switcher li a {
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 300;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--color-light);
	text-decoration: none;
	padding: 4px 6px;
	border-radius: 4px;
	transition: color 0.2s ease, background 0.2s ease;
}

.header__lang-switcher li a:hover,
.header__lang-switcher li.is-active a {
	color: var(--color-orange);
}

.site-header.is-scrolled .header__lang-switcher li a {
	color: var(--color-dark);
}

.site-header.is-scrolled .header__lang-switcher li.is-active a,
.site-header.is-scrolled .header__lang-switcher li a:hover {
	color: var(--color-orange);
}

body:not(.home) .site-header .header__lang-switcher li a {
	color: var(--color-light);
}

@media (max-width: 1024px) {

	.header__bar {
		height: 64px;
		padding-left: 0;
	}

	.header__logo-wrap,
	.header__nav,
	.header__right {
		display: none;
	}

	.header__logo-mobile {
		display: flex;
	}

	.header__burger {
		display: flex;
	}
}
