/* Burger Menu */
.icon-1, .icon-2, .icon-3 {
    top: 50%;
    position: absolute;
    /* position: sticky; */
    width: 7vw;
    height: 5px;
    background-color: white;
    transition: all 400ms cubic-bezier(.84,.06,.52,1.8);
}

.icon-1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
}

.icon-3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}
.icon-2 {
  /* margin-top: 10%;
  margin-bottom: 10%; */
}

.hamburger-icon {
  height: 5vw;
  width: 7vw;
  display: none;
  /* position: absolute; */
  position: sticky;
  float: right;
  top: 3%;
  right: 4%;
  /* z-index: 1000; */
  cursor: pointer;

  transition: all 0.2s ease-in-out;
  /* background: rgba(255,255,255,0.2); */
}

.icon-1.a {
  transform: rotate(40deg);
}
.icon-3.b {
  transform: rotate(-40deg);
}
.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

@keyframes slideIn {
  0% {
    width: 0%;
    // transform: scale(.3);
    opacity: 0;
  }

  100% {
    width: 50%;
    // transform:scale(1);
    opacity: 1;
  }
}

nav {
  background: #033ea6;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  z-index: 10;
  opacity: 0;
  transition: all 600ms cubic-bezier(.62,.04,.3,1.56);
 transition-delay: 100ms;
 font-size:7vw;
 font-family: Azonix;
 text-align: center;
 padding-top: 30vh;
 text-decoration-color: white;
 text-shadow: 0px 5px 5px  black !important;
 color: white;
}

 nav.show {
   width: 70%;
   opacity: 1;
}
nav a{
  text-decoration: none;
  color: white;
  font-family: Azonix;
  line-height: 10vw;
  /* box-shadow: 0px 0px 7px 1px #0402f0 ; */
  /* border-radius: 7px; */

}

.dark-blue {
  /* position: absolute; */
  top: 0;
  left: 0;
  background: #64B5F6;
  height: 100%;
  width: 0%;
  transition: all 500ms cubic-bezier(.62,.04,.3,1.8);
  transition-delay: 50ms;
  z-index: 5;
  opacity: 0;
  position: fixed;

}

.dark-blue.slide {
  width: 50%;
  opacity:0;
}

@keyframes shotup {
  0% {
    transform: translateY(300%) ;
    opacity: 0;
  }
  90% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0%) ;
    opacity: 1;
  }
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  h1 {
    font-size: 70px;
     animation: shotup 600ms ease-in-out;
    animation-delay: 300ms;
  }
}
