/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.page-id-659 #seprate-footer-clr{
	background-image: url('https://elsevierjournalsonline.com/wp-content/uploads/2024/09/seprate-footer.webp');
}
/* Quick Shining effect on Elementor buttons */
.elementor-button {
  position: relative !important;
  overflow: hidden !important;
}

.elementor-button::after {
  content: "" !important;
  position: absolute !important;
  top: 0;
  left: -100%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 1.2s linear infinite; /* speed increased from 2s → 1s */
}

@keyframes shine {
  0% {
    left: -100%;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}


