section .next, section .top {
	position: absolute;
	bottom: 60px;
	left: 50%;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
}

section .next span, section .top span{
  position: absolute;
  top: 5;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #800;
  border-bottom: 1px solid #800;
  box-sizing: border-box;
}

section .next span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section .top span {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* Arrow & Hover Animation */
#more-arrows a {
	position: absolute;
	bottom: 60px;
	left: 50%;
	z-index: 2;
	width: 75px;
    height: 65px;
  
  &:hover {
    
    polygon {
      fill: #222;
      transition: all .2s ease-out;

      &.arrow-bottom {
        transform: translateY(-18px);
      }

      &.arrow-top {
        transform: translateY(18px);
      }
      
    }
  
  }
  
}

polygon {
  fill: #888;
  transition: all .2s ease-out;
    
  &.arrow-middle {
	  opacity: 0.75;
	}

	&.arrow-top {
	  opacity: 0.5
	}
	 
}