@charset "UTF-8";
/* CSS Document */
* {
	margin: 0;
	box-sizing: border-box;
}
.headerCenter{
	display: flex;
	justify-content: center;
	position:fixed;
	top: 0;
	left:0;
	width:100%;
	padding: 20px 10px 0px 10px;
	z-index: 5;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	transition: 0.3s ease-in-out;
}
header {
	top:0;
	padding: 10px 15px 10px 15px;
	width:1000px;
	display: flex;
	justify-content: space-between;
	z-index: 6;
	border: rgba(255, 255, 255, 0.5) solid 0.5px;
	border-radius: 20px;
	max-height: 75px;
	background-color: rgb(0, 0, 0, 0.75);
	transition: 0.6s ease-in-out;
}
.burger-menu {
	width:100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: -10px -15px -10px -15px;
}
.burger-menu ul {
	list-style: none;
	display: flex;
	height:100%;
}
.burger-menu a {
	padding: 0px 20px;
	display:flex;
	align-items: center;
	height: 100%;
	width: 100%;
	position: relative;
	text-decoration: none;
	color: white;
	font-family: 'Elza', sans-serif;
	font-weight: 500;
	font-size: 1.3em;
}
.burger-menu li {
	display:grid;
	place-items: center;
	border-left: rgba(255, 255, 255, 0.5) solid 0.5px;
}
.burger-menu li:hover{
	background-color: rgba(255, 255, 255, 0.3);
}
.burger-menu li:last-child:hover{
	background-color: #ffffff00;
}
/*.burger-menu a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom:-3px;
	width: 0%;
	height:3px;
	background-color: white;
	transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
	transform: translateX(-50%);
}
.burger-menu a:hover::after {
	width: 100%;
	left:50%;
}*/
#burger-toggle {
	display: none;
}
#noTrademark {
	z-index: 7;
	position: absolute;
}
#Trademark {
	z-index: 8;
}
.logobox {
	height: 55px;
}
.logobox img {
	display: block;
	height: 100%;
	color: #FFFFFF;
	margin: auto auto;
}
#headerSocials{
	display: flex;
	justify-content: center;
}
#headerSocials a{
	padding: 0px 0px 0px 20px;
}
#headerSocials a:last-child{
	padding-right: 20px;
}
#headerSocials img{
	display:block;
	height: 40px;
}
#headerSocials img:hover{
	transform:scale(1.3);
	transition:0.3s;
}
@media (max-width: 1000px) {
	#noTrademark {
		z-index: 8;
	}
	#Trademark img {
		z-index: 8;
	}
	#burger-toggle {
		position: absolute;
		opacity: 0;
		z-index: 8;
	}
	header {
		width:100%;
		justify-content: space-between;
	}
	.burger-icon {
		z-index: 8;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 55px;
		min-width: 55px;
	}
	.bar {
		display: block;
		width: 25px;
		height: 2px;
		margin: 4px;
		background-color: white;
		transition: transform 0.3s ease;
	}
	#burger-toggle:checked ~ .burger-icon .bar:nth-child(1) {
		transform: rotate(-45deg);
		position: absolute;
	}
	#burger-toggle:checked ~ .burger-icon .bar:nth-child(2) {
		transform: rotate(45deg);
		position: absolute;
	}
	.burger-menu {
		z-index: 6;
		/*height:max-content;*/
		padding: 75px 0px 0px 0px;
		width: calc(100% - 20px);
		margin-top: 20px;
		transition: 0.4s ease-in-out;
		text-align: center;
		display: block;
		position:absolute;
		top:-1000px;
		border: rgba(255, 255, 255, 0.5) solid 0.5px;
		border-radius: 20px;
		background-color: rgb(0, 0, 0, 0.65);
	}
	#burger-toggle:checked ~ .burger-menu {
		transform:translateY(1000px);
	}
	.burger-menu ul {
		margin: 0px 0px;
		padding: 0px;
		display: block;
	}
	.burger-menu li {
		margin: 0px 0px;
		border-bottom: rgba(255, 255, 255, 0.5) solid 0.5px;
		border-left: white solid 0px;
	}
	.burger-menu li:nth-child(1){
		border-top: rgba(255, 255, 255, 0.5) solid 0.5px;
	}
	.burger-menu li:last-child{
		border-bottom: rgba(255, 255, 255, 0.0) solid 0px;
	}
	.burger-menu li a {
		padding: 20px 0px 20px 30px;
		width: 100%;
		height: 100%;
		font-size: 1.75em;
		font-weight: 600;
		display:flex;
		justify-content: start;
		font-weight: 500;
		font-size: 1.6em;
	}
	/*.burger-menu a::after{
		bottom: -6px;
		height: 6px;
	}*/
	#headerSocials{
		width: 100%;
		display: flex;
		justify-content: start;
		padding-left:25px;
	}
	#headerSocials a{
		padding: 15px 10px 15px 10px;
		width:max-content;
	}
	#headerSocials a:last-child{
		padding-right: 10px;
	}
}
@media (max-width:340px) {
	#noTrademark {
		opacity: 0;
	}
	.burger-menu li a{
		font-size: 2em;
	}
}