header {
	cursor: pointer;
}

.menu {
	margin: 0;
	font-family: Arial, sans-serif;
	transition: background 0.3s, color 0.3s;
}

.navbar {
	background: rgba(18, 38, 58, 0.95) !important;
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	color: white;
	z-index: 1200;
	transition: backdrop-filter 0.3s ease-in-out, box-shadow 0.3s ease;
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 1200px;
}

.logo {
	line-height: 1.2;
	text-transform: uppercase;
}

.support-btn {
	background: transparent;
	border: 2px solid white;
	padding: 8px 20px;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 20px;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.support-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 10px rgba(0, 85, 160, 0.4);
}

.burger {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 25px;
	background: none;
	border: none;
	z-index: 1300;
	transition: transform 0.3s ease-in-out;
}

.burger span {
	display: block;
	width: 30px;
	height: 4px;
	background-color: white;
	border-radius: 2px;
	transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.burger.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
	position: fixed;
	top: 80px;
	right: -200%;
	height: calc(100vh - 80px);
	background: rgba(18, 38, 58, 0.95);
	color: white;
	display: flex;
	justify-content: flex-end;
	padding: 20px;
	z-index: 1100;
	transition: right 0.5s ease-in-out;
}

.menu-open {
	right: 0;
}

.menu-content {
	max-width: 400px;
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.languages {
	list-style: none;
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.languages a {
	text-decoration: none;
	color: white;
}

.menu-items {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: right;
}

.menu-items li {
	margin-bottom: 15px;
}

.menu-items a {
	text-decoration: none;
	color: white;
}

.socials {
	margin-top: 30px;
	text-align: right;
}



@media (max-width: 1024px) {
	#menu {
		font-size: 3vh;
	}

}

@media (min-width: 1025px) {

	#menu {
		font-size: 1vh;
	}

}