/* Nav Img Bar */
@keyframes nav-img-bar-animation {
  0% {
    width: 0%;
    margin-left: 40px;
  }

  10% {
    margin-left: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes slide-down {
  from {
    top: -30px;
  }

  to {
    top: 0;
  }
}

@keyframes typewriter {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: #f37022;
  }

  to {
    border-color: transparent;
  }
}

.nav-img-bar {
  height: 5px;
  background: #00c2ff;
  margin-top: -4px;
  /* box-shadow: 0px -2px 5px 0px #00c2ff; */
}

.nav-img-bar.collaps {
  width: 0;
}

.nav-img-bar.expand {
  animation: nav-img-bar-animation 1s;
}

/* animation-container */
.animation-container {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}