.gka-wrap1 {
    width: 450px;
    height: 225px;
    position: relative;
    top: 75px;
    left: -51px;
}

.animation1 {
    width: 450px;
    height: 225px;
    background-image: url("./img/0-1-scale-1_50x.png");
    background-size: 450px 225px;
    background-repeat: no-repeat;
    animation-name: keyframes-order;
    animation-duration: 1.2s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: steps(1);
}

@keyframes keyframes-order {
    0% {
        width: 450px;
        height: 225px;
        background-image: url("./img/0-1-scale-1_50x.png");
        background-size: 450px 225px;
    }

    8.33% {
        background-image: url("./img/1-1-scale-1_50x.png");
    }

    16.67% {
        background-image: url("./img/10-1-scale-1_50x.png");
    }

    25.00% {
        background-image: url("./img/11-1-scale-1_50x.png");
    }

    33.33% {
        background-image: url("./img/2-1-scale-1_50x.png");
    }

    41.67% {
        background-image: url("./img/3-1-scale-1_50x.png");
    }

    50.00% {
        background-image: url("./img/4-1-scale-1_50x.png");
    }

    58.33% {
        background-image: url("./img/5-1-scale-1_50x.png");
    }

    66.67% {
        background-image: url("./img/6-1-scale-1_50x.png");
    }

    75.00% {
        background-image: url("./img/7-1-scale-1_50x.png");
    }

    83.33% {
        background-image: url("./img/8-1-scale-1_50x.png");
    }

    91.67%,
    100% {
        background-image: url("./img/9-1-scale-1_50x.png");
    }
}