/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/*Alinear iconos*/
.elementor-widget .elementor-icon-list-item, .elementor-widget .elementor-icon-list-item a {
    align-items: start !important; 
}

.elementor-icon-list-item i {
   margin-top: 5px;
}

.green-txt {
	color: #2b9b1f; 
}

.elementor-sticky--effects  {
	--e-transform-transition-duration: 100ms;
	background-color: #1a2f58 !important; 
}

.pulsating-circle {
   position: absolute;
   left: 50%;
   top: 75%;
   transform: translateX(-50%) translateY(-50%);
   width: 30px;
   height: 30px;
}
.pulsating-circle:before {
   content: "";
   position: relative;
   display: block;
   width: 300%;
   height: 300%;
   box-sizing: border-box;
   margin-left: -100%;
   margin-top: -100%;
   border-radius: 45px;
   background-color: #1A2F58;
   -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
           animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle:after {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   display: block;
   width: 100%;
   height: 100%;
   background-color: white;
   border-radius: 15px;
   box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
   -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
           animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}
@-webkit-keyframes pulse-ring {
   0% {
     transform: scale(0.33);
   }
   80%, 100% {
     opacity: 0;
   }
}
 
@keyframes pulse-ring {
   0% {
     transform: scale(0.33);
   }
   80%, 100% {
     opacity: 0;
   }
}
@-webkit-keyframes pulse-dot {
   0% {
     transform: scale(0.8);
   }
   50% {
     transform: scale(1);
   }
   100% {
     transform: scale(0.8);
   }
}
@keyframes pulse-dot {
   0% {
     transform: scale(0.8);
   }
   50% {
     transform: scale(1);
   }
   100% {
     transform: scale(0.8);
  }
}
