/* CSS Animation Logo*/


.inside {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
}

.logo-wrapper {
  
   /* flex: 1; */
   min-height: 400px;
   flex: 7 0 60vh;
   
}

.item_nav {
	flex: 2 0 16vh;
}

.item_adresse {
  flex: 0.7 0 1rem;

}

.logo-wrapper {
  perspective: 1000px; /* macht echtes 3D */

  display: inline-flex;
  align-items: center;

}

.logo {
  width: 350px;
  transform-origin: 38% 50%; 
  /* <- DAS ist die Achse beim Strich über dem "a"
     kann man feinjustieren */
  
  animation: logoReveal 5.2s cubic-bezier(.2,.8,.2,1) forwards;
}

.logo {
  /* animation-delay: 1.2s; */
}

@keyframes logoReveal {
  0% {
    transform: rotateY(90deg) scale(0.98);
    opacity: 0.8;
  }

  
  70% {
    transform: rotateY(-5deg) scale(1); /* leichter Overshoot */
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}







.mod_navigation ul.level_1 {
	display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.mod_navigation ul.level_1 li a {
	font: 1.91rem "Inter", Arial, sans-serif;
	color: var(--nav-color);
	font-weight: 700;
}

.adresse {
	display: flex;
    justify-content: space-between;
    /* padding-top: 6rem; */
    margin: 1.5rem 0;
    gap: 3rem;
}
