.bgblue{
    background-color: #0E0D1E;
    width: 100%;
    text-align: center;
} /* Discart */

/* Animations*/

/* animation 05 */
#animation05{
    margin: 0 auto; /* <<< remove */
    /* For responsive devices use scale in this id ex:
    transform: scale(0.5)
    */
}

#animation05{
    width: 876px;
    height: 612px;
}
#animation05 .content{
    width: 876px;
    height: 612px;
    overflow: hidden;
    position: relative;
}
#animation05 .item{
    background-position: top left;
    background-size: 100% auto;
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
}
#animation05 .bg{
    width: 876px;
    height: 612px;
    background-image: url('img/05/bg.png');
}
#animation05 .waves{
    width: 143px;
    height: 44px;
    z-index: 10;
    top: 188px;
    left: 415px;
    overflow: hidden;
}
#animation05 .wave{
    width: 270px;
    background-repeat: repeat-x;
    background-size: auto;
}
#animation05 .wave.one{
    background-image: url('img/05/wave1.svg');
    height: 34.5px;
    left: -88px;
    animation: wave1 4s infinite linear;
}
#animation05 .wave.two{
    background-image: url('img/05/wave2.svg');
    height: 34.5px;
    top: 6px;
    left: -107px;
    animation: wave2 3s infinite linear;
    z-index: 10;
}
#animation05 .bars{
    width: 86px;
    height: 57px;  
    top: 259px;
    left: 414px;
}
#animation05 .bar{
    width: 100%;
    height: 57px;
    top: auto;
    bottom: 0;
    overflow: hidden;
    animation: bar 3s infinite linear;
}
#animation05 .bar.one{
    background-image: url('img/05/bar1.svg');
    height: 33px;
    animation-duration: 4s;
}
#animation05 .bar.two{
    background-image: url('img/05/bar2.svg');
    height: 57px;
}
#animation05 .bar.three{
    background-image: url('img/05/bar3.svg');
    height: 21px;
    animation-delay: 1s;
}
#animation05 .bar.four{
    background-image: url('img/05/bar4.svg');
    height: 45px;
    animation-duration: 5s;
}
#animation05 .arm{
    width: 200px;
    height: 200px;
    top: 283px;
    left: 522px;
    animation: arm 5s infinite linear;
}
#animation05 .arm:before{
    content: "";
    display: block;
    width: 144px;
    height: 67px;
    background: url('img/05/arm.png') no-repeat left top;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
    
}

@media (max-width: 767px){
    #animation05{
        width: 609px;
        position: relative;
        overflow: hidden;
    }
    #animation05 .content{
        position: absolute;
        top: 0;
        left: -270px;
    }
}

@keyframes wave1 {
    0% {
        left: -123px;
    }
    100% {
        left: -17px;
    }
}

@keyframes wave2 {
    0% {
        left: -107px;
    }
    100% {
        left: 0;
    }
}

@keyframes bar {
    0% {
        height: 0;
    }
    50% {
        height: 57px;
    }
    100% {
        height: 0;
    }
}

@keyframes arm {
    0% {   
        top: 277px;
        left: 517px;
        transform: rotate(7deg);
    }
    10% {
        top: 290px;
        left: 538px;
        transform: rotate(-13deg);
    }
    50% {
        top: 290px;
        left: 538px;
        transform: rotate(-13deg);
    }
    60% {   
        top: 277px;
        left: 517px;
        transform: rotate(7deg);
    }
    100% {   
        top: 277px;
        left: 517px;
        transform: rotate(7deg);
    }
}