/*
 Theme Name:     Hello Elementor Child
 Theme URI:      https://trustedmarketingservices.com
 Description:    Hello Elementor Child Theme
 Author:         Trusted Marketing Services
 Author URI:     https://trustedmarketingservices.com
 Template:       hello-elementor
 Version:        1.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */

.cursor-image {
    position: fixed;
    width:  50px;
    height:  50px;

    z-index: 100;

    background-image: url('/wp-content/uploads/2020/12/ladybug-logo.png');
    background-position: center;
    background-size: contain;

    animation: butterfly 3s infinite linear;
}

@keyframes butterfly {
    0% {
        transform:  translate(0, 0) rotate(0);
    }

    40% {
        transform:  translate(0, -12px) rotate(-20deg);
    }

    100% {
        transform:  translate(0, 0) rotate(0);
    }
}