/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Target the <li> elements within the checklist and apply a transition for the transform property */
.checklist li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Change the transform and box-shadow on hover to create the lift effect */
.checklist li:hover {
  transform: translateY(-1px); /* This moves the li up by 5 pixels */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* This adds a shadow that gives the sense of depth */
}
