@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-roll {
	animation-name: roll;
	animation-duration: 120s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-direction: normal;
	animation-play-state: running;

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c6c8ca+0,ffffff+15&amp;0.5+0,0+12 */
	background: -moz-radial-gradient(center, ellipse cover,  rgba(198,200,202,0.5) 0%, rgba(244,244,244,0) 12%, rgba(255,255,255,0) 15%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(198,200,202,0.5)), color-stop(12%,rgba(244,244,244,0)), color-stop(15%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(198,200,202,0.5) 0%,rgba(244,244,244,0) 12%,rgba(255,255,255,0) 15%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  rgba(198,200,202,0.5) 0%,rgba(244,244,244,0) 12%,rgba(255,255,255,0) 15%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  rgba(198,200,202,0.5) 0%,rgba(244,244,244,0) 12%,rgba(255,255,255,0) 15%); /* IE10+ */
	background: radial-gradient(ellipse at center,  rgba(198,200,202,0.5) 0%,rgba(244,244,244,0) 12%,rgba(255,255,255,0) 15%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80c6c8ca', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}
.animate-roll:hover {
	animation-play-state: paused;
}




@keyframes walk {
  0% {
    transform: translateX(-55%);
  }
  100% {
    transform: translateX(0%);
  }
}
.animate-walk {
    position: absolute;
    overflow: hidden;
    width: 200vw;
    max-height: calc(100vh - 200px);
    min-height: 50vh;
    opacity: 1;
    bottom: 0;
    z-index: 300;
}
.animate-walk img {
    position: absolute;
    top: 12%;
    animation-name: walk;
    animation-duration: 60s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate-reverse;
    animation-play-state: running;
}
.animate-walk img:nth-child(2) {
    top: 6%;
    animation-name: walk;
    animation-duration: 40s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-play-state: running;
}
.animate-walk img:nth-child(3) {
    top: 3%;
    animation-name: walk;
    animation-duration: 30s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-play-state: running;
}

/*
video#bgvid { 
    position: absolute;
    display: none;
    top: 70%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    opacity: .1;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url() no-repeat;
    background-size: cover; 
}*/