/*
Theme Name: Hetch Child
Template:   hetch
Theme URI: https://1.envato.market/hetch-wp
Description: Windows and Doors WordPress Theme
Author: AwaikenThemes
Author URI: https://awaikenthemes.com/
Version: 1.0.0
Text Domain: hetch-child
*/


/* Custom code */

/* Css for the image animation for product section */
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.image-animation {
  animation: upDown 2s ease-in-out infinite;
}
@keyframes leftRight{
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.image-animation-left-right {
  animation: leftRight 2s ease-in-out infinite;
}