/* Global Colors */

  
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 35px; 
    bottom: 35px;
    z-index: 999;
    background-color: purple;
    width: 50px;
    height: 50px;
    border-radius: 40px;
    transition: all 0.4s;
  }


 
  .scroll-topAgro {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 105px; 
    bottom: 35px;
    z-index: 999;
    background-color: #2A7025 !important;
    width: 50px;
    height: 50px;
    border-radius: 40px;
    transition: all 0.4s;
    
  }
  .scroll-topHerris{
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 105px; 
    bottom: 35px;
    z-index: 999;
    background-color: #F67828 !important;
    width: 50px;
    height: 50px;
    border-radius: 40px;
    transition: all 0.4s;
    
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
    outline: none;
  }
  
  .scroll-top:hover {
    background-color: #111D57;
    color: #ffffff;
    outline: none;
    text-decoration: none;
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
