.l-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 24px 20px;
	z-index: 30001;
}

.l-header__inner {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	max-width: 1200px;
	margin: 0 auto;
}

.l-header-logo {
	display: flex;
	align-items: center;
	width: 117px;
	transition: all 0.6s ease-in-out;
}

.l-header.is-sticky .l-header-logo {
	opacity: 0;
	visibility: hidden;
}

.l-header-logo>a {
	width: 100%;
}

.l-header-logo>a img {
	display: block;
	width: 100%;
}

.l-header-body {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 48px 0 auto;
	padding: 4px 16px;
	background-color: rgb(65 65 65 / 80%);
	backdrop-filter: blur(12px);
	border-radius: 40px;
	transition: all 0.6s ease-in-out;
}

.l-header.is-sticky .l-header-body {
	margin-right: 0;
}

.l-header-body__symbol {
	display: flex;
	align-items: center;
	width: 0;
	margin-right: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease-in-out;
}

.l-header.is-sticky .l-header-body__symbol {
	width: 40px;
	margin-right: 8px;
	opacity: 1;
	visibility: visible;
}

.l-header-body__symbol img {
	width: 100%;
}

.l-header-body__head-button {
	display: none;
}

.l-header-nav__menu {
	display: flex;
	gap: 8px;
}

.l-header-nav__item {
	cursor: pointer;
}

.l-header-nav__wrap {
	display: flex;
	gap: 8px;
	padding: 8px 10px;
	background-color: transparent;
	border-radius: 40px;
	transition: all 0.6s ease-in-out;
}

.l-header-nav__label {
	display: block;
	padding: 8px 10px;
	background-color: transparent;
	border-radius: 40px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	transition: all 0.6s ease-in-out;
}

.l-header-nav__item--has .l-header-nav__label {
	padding: 0;
	border-radius: 0;
}

.l-header-nav__arrow {
	display: flex;
	align-items: center;
	width: 8px;
}

.l-header-nav__arrow::after {
	content: '';
	width: 100%;
	height: 4px;
	background-color: #fff;
	clip-path: polygon(0 0, 2px 0, 50% calc(100% - 2px), calc(100% - 2px) 0, 100% 0, 50% 100%);
	transition: all 0.6s ease-in-out;
}

.l-header-nav__submenu {
	position: absolute;
	left: auto;
	top: calc(100% + 10px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: fit-content;
	padding: 16px;
	background-color: #f3f3f3;
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease-in-out;
}

.l-header-nav__submenu-item>a {
	font-weight: 700;
	white-space: nowrap;
}

@media (any-hover: hover) {
	a.l-header-nav__label:hover {
		background-color: #1a1b1d;
		opacity: 1;
	}

	.l-header-nav__item--has:hover .l-header-nav__wrap {
		background-color: #1a1b1d;
	}

	.l-header-nav__item--has:hover .l-header-nav__label {
		background-color: transparent;
	}

	.l-header-nav__item--has:hover .l-header-nav__arrow::after {
		transform: rotate(180deg);
	}

	.l-header-nav__item--has:hover .l-header-nav__submenu {
		opacity: 1;
		visibility: visible;
	}

	.l-header-nav__submenu-item>a:hover {
		text-decoration: underline;
		opacity: 1;
	}
}

.l-header-nav-contact {
	display: none;
}

.l-header-contact {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 18px 24px;
	background-color: #cd421d;
	border-radius: 100px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	transition: background-color 0.5s ease-in-out;
}

@media (any-hover: hover) {
	.l-header-contact:hover {
		background-color: #898a8a;
		opacity: 1;
	}
}

@media screen and (max-width: 1199px) {
	.l-header {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.l-header-logo {
		width: 86px;
	}

	.l-header-body {
		margin: 0;
		padding: 0;
		background-color: transparent;
		backdrop-filter: none;
		border-radius: 0;
	}

	.l-header-body__head {
		position: relative;
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 4px 20px;
		background-color: rgb(65 65 65 / 80%);
		backdrop-filter: blur(12px);
		border-radius: 40px;
		z-index: 2;
	}

	.l-header.is-sticky .l-header-body__symbol {
		width: 32px;
		margin: 0 8px 0 -10px;
	}

	.l-header-body__head-button {
		display: block;
		font-weight: 700;
		line-height: 1;
		color: #fff;
		cursor: pointer;
	}

	.l-header-nav {
		-webkit-overflow-scrolling: touch;
		overflow: hidden auto;
		scrollbar-width: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		padding: 0;
		background: url('../../img/bg-menu-mobile.jpg') no-repeat center/cover;
		visibility: hidden;
		opacity: 0;
		transform: translateX(-100vw);
		transition: all 0.3s;
		z-index: 1;
	}

	.is-menu-open {
		overflow: hidden;
	}

	.is-menu-open .l-header-nav {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.l-header-nav__inner {
		padding: 72px 40px;
	}

	.l-header-nav__menu {
		flex-direction: column;
		gap: 30px;
		margin-top: 60px;
	}

	.l-header-nav__wrap {
		width: 100%;
		justify-content: space-between;
		padding: 0;
	}

	.l-header-nav__label {
		padding: 0;
		font-size: 24px;
		line-height: 1.2;
	}

	.l-header-nav__arrow {
		justify-content: flex-end;
		width: 32px;
	}

	.l-header-nav__arrow::after {
		width: 12px;
		height: 6px;
	}

	.l-header-nav__arrow.is-submenu-open::after {
		transform: rotate(180deg);
	}

	.l-header-nav__submenu {
		position: static;
		display: none;
		width: 100%;
		padding: 20px 0;
		background-color: transparent;
		color: #fff;
		opacity: 1;
		visibility: visible;
		transition: none;
	}

	.l-header-nav__submenu-item+.l-header-nav__submenu-item {
		margin-top: 16px;
	}

	.l-header-nav__submenu-item>a {
		font-size: 18px;
		font-weight: 400;
	}

	.l-header-nav-contact {
		display: block;
		margin-top: 30px;
		font-size: 24px;
		font-weight: 500;
		line-height: 1.2;
		color: #fff;
	}

	.l-header-contact {
		display: none;
	}
}