.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bg-bubbles li {
	position: absolute;
	list-style: none;
	display: block;
	bottom: 50%;
	-webkit-animation: square 40s infinite;
	animation: square 40s infinite;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	left:-100px
}
.bg-bubbles li:nth-child(1) {
  bottom: 10%;
  background-image: url(../images/line-bl.png);
  width: 49px;
  height: 49px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 60s;
          animation-duration: 60s;
}
.bg-bubbles li:nth-child(2) {
  bottom: 20%;
  background-image: url(../images/line-clb.png);
  width: 33px;
  height: 33px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 60s;
          animation-duration: 60s;
}
.bg-bubbles li:nth-child(3) {
  bottom: 10%;
  margin-left: -40px;
  background-image: url(../images/line-gr.png);
  width: 26px;
  height: 26px;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-duration: 60s;
          animation-duration: 60s;
}
.bg-move {
    z-index: 2;
    position: absolute;
    bottom: 20px;
    display: block;
    bottom: 5%;
    -webkit-animation: move 3s infinite;
    animation: move 3s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    left: 60%;
}

@keyframes square {
  0% {
            transform: translateX(-30px);
			opacity: 0;
  }
  100% {
            transform: translateX(2000px) rotate(3000deg);
			opacity: 0.5;
  }
}

@keyframes jump {
  0% {
            transform: translateY(0px);
			opacity: 1;
  }
  50% {
            transform: translateY(30px);
			opacity: 1;
  }
  100% {
            transform: translateY(0px);
			opacity: 1;
  }
}
@keyframes move {
  0% {
            transform: translateX(0px);
			opacity: 1;
  }
  50% {
            transform: translateX(30px);
			opacity: 1;
			filter: brightness(1);
  }
  100% {
            transform: translateX(0px);
			opacity: 1;
			filter: brightness(1.5);
  }
}