.cloud-01 {
    top: 5%;
    position: absolute;
    animation: run01 linear 40s infinite;
    -webkit-animation: run01 linear 40s infinite;
    -moz-animation: run01 linear 40s infinite;
    -o-animation: run01 linear 40s infinite;
    -ms-animation: run01 linear 40s infinite;
    z-index: 1;
}

@keyframes run01 {
    0% {
        left: 100%;
    }
    100% {
        left: -70%;
    }
}

@-moz-keyframes run01 {
    0% {
        left: 100%;
    }
    100% {
        left: -70%;
    }
}

@-webkit-keyframes run01 {
    0% {
        left: 100%;
    }
    100% {
        left: -70%;
    }
}

@-o-keyframes run01 {
    0% {
        left: 100%;
    }
    100% {
        left: -70%;
    }
}

@-ms-keyframes run01 {
    0% {
        left: 100%;
    }
    100% {
        left: -70%;
    }
}
