.main-header {
	display: flex;
	width: calc(100% - 128px);
	padding: 24px 64px;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
}

.main-header .left {
	display: flex;
	width: 200px;
	height: 24px;
}

.main-header .center {
	display: flex;
	gap: 24px;
}

.main-header .center .item {
	text-decoration: none;
	color: #000824;
	font-family: Inter;
	font-size: 18px;
	font-style: 'normal';
	font-weight: 600;
	line-height: 22px; /* 122.222% */
	letter-spacing: -0.2px;
	cursor: pointer;
}

.main-header .center .active {
	border-bottom: 2px solid #000824;
}

.main-header .right {
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.main-header .right .button {
	position: relative;
	display: flex;
	padding: 4px;
	align-items: center;
	gap: 2px;
	border-radius: 12px;
	background: rgba(0, 8, 36, 0.25);
	z-index: 1;
}

.main-header .right .button .language {
	color: #000824;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px; /* 112.5% */
	letter-spacing: -0.2px;
	display: flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 22px;
	cursor: pointer;
}

.main-header .right .button .active {
	position: absolute;
	top: 4px;
	left: 52px;
	display: flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	background: #FFF;
	width: 22px;
	height: 18px;
	z-index: -1;
	transition: 0.25s left, 0.25s right;
	cursor: pointer;
}

@media (max-width: 768px) {
	.main-header {
		width: calc(100% - 48px);
		padding: 24px;
	}

	.main-header .center {
		display: none;
	}
}

