.arrow-container{
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.arrow-1{
  width: 50px;
  height: 50px;
  background-color:rgba(255,255,255,0.3);
  opacity: 0.5;
  border-radius: 50%;
  position: absolute;
}

.arrow-2{
	width: 30px;
	height: 30px;
	background-color:rgba(255,255,255,0.3);
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	display: table;
}

.arrow-2:before{
  width: 32px;
  height: 32px;
  content: "";
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -3px;
}

.arrow-2 i.fa{
  font-size: 30px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #333;
}

/* Custom Animate.css */

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-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;
}
