body{
  background: #263238;
}

.arrow-container{
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}

.arrow-1{
  width: 50px;
  height: 50px;
  background: #00BCD4;
  opacity: 0.5;
  border-radius: 50%;
  position: absolute;
}

.arrow-2{
  width: 30px;
  height: 30px;
  background: #00BCD4;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: table;
}

.arrow-2:before{
  width: 26px;
  height: 26px;
  content: "";
  border: 1px solid #006064;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
}

.arrow-2 i.fa{
  position: absolute;
  color: #006064;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}


/* Custom Animate.css */

.animated.bounceInUp {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
          animation-delay: 1s;
}

.animated.bounceOutUp {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  animation-delay: 0s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.4, .4, .4);
            transform: scale3d(.4, .4, .4);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.4, .4, .4);
            transform: scale3d(.4, .4, .4);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}