/*Navigation Header*/
.header {
  grid-area: header;
  width: 100vw;
  height: 110px;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #33332f;
  border-bottom: solid #fff 1px;
  position: fixed;
  top: 0;
  z-index: 997;
}

/* 01 LOGO MENU STYLES */
.nav_logo {
  top: 0;
  left: 0;
  width: 210px;
  height: 100%;
}

.nav_portfolio {
  display: inline-block;
  line-height: 48px;
  margin-top: 18px;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 4em;
  animation: nav_portfolio 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 4800ms;
  animation-fill-mode: backwards;
}

@keyframes nav_portfolio {
  0% {
    opacity: 0;
    transform: translateY(-180%);
  }
  10% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
}

.nav_portfolio:hover {
  color: #a6465f;
  transition: 0.3s ease-in-out;
}

.nav_portfolio:hover::before {
  display: none;
}

.nav_timon {
  font-weight: 400;
  font-size: 1.54em;
  color: #fff;
  animation: nav_timon 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 4800ms;
  animation-fill-mode: backwards;
}

@keyframes nav_timon {
  0% {
    size: 0.5;
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0);
  }
}

.nav_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  z-index: 99;
  height: 100%;
}

.nav_wrap .nav_toggler {
  pointer-events: none;
  opacity: 0;
}

.nav_wrap .nav_hamburger {
  pointer-events: none;
  opacity: 0;
}

.nav_content {
  display: flex;
  justify-self: center;
  align-items: center;
  justify-content: space-between;
  width: 950px;
  height: 100%;
}

.nav_wrap ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 100%;
  animation: nav_ul 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 5300ms;
  animation-fill-mode: backwards;
}

@keyframes nav_ul {
  0% {
    scale: 50%;
    opacity: 0;
  }

  100% {
    scale: 100%;
  }
}

.nav_content li {
  margin: 0;
  padding: 0;
}

.nav_content li {
  list-style: none;
  margin-left: 3em;
  font-size: 1rem;
}

.nav_content a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.nav_content a::before {
  content: "";
  display: block;
  height: 1px;
  background: #a6465f;
  position: absolute;
  bottom: -0.1em;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition: transform ease-in-out 250ms;
}

.nav_content a:hover::before {
  transform: scale(1, 1);
}

.link_arbeiten {
  border: 1px solid #fff;
  padding: 3px 5px;
}

.link_arbeiten:hover {
  border: 1px solid #a6465f;
  padding: 8px 5px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.555);
}

.link_arbeiten:hover::before {
  display: none;
}

.nav_content a:hover {
  color: #a6465f;
}

@media (max-width: 970px) {
  .nav_wrap {
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  .navigtion {
    justify-content: space-between;
  }

  .nav_logo {
    margin-left: 25px;
  }
  .nav_wrap {
    margin-right: 25px;
  }

  .header {
    height: 50px;
  }

  .nav_logo {
    top: 0;
    left: 0;
    width: 255px;
    display: flex;
    align-items: baseline;
    height: 100%;
    pointer-events: none;
  }
  .nav_portfolio {
    margin-top: 3px;
    margin-right: 4px;
    font-family: "Bebas Neue", cursive;
    font-weight: normal;
    font-size: 2.3em;
    color: #fff;
    text-decoration: none;
  }

  .nav_portfolio:hover {
    color: #fff;
  }

  .nav_timon {
    font-weight: 400;
    font-size: 1em;
    color: #fff;
  }
}

@media (max-width: 799px) {
  /* 03 MOBIL NO MENU STYLES */

  .nav_menu a:hover {
    background: none;
  }
}
