header {
	background: #CA9E67;
	position: fixed;
	width: 100%;
	z-index: 4;
}

.menu {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
	height: 105px;
}

.vertical-bar {
	border-radius: 1px;
	background-color: #fff;
	width: 2px;
	height: 70px;
}

.logo-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.logo-header-flex:first-child {
	width: 92px;
}

.logo-header-flex:last-child {
	width: 140px;
}

.mobile-menu {
	display: none;
	cursor: pointer;
}

.mobile-menu div {
	width: 32px;
	height: 2px;
	background: #fff;
	margin: 8px;
	transition: 0.3s;
}

.mobile-menu.active .line1 {
	transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
	opacity: 0;
}

.mobile-menu.active .line3 {
	transform: rotate(45deg) translate(-5px, -7px);
}

.nav-list a {
	color: #fff;
	text-decoration: none;
	font-size: 21px;
	font-weight: bold;
	line-height: 25px;
	transition: 0.3s;
}

.nav-list {
	display: flex;
	gap: 70px;
}

.nav-list a:hover {
	opacity: 0.7;
}

.nav-list {
	list-style: none;
	margin-left: 6rem;
}

.nav-list li {
	margin-left: 32px;
}

.nav-list.active {
	display: block;
	transform: translateX(0);
	display: flex;
}


@media (max-width: 1545px) {
	.nav-list a {
		font-size: 17px;
	}

	.nav-list li {
		margin: 0;
	}
}

@media (max-width: 1198px) {
	.menu {
		padding: 0px 40px;
		width: 100%;
		justify-content: space-between;
	}

	.logo-header-flex:first-child {
		width: 80px;
	}

	.logo-header-flex:last-child {
		width: 105px;
	}

	.vertical-bar {
		height: 52px;
	}

	.nav-list {
		display: none;
		position: absolute;
		top: 104px;
		right: 0;
		width: 320px;
		height: calc(100vh - 105px);
		background: #CA9E67;
		padding-top: 70px;
		padding-right: 32px;
		text-align: end;
		flex-direction: column;
		align-items: end;
		transform: translateX(100%);
		transition: transform 0.3s ease-in;
		gap: 36px;
	}

	.nav-list li {
		margin-left: 0;
		opacity: 0;
		width: 250px;
	}

	.mobile-menu {
		display: block;
		position: relative;
		z-index: 999;
	}
}

@media (max-width: 768px) {

	.logo-header-flex:last-child {
		width: 100px;
	}

	.logo-header-flex:first-child {
		width: 60px;
	}

	.vertical-bar {
		height: 45px;
	}
}


@media (max-width: 468px) {
	.menu {
		padding: 0px 20px;
	}

	.logo-header-flex:first-child {
		width: 50px;
	}

	.logo-header-flex:last-child {
		width: 80px;
	}

	.nav-list {
		top: 59px;
	}

	.menu {
		height: 61px;
	}

	.nav-list {
		height: calc(100vh - 61px);
	}

	.vertical-bar {
		height: 40px;
	}
}