.burger {
  opacity: 0; /* Standardmäßig ausgeblendet */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
	position: fixed;
    z-index: -1;
    top: 50px;
    right: 3vw;
	transition: 1s ease-in-out;
}
.nav-fixed .burger {
  opacity: 1;
	z-index: 10;	
}

.burger span {
      background-color: white;
    min-height: 2px;
    min-width: 37px;
    margin-bottom: 7px;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
	border: 1px solid rgba(0,0,0,0.5);
}



nav.nav-fixed {
  position: sticky;
  top: 50px;
	mix-blend-mode: normal;
}
nav.nav-fixed .burger.active span:first-of-type{
	transform: rotate(45deg);
}
nav.nav-fixed .burger.active span:nth-of-type(2){
	opacity: 0;
}
nav.nav-fixed .burger.active span:last-of-type{
	transform: translateY(-22px) rotate(315deg);
}
.main-nav-ul{
	list-style: none;
    width: fit-content;
	transition: 1s ease-in-out;
}


nav.nav-fixed .main-nav-ul{
	right: 0;
    top: 0;
	opacity: 0;
}
nav.nav-fixed .main-nav-ul.active{
    position: fixed;
	transform: scale(1);
    height: calc(100vh - 100px);
    width: 33.33vw;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 0;
    display: block;
	opacity: 1;
	background: #3444a1;
}
nav.nav-fixed .main-nav-ul.not-active{
	position: fixed;
    transform: scale(1);
    height: calc(100vh - 100px);
    width: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 0;
    display: block;
    opacity: 1;
    background:
}
nav.nav-fixed .main-nav-ul.not-active:before{
	
}

nav.nav-fixed .main-nav-ul.active:before{
	content: "";
    width: 200%;
    height: 100%;
    position: fixed !important;
    left: -200%;
    top: 0;
    background: rgba(52, 68, 161, 0.5);
}
nav.nav-fixed .main-nav-ul.active li{
	padding: 10px 5px;
}


.main-nav-element{
	color: white;
    font-family: "cool", sans-serif;
    font-weight: 100;
    letter-spacing: 0;
}
.main-nav-element a{
	padding: 10px 20px;
	font-size: 16px;
	line-height: 1.2;
	position: relative;
}
.main-nav-element a:hover{
	color: #F08760;
}
.main-nav-element a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #F08760;
    top: 50%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.main-nav-element a:hover::before {
    transform: scaleX(1);
}
@media screen and (min-width: 992px){
	.main-nav-element a{
		font-size: 24px;
	}
	.nav-fixed:has(.burger.active) .main-nav-element a{
		font-size: 60px;
		line-height: 1.2;
	}
	nav ul{
		transform: translateX(calc(50vw - 50%));
	}
	nav.nav-fixed ul{
		transform: translateX(calc(97vw - 100%));
	}
}
@media screen and (max-width: 568px){
	.main-nav-ul{
		margin: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
}