.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: block;
  width: 38px;
  height: 38px;
  background: var(--Main2);
  border-radius: 4px;
  transition: .2s;
  display: none;
  z-index: 10;

  svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  &:hover {
    box-shadow: 0 1px 0 0 #ac8b64;
  }
}