/*
Theme Name:     Divi - Hijo
Theme URI:      http://www.elegantthemes.com/gallery/divi/
Description:    Añade al personalizador de Divi la opción para editar los créditos del pie de página.
Author:         Aulamedia Diseño Web
Author URI:     https://aulamedia.net
Template:       Divi
Version:        1.0
License:		GNU General Public License v2
License URI:	http://www.gnu.org/licenses/gpl-2.0.html
*//* =Estilos personalizados
------------------------------------------------------- */

.cta-menu a {
	border: 2px solid #fff;
    padding: 10px !important;
	border-radius: 25px;
    background: #ffcd02;
    color: #fff !important;
	animation-name: pulse;
animation-duration: 3000ms;
transform-origin:70% 70%;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes pulse {
0% { transform: scale(1); }
30% { transform: scale(1); }
40% { transform: scale(1.08); }
50% { transform: scale(1); }
60% { transform: scale(1); }
70% { transform: scale(1.05); }
80% { transform: scale(1); }
100% { transform: scale(1); }

}
    
.cta-menu a:hover {
	border: 2px solid #ffcd02;
    background: #ef5555;
    color: #000 !important;
    opacity: 1 !important;
	animation: none;
}