/**
 * Theme Name:     Marina Waves Real Estate
 * Author:         Unique Eyes
 * Template:       hello-elementor
 * Text Domain:	   marina-waves-real-estate
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

.phoneBtn:before {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    content: "";
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
    animation: circle-pop 3s linear infinite;
}

.phoneBtn:after {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    content: "";
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
	animation: circle-pop2 3s linear infinite;
}

@keyframes circle-pop {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes circle-pop {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes circle-pop2 {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes circle-pop2 {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}