/*
Theme Name: Highland Capital
Author: Orcawebs
Description: Your description goes here
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

.image_pop {
  animation: floatUpDown 3s ease-in-out infinite;
  will-change: transform;
}

.image_pop:hover {
  animation-play-state: paused;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-40px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}


.image_pop-1 {
  animation: heartBeat 1.5s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}