/* ----scroll to top css start ----*/
.scroll-top {
    margin-left: auto;
    margin-right: auto;
    bottom: 30px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    right: 20px;
    text-align: center;
    z-index: 9999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    background-color: #2a6249;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  @media only screen and (max-width: 767.98px) {
    .scroll-top {
      /*display: none;*/
    }
  }
  .scroll-top i {
    line-height: 30px;
    color: #fff;
    font-size: 25px;
  }
  .scroll-top.not-visible {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
  }
  .scroll-top:hover {
    background-color: #07b148;
  }
  
  /* ----scroll to top css end ----*/