/**
Theme Name: Astra Child
Author: Wasyl
Author URI: https://uranusadvertising.com
Description: Astra child theme.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/


.photorotateUpDown {
  animation: photorotateUpDown 2s infinite;
}

@keyframes photorotateUpDown {
    0%, 100% {
        transform: rotate(-3deg);
    }
    33% {
        transform: rotate(3deg);
    }
    66% {
        transform: rotate(-3deg);
    }
}

.photoOpacityChange {
  animation: photoOpacityChange 2s infinite;
}

@keyframes photoOpacityChange {
  0%, 100% { opacity: 1; }
  33% { opacity: 1; }
  50% { opacity: 0.3; }
  66% { opacity: 1; }
}