#animationLogo {
  z-index: -1;
  border-bottom-width: 3px;
  transition: 500ms;
  transform: translateY(-400px);
}
#animationLogo.show {
  transform: translateY(0);
}
#animationLogo > div {
  width: 150px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
#animationLogo > div > div {
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.2);
}
#animationLogo > div::before, #animationLogo > div::after {
  width: 198px;
  height: 110px;
  background-color: white;
  position: absolute;
  top: -48px;
  content: "";
  z-index: -1;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}
#animationLogo > div::before {
  left: -147px;
  transform: rotate(36deg);
}
#animationLogo > div::after {
  left: 99px;
  transform: rotate(-36deg);
}

.toggle span {
  background: #ffd700;
  width: 25px;
  height: 4px;
  position: absolute;
  transition: 0.5s;
}
.toggle span:nth-child(1) {
  transform: translateY(-7px);
  width: 15px;
  left: -12px;
}
.toggle span:nth-child(3) {
  transform: translateY(7px);
  width: 10px;
  left: -12px;
}

.toggle.active span:nth-child(2) {
  transform: translateX(10px);
  opacity: 0;
}
.toggle.active span:nth-child(1) {
  transform: translateY(-2px) rotate(45deg);
  width: 20px;
}
.toggle.active span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
  width: 20px;
}

#topmenu {
  transform: scaleY(0);
  opacity: 0;
  transition: opacity 500ms, transform 500ms;
  transform-origin: top;
  pointer-events: none;
  position: absolute;
}
#topmenu.active {
  opacity: 1;
  pointer-events: all;
  transform: scaleY(1);
}
#topmenu ul li {
  position: relative;
}
#topmenu ul li:nth-child(1) div::before {
  content: "\f658";
}
#topmenu ul li:nth-child(2) div::before {
  content: "\f095";
}
#topmenu ul li:nth-child(3) div::before {
  content: "\f27a";
}
#topmenu ul li div {
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
#topmenu ul li div::before {
  font-family: fontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  color: #ffd700;
  border-bottom: 1px solid;
}
#topmenu ul li div:hover::before {
  height: 100%;
}

/*# sourceMappingURL=topNav.css.map */
