

/* Main Navigation */

.blob-nav {
  opacity: 0.6;
  height:100%;
  padding: 20px;
  -webkit-filter: url("#shadowed-goo");
  filter: url("#shadowed-goo");
}

.blob-nav:hover{
  opacity: 1;
} 

.nav-item {
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
}

.nav-item:hover {
  background-color: rgb(11, 81, 81);
}

/*
.nav-item:hover i {
  /*-webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  transform: rotate(360deg);


}
*/



.toggle {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  z-index: 2002;
}

.toggle:hover {
  -webkit-animation: bounce 1s cubic-bezier(0, .42, .42, 1);
  animation: bounce 1s cubic-bezier(0, .42, .42, 1);
}

/*efecto cuando abres*/
.nav-item,
.toggle,
.wobble {
  position: absolute;
  bottom: 35px;
  left: 50%;
  text-align: center;
  background-color: hsl(0, 0%, 0%);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .2s cubic-bezier(0,.42,.42,1);
  -moz-transition: all .2s cubic-bezier(0,.42,.42,1);
  -o-transition: all .2s cubic-bezier(0,.42,.42,1);
  transition: all .2s cubic-bezier(0,.42,.42,1);
}

.nav-item i {
  line-height: 50px;
}

.toggle i {
  line-height: 80px;
}
/* Wobble effect & Slideout nav */

.wobble {
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
}

/* Slide-out */

nav .slide-out:nth-child(2) {
    -webkit-transform: translate(90px, -20px) scale(1.1);
    transform: translate(90px, -20px) scale(1.1);
  }
  
  nav .slide-out:nth-child(3) {
    -webkit-transform: translate(160px, -40px)scale(1.1);
    transform: translate(160px, -20px)scale(1.1);
  }
  
  nav .slide-out:nth-child(1) {
    -webkit-transform: translate(-90px, -20px) scale(1.1);
    transform: translate(-90px, -20px) scale(1.1);
  }
  
  nav .slide-out:nth-child(4) {
    transform: translate(-160px, -20px)scale(1.1);
  }
  /* Bounce */
/* Bounce */

@-webkit-keyframes bounce {
  50% {
    -webkit-transform: scale(1.1);
  }
  30% {
    -webkit-transform: scale(0.95);
  }
}

@keyframes bounce {
  50% {
    transform: scale(1.1);
  }
  30% {
    transform: scale(0.95);
  }
}
/* Wobble effect */

.ripple:nth-child(1) {
  -webkit-animation: wobble-1 1s ease-in-out;
  animation: wobble-1 1s ease-in-out;
}

.ripple:nth-child(2) {
  -webkit-animation: wobble-2 1s linear;
  animation: wobble-2 1s linear;
}
/* First blob */


@-webkit-keyframes wobble-1 {
  10% {
    -webkit-transform: translate(-1px, 2px) scale(1.2);
  }
  40% {
    -webkit-transform: translate(2px, -2px) scale(1.2);
  }
  100% {
    -webkit-transform: translate(0px, 0px) scale(1);
  }
}
/* Second blob */

@-webkit-keyframes wobble-2 {
  20% {
    -webkit-transform: translate(-3px, 3px) scale(1.08);
  }
  100% {
    -webkit-transform: translate(0px, 0px) scale(1);
  }
}

@keyframes wobble-1 {
  10% {
    transform: translate(-1px, 2px) scale(1.2);
  }
  40% {
    transform: translate(2px, -2px) scale(1.2);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
/* Second blob */

@keyframes wobble-2 {
  20% {
    transform: translate(-3px, 3px) scale(1.08);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}



/* Hamburger icon & Animation */

.hamburger {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  -webkit-transition: -webkit-transform 200ms;
  transition: transform 200ms;
}

.hamburger-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}

.hamburger-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hamburger-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0);
}

.cross-left {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.cross-hide {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.cross-right {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.cred {
  font-size: 8pt;
  color: #ffffff;
  ;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 25%;
  left: 0;
  right: 0;
}

.cred:hover {
  color: #b4d455;
}

.colorW {

    color: #ffffff;

  }


  