
figure {
  margin: 0;
}

.absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.fog {
  position: relative;
  width: 100%;
}
.fog__container {
  position: absolute;
  height: 100%;
  width: 100%;
top:0;
left:0;
  overflow: hidden;
}
.fog__img {
  position: absolute;
  height: 100%;
  width: 300vw;
}
.fog__img--first {
  background: url("352947.png") repeat-x;
  background-size: contain;
  background-position: center;
  -webkit-animation: marquee 120s linear infinite;
          animation: marquee 120s linear infinite;
opacity: 0.6;
}
.fog__img--second {
  background: url("352948.png") repeat-x;
  background-size: contain;
  background-position: center;
  -webkit-animation: marquee 80s linear infinite;
          animation: marquee 80s linear infinite;
opacity: 0.6;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-200vw, 0, 0);
            transform: translate3d(-200vw, 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-200vw, 0, 0);
            transform: translate3d(-200vw, 0, 0);
  }
}
