html {
  scroll-behavior: smooth;
}
.main-top-scroll {
  z-index: 2;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #212529;
  text-align: left;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  position: relative;
  bottom: 15px;
  transform: translateX(-20px);
  animation: MoveUpDown 3s linear infinite;
}
.image-scroll {
    display: inline-block;
  width: 40px;
}
  .image-scroll img {
    /*display: block;
    width: 100%;*/
    width: 55px;
    height: 55px;
    box-shadow: 0px 0px 5px #333;
    border-radius: 26px;
    padding: 10px;
    background: rgba(0,0,0,.5);
    display: block;
    margin: 0 auto;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
  }
#content {
  /*bottom: 50px;*/
  top: 40px;/*доработать скролл*/
  position: relative;
}

@keyframes MoveUpDown {
  0% {
    bottom: 5px;
  }
  50% {
    bottom: 35px;
  }
  100% {
    bottom: 5px;
  }
}
@media (min-width: 577px) {
  .main-top-scroll {
    left: 48%;
  }
}
@media (min-width: 1280px) {
  #content {
    top: 25px;/*доработать скролл*/
  }
}
@media (min-width: 1320px) {
  .main-top-scroll {
    left: 47%;
  }
  #content {
    top: 30px;/*доработать скролл*/
  }
}
@media (min-width: 1501px) {
    #content {
    top: 0px;/*доработать скролл*/
  }
}
@media (min-width: 1801px) {
    #content {
    top: -20px;/*доработать скролл*/
  }
}
@media (max-width: 576px) {
  #content {
    top: -140px;
  }
}
@media (max-width: 466px) {
  .main-top-scroll {
    /*display: none; */
  }
}