.menu__body {
	display: none;
	position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 140;
	background-color: #fff;
}

.icon-menu {
	display: block;
	position: absolute;
	width: 48px;
	height: 100%;
	cursor: pointer;
	z-index: 5;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: calc(15px + (34 - 15) * ((100vw - 320px) / (1280 - 320)));
	margin-left: auto;
	background: transparent;
	left: 0;
	top: 0;
	padding: 20px 18px;
}

.icon-menu_active {
	padding: 16px;
}

.icon-menu__body {
	position: relative;
	width: 100%;
	height: 100%;

}

.icon-menu_active .icon-menu__body span {
	width: 18px;
}

.icon-menu__body span {
	transition: all 0.25s ease;
	left: 0;
	position: absolute;
	height: 2px;
	background-color: var(--gray-color);
	width: 18px;
}

.icon-menu__body span:first-child {
	top: 0;
}

.icon-menu__body span:last-child {
	bottom: 0;
}

.icon-menu_active span:first-child {
	transform: translate(0px, 7px) rotate(45deg);
}

.icon-menu_active span:last-child {
	transform: translate(0px, -7px) rotate(-45deg);
}

.menu__list {
	flex-direction: column;
	width: auto;
	position: relative;
}

.menu__item {
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.menu__item:hover .menu__link {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.2s ease 0s;
}

.menu__link {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 100;
	color: var(--title-color);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	white-space: nowrap;
}

.menu__link._icon {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: calc(var(--gap) / 4);
}

.menu__link._icon img {
	object-fit: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2rem;
	max-height: 2rem;
	height: 100%;
	aspect-ratio: 1;
}

.menu__item_more {
	position: relative;
}

.menu__list_more {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	z-index: 2;
	border-radius: 0 0 4px 4px;
	padding: 8px 0;

}

.menu__list_more .menu__item {
	height: 42px;
}

@media (min-width: 320px) {
	.menu__body {
		width: 100%;
	}
}

@media (min-width: 1280px) {
	.icon-menu {
		display: none;
	}

	.menu__body {
		display: flex;
		position: relative;
		left: unset;
		right: unset;
		top: unset;
		height: 100%;
	}

	.menu__list {
		padding: 0;
		display: flex;
		flex-direction: row;
		align-items: center;
		border-top: 0;
		max-width: 924px;
		overflow: hidden;
	}

	.menu__item {
		width: auto;

		height: 100%;
	}

	.menu__link {
		font-size: 14px;
		padding-left: calc(16px + (28 - 16) * ((100vw - 1280px) / (1920 - 1280)));
		padding-right: calc(16px + (28 - 16) * ((100vw - 1280px) / (1920 - 1280)));
	}

	.menu__more {
		background: #eee;
		padding: 0 6px;
	}

	.header-personal {
		height: 100%;
	}

	.menu-more__btn {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 16px;
		cursor: pointer;
	}

	.menu-more__btn span {
		display: block;
		position: relative;
		min-width: 6px;
		max-width: 6px;
		width: 100%;
		height: 6px;
		background-color: var(--gray2-color);
		border-radius: 50%;
		z-index: 3;
	}

	.menu-more__btn span::before,
	.menu-more__btn span::after {
		content: '';
		background-color: var(--gray2-color);
		position: absolute;
		min-width: 6px;
		max-width: 6px;
		width: 100%;
		height: 6px;
		left: 0;
		transition: var(--transition);
		border-radius: 50%;
	}

	.menu-more__btn span::before {
		top: -10px;
	}

	.menu-more__btn span::after {
		bottom: -10px;
	}

	.menu-more__list {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: auto;
		min-width: max-content;
		height: auto;
		background: #fff;
		border-radius: 0 0 8px 8px;
		overflow: hidden;
		padding: 10px 0;
	}

	.menu-more__list li {
		min-height: 36px;
	}
}

@media (min-width: 1920px) {
	.header__logo {
		margin-left: 80px;
	}

	.menu__list {
		max-width: unset;
	}

	.menu__link {
		padding-left: 28px;
		padding-right: 28px;
	}

	.header-personal__button {
		margin-left: 32px;
	}
}

@media (max-width: 1279px) {
	.menu__list {
		padding: 20px 0;
		background-color: #fff;
		height: calc(100vh - 182px);
		overflow-y: auto;
		margin-bottom: 0;
	}

	.menu__body {
		min-width: 100%;
		flex-direction: column;
		justify-content: space-between;
	}

	.menu__item {
		height: 54px;
		background: #fff;
	}

	.menu__link {
		padding: 0 40px;
		font-size: 28px;
		font-weight: 600;
		color: var(--gray-color);
	}

}

