/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com
Description: Child theme for Hello Elementor
Author: Shahzaib
Author URI: https://example.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Custom CSS yahan likho */

/* css for global enements */

.clr-tit {
	color: #2E3289!important;
}

.beat {
  display: inline-block;
  animation: beat 2s infinite ease-in-out;
  transform-origin: center;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.10);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.10);
  }
  100% {
    transform: scale(1);
  }
}


