.scrollTop { position: fixed; cursor: pointer; right: 10px; bottom: 60px; opacity:0.5; display: none; z-index: 999999; display:none!important;}
.scrollTop:hover { opacity:1; }
.scrollBottom, .scrollMidsection{cursor: pointer;height: auto; vertical-align: middle; z-index:99999; position:relative; float:left;margin:-4% 0 0 29% !important; }




@bg: #2d2d37; // Dark blue
@primary: #fd6b21; // Orange

body { background: @bg;}


.arrow {
  text-align: center;
  margin:0% 0;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}