.header__burger {
	cursor: pointer;
	display: flex;
	align-items: center;
	position: relative;

}

.header__burger svg {
	margin-right: 20px;
}

/* .header__burger.open {
	cursor: default;
} */

.header-menu-fade-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--fade-wrapper-bg);
	display: none;
}
.header-menu-fade-wrapper_animated {
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-cond);
}
.header-menu-fade-wrapper_animated.header-menu-fade-wrapper_shown {
	opacity: 1;
	visibility: visible;
}
.header__menu {
	position: fixed;
	background-color: #fff;
	color: #000;
	transform: translateX(-100%);
	transition: transform .3s ease;
	height: 100vh;
	padding: 20px 48px;
	top: 0;
	max-width: 544px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	/* margin-top: -15px; */
}

.header__menu a,
.header__menu p,
.header__menu li,
.header__menu span {
	color: #000;
}

.header__menu.open {
	transform: translateX(0);
	overflow: hidden;
	overflow-y: auto;
	overflow-x: hidden;
}
.header__menu.open::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.25);
	border-color: transparent;
}
.header__menu.open::-webkit-scrollbar {
	width: 6px;
}

.header__menu-control {
	position: absolute;
	top: 20px;
	left: 48px;
	right: 48px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__menu-control + div {
	padding-top: 72px;
}

.header__menu-control #_close {
	cursor: pointer;
}

.header__menu-list {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	/* text-transform: uppercase; */

	margin-bottom: 20px;
}

.header__menu-list a {
	text-transform: initial !important;
}

.header__menu-list_adaptive {
	flex-direction: row;
	gap: 0 48px;
}
.header__menu-sub-list {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.header__menu-list:last-child {
	margin-bottom: 0;
}

.header__menu-list_large {
	font-family: Mulish, sans-serif;
	font-size: 32px;
	line-height: 28px;
	font-weight: 300;
	line-height: 1.1em;
	text-transform: none;
	margin-bottom: 0 !important;
}

.header__menu-bottom .header__menu-list_large {
	font-size: 24px;
	line-height: 24px;
}

.header__menu-list_medium {
	font-family: Mulish, sans-serif;
	font-size: 32px;
	line-height: 28px;
	font-weight: 300;
	text-transform: none;
	margin-bottom: 0;
}

.header__menu-list.bold a {
	font-weight: 700;
}

.header__menu-list a {
	position: relative;
	margin-bottom: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: .3s ease;
	max-width: fit-content;
}
.header__menu-list_large a,
.header__menu-list_medium a {
	padding-top: 8px;
	padding-bottom: 8px;
}
.header__menu-list a:hover {
	/* font-weight: 700; */
	padding-left: 40px;
	text-decoration: none;
}

.header__menu-list a:hover::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);

	display: block;
	width: 17px;
	height: 1px;
	background: #000;
}

.header__menu-list_large a:hover,
.header__menu-list_medium a:hover {
	opacity: .5;
	/* font-weight: 400; */
	padding-left: 0;
	text-decoration: none;
}

.header__menu-list_large a:hover::before,
.header__menu-list_medium a:hover::before {
	content: none;
}


.header__menu-list a:last-child {
	margin-bottom: 0;
}


.header__menu-bottom {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0px 48px;
	line-height: 20px;
}

.header__menu-bottom > div {
	flex: 1;
}

.header__menu-bottom .header__menu-list {
	margin-bottom: 24px;
}

.header__menu-bottom .header__menu-list:last-child {
	margin-bottom: 0;
}

.header__menu-bottom .header__menu-sub-list {
	margin-bottom: 40px;
}

.header__menu-bottom .header__menu-sub-list:last-child {
	margin-bottom: 0;
}

.header__menu::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, .2);
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 20px;
}

.header__menu::-webkit-scrollbar {
	width: 6px;
}

.header__menu::-webkit-scrollbar-track {
	background: #000000;
	border-radius: 20px;
}

@-moz-document url-prefix() {
	.header__menu.open {
		scrollbar-width: none;
	}
}

@media (min-height: 980px) {
	.header__menu-list_adaptive {
		flex-direction: column;
	}
}
@media (max-width: 991px) {
	.header__burger {
		margin-right: 10px;
	}
	#_logo {
		width: 124px;
		height: 14px;
	}
	.header__menu-control + div {
		padding-top: 48px;
	}
	.header__menu-list_large {
		font-size: 28px;
		line-height: 28px;
	}
	.header__menu-list_medium {
		font-size: 28px;
		line-height: 28px;
	}
}


@media (max-width: 767px) {
	.header__menu {
		top: 75px;
		position: fixed;
		bottom: 0;
		height: auto;
		padding: 0 24px 48px 24px;
		max-width: 100%;
		gap: 24px;
	}
	.header__menu-control {
		display: none;
	}
	.header__menu-control + div {
		padding-top: 0;
	}
	.header__menu.open::-webkit-scrollbar {
		width: 4px;
	}
	.header__menu-list_adaptive {
		flex-direction: column;
	}
	.header__menu-list_large {
		font-size: 24px;
		line-height: 24px;
		font-weight: 200;
	}
	.header__menu-list_medium {
		font-weight: 200;
		font-size: 24px;
		line-height: 24px;
	}
	.header__menu-top .header__menu-list {
		font-weight: 300;
	}
	.header__menu-top .header__menu-list_large {
		font-size: 20px;
		line-height: 24px;
	}
	.header__menu-bottom .header__menu-list .header__menu-sub-list {
		display: none;
	}
	.header__menu-bottom > div {
		flex-basis: 100%;
	}
	.header__menu-middle {
		padding: 40px 0;
	}
	.header__menu-list a {
		padding-top: 7px;
		padding-bottom: 7px;
	}
}

@media (max-width: 560px) {
	.header__menu-list {
		width: 100%;
	}
}
@media (max-height: 920px) {
	
.header__menu-top {
	flex: 1;
}
}

.header__menu-list .accent-add {
	color: green;
}

.header__menu-list .accent {
	color: var(--color-accent);
}


.header__menu-list_adaptive {
	display: flex;
	flex-direction: column;
}