:root {
  --herz: #e885aa;
  --gelb: #fed27a;
  --wagreen: #56d063;
  --hellrosa: #fad8db;
  --hellgrau: #a5a5a5;
}

/* Center Stuff
display: flex;
justify-content: center;
align-items: center;
 */

#sozialmedia_head{
	height: 5vh;
	background-color: var(--hellrosa);
	/* margin-bottom: 2vh; */
}

#icon_head{
	display:flex;
	align-items: center;
	float: right;
    height: 100%;
}

#div_icon_sozialmedia{
	margin-left: 1vw;
	margin-right: 0.2vw;
	float: right;
	background-color: var(--hellgrau);
    height: 40%;
	aspect-ratio: 1;
    width: fit-content;
	border-radius: 50%;
	padding: 0.5vh;
	transition: 0.2s;
}

#div_icon_sozialmedia:hover{
	height: 50%;
}

#div_icon_sozialmedia img{
	height: 100%;
	display: block;
}

#link_head{
	float: right;
	height: 100%;
	display: flex;
	align-items: center;
	margin-left: 1vw;
	/* justify-content: center; */
}

#link_head a{
	border-right: solid;
	border-width: 1px;
	padding:0 1vw 0 1vw;
	font-size: 1.3vh;
}

#link_head .ende{
	border-style:none;
}

#nav_logo{
	flex-basis: 30%;
	height:17vh;
	transition: .5s;
}

#benutzer_svg{
	height:100%;
	width: 67%;
	background-color: var(--hellgrau);
	border-radius: 50%;
	padding: 0.2vw;
}

#benutzer_svg g{
	transition: .5s;
	fill: white;
}

#benutzer_svg:hover g{
	fill: var(--hellrosa);
}

#nav{
	width: 100%;
	padding-top:2vh;
	margin-bottom: 2%;
	background-color: hsl(0 0% 100% / 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	position: absolute;
	/* display: none; */
	z-index: 5;
}

#nav_inner{
	font-family: MetropolisExtraLight;
	/* width:95% ; */
	display: flex;
	padding-inline: 2em;
	height:100%;
	position: relative;
}

#navbar {
	display: flex;
	gap: 1%;
  width:100%;
  position: sticky;
  z-index: 5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size:1.5vw;
  overflow: inherit;
  list-style-type:none;
  justify-content: space-between;
}

.navbarli {
	/* width: 10vw; */
	font-size: min(1.5vw,2vh);
	flex-grow: 1;
    flex-basis: 100%;
	white-space: nowrap;
}

#navlinks{
	flex-basis: 62%;
    height: 8.6vh;
	display: flex;
    align-items: center;
}

.navbara {
  display: block;
  color: black;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
  border-right-style: solid;
    border-width: 1px;
  border-color:var(--hellgrau);
}

.navbara:hover:not(#active) {
	text-decoration: none;
	color: var(--herz);
}

#active {
	color: var(--herz);
	text-decoration: none;
}

.ico{
	/* width: 5vw; */
	color: black;
	transition: 0.5s;
	flex-grow: 1;
    flex-basis: 40%;
}
.ico a {
	color: black;
}


ic {
	font-size: 3vh;
}

#nav_mob{
	background-color: hsl(0 0% 100% / 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 5;
	display: none;
	width: 100%;
	padding-top:2vh;
	margin-bottom: 2vh;
	position: absolute;
	height: 8.6vh;
	align-items: center;
}

#ico_mob{
	height: 100%;
}
.mob_div{
	height: 100%;
}

#logo_mob{
	flex-basis: 70%;
	padding-inline: 1em;
}
#ico_mob{
	flex-basis: 15%;
	height: 70%;
}
#menu_mob{
	flex: 1 1 15%;
	padding-inline: 1em;
	height: 90%;
}

#menu_svg path{
	transition: .5s;
	stroke: var(--hellgrau);
}

#menu_svg:hover path{
	stroke: var(--hellrosa);
}

#auswahl{
	display: none;
	background-color: hsl(0 0% 100% / 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	transform: scaleY(0) translateY(-100%);
	position: absolute;
	z-index: 5;
	top: calc(15.6vh - 1px);
	width: 100%;
	padding-block: 1em;
	transition: transform 0.5s;
	z-index: 6;
	border-top-style: solid;
    border-top-width: 1px;
    border-color: var(--herz);
}

#inhalt_mob{
	display: flex;
	flex-flow: column;
	gap: 1em;
}

.mob_a{
	display: block;
	color: black;
	text-align: center;
	text-decoration: none;
	transition: 0.5s;
	font-size: 1.7em;
}
.mob_a:hover:not(#active) {
	text-decoration: none;
	color: var(--herz);
}

.sticky{
	/* transition-delay: 0.3s; */
	z-index: 6 !important;
}


@media (max-aspect-ratio: 1/1) {
	.sticky{
		transition-delay: 0s;
		z-index: 7 !important;
	}
	#nav{
		display: none;
	}
	#nav_mob{
		display: flex;
	}
	#benutzer_svg{
		width: auto;
		padding: 0.5vw;
	}
	#auswahl{
		display: block;
	}
	#link_head a{
		font-size: 1.3vh;
	}
	#icon_head{
		float: left;
	}
}

