.scroll-to-top {
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    height: 2.5rem;
    width: 2.5rem;
    background: #1252ae;
    border-radius: 0.25rem;
    text-align: center;
    line-height: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    display: none;
    z-index: 10;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}
 
 .scroll-icon {
    color: #fff !important;
 }
 
 .scroll-to-top:hover {
    background-color: #ff8e2b;
 }
  @media (max-width: 30rem) {
    .scroll-to-top {
      bottom: 0.938rem;
      right: 0.938rem;
    }
  }

  @media(min-width:62rem){
    #fixed{
      height: 31.25rem;
      position: sticky;
      float: right;
      top: 2.5rem;
      bottom: 3.75rem; 
    }
  }
