/**
 * Theme Name:      CreativityDS Child Theme
 * Theme URI:       https://www.elegantthemes.com/gallery/divi/
 * Description:     A child theme for Divi 5 - Created by Creativity Design Studio LLC
 * Author:          Creativity Design Studio LLC
 * Author URI:      https://www.CreativityDS.com/
 * Template:         Divi
 * Version:         5.0.0
 * Text Domain:     creativityds-child-theme
 * License:         GPL2
 * License URI:     https://www.gnu.org/licenses/gpl-2.0.html
 */
  
 
/* ---------------------- Theme customization starts here ---------------------- */

/* BACKDROP BLUR */
.bblur {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ZOOM EFFECT */
.zoomkbslider {
  animation: kbsl 60s infinite;
}

@keyframes kbsl {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ANIMATE GRADIENT */
.animate-gradient {
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* SHOW DESKTOP MENU ON PHONE */
@media (max-width: 980px) {
  .pa-open-mobile-menu .et_pb_menu__menu {
    display: flex !important;
  }
  .pa-open-mobile-menu .et_mobile_nav_menu {
    display: none !important;
  }
}