| 1 |
@keyframes elementor-animation-pulse { |
| 2 |
25% { |
| 3 |
transform: scale(1.1); |
| 4 |
} |
| 5 |
75% { |
| 6 |
transform: scale(0.9); |
| 7 |
} |
| 8 |
} |
| 9 |
.elementor-animation-pulse:active, |
| 10 |
.elementor-animation-pulse:focus, |
| 11 |
.elementor-animation-pulse:hover { |
| 12 |
animation-name: elementor-animation-pulse; |
| 13 |
animation-duration: 1s; |
| 14 |
animation-timing-function: linear; |
| 15 |
animation-iteration-count: infinite; |
| 16 |
} |
| 17 |
|