.imagerotate0 {
    position: absolute;
    z-index: 20;
}

.imagerotate1 {
    position: absolute;
    z-index: 19;
    animation: spin 30s linear infinite;
}

.imagerotate2 {
    position: absolute;
    z-index: 18;
    animation: spin3 30s linear infinite;
}

.imagerotate3 {
    position: absolute;
    z-index: 17;
    animation: spin 30s linear infinite;
}

.imagerotate4 {
    position: absolute;
    z-index: 21;
    animation: nudge 5s linear infinite alternate;
}

.imagerotate5 {
    position: absolute;
    z-index: 21;
    animation: nudge1 5s linear infinite alternate;
}

.imagerotate6 {
    position: absolute;
    z-index: 21;
    animation:  yy2 5s linear infinite alternate;
}

.imagerotate7 {
    position: absolute;
    top: 10px;
    left: 20%;
    z-index: 16;
    animation: spin3 30s linear infinite;
}

.imagerotate8 {
    position: absolute;
    top: 10px;
    right: 20%;
    z-index: 16;
    animation: spin 30s linear infinite;
}


@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }



@-moz-keyframes spin3 {
  0% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin3 {
  0% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin3 {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes nudge {
  0%, 100% {
    transform: translate(0, 0); }
  50% {
    transform: translate(10px, 0); }
  80% {
    transform: translate(-10px, 0); } }

@keyframes nudge1 {
  0%, 100% {
    transform: translate(0, 0); }
  50% {
    transform: translate(0, 5px); }
  80% {
    transform: translate(0, -1px); } }

@keyframes yy2 {
  0%, 100% {
    transform: translate(0, 0); }
  50% {
    transform: translate(5px, 0); }
  80% {
    transform: translate(2px, 0); } }


@media (max-width: 992px) {
    .imagerotate4,
    .imagerotate5,
    .imagerotate6,
    .imagerotate7, 
    .imagerotate8 {
        display:none;
    }
}