
.shapes-oa {
    position: absolute;
    z-index: -1
}

.illustration-holder .shape-one {
    top: 15.6%;
    right: 21.2%;
    width: 18.9%
}

.illustration-holder .shape-two {
    top: 24.7%;
    right: 9.4%;
    width: 18.9%
}

.illustration-holder .shape-three {
    top: 71.7%;
    right: 1.4%;
    width: 7.1%
}

.illustration-holder .shape-four {
    top: 65%;
    right: 4.2%;
    width: 29.85%;
    z-index: 1;
    animation: jumpThree 6s infinite linear
}

.illustration-holder .shape-five {
    top: 88.8%;
    right: 47.2%;
    width: 26.1%;
    z-index: 1
}


@-webkit-keyframes jumpThree {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40% {
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

@keyframes jumpThree {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40% {
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

