    .hero-banner-one .illustration-container {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
        max-width: 46%;
    }

    .hero-banner-five .illustration-container {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        max-width: 46%;
        animation: jumpTwo 5s infinite linear;
    }

    @-webkit-keyframes jumpTwo {
        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 jumpTwo {
        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);
        }
    }