@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    65% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, -0px);
    }
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes swing {
    20% {
        transform: scale(1);
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg)scale(1.2);
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg)scale(1.2);
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg)scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

.swing {
    /* transform-origin: top center; */
    animation-name: swing;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes swing01 {
    20% {
        transform: scale(1);
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg)scale(1.2);
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg)scale(1.2);
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg)scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

.swing01 {
    /* transform-origin: top center; */
    animation-name: swing01;
    animation-duration: 1.3s;
    animation-delay: 1.3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/*# sourceMappingURL=maps/style.css.map */