/*
 Theme Name:   CRI Theme
 Theme URI:    https://cri1149.fr/
 Description:  Custom theme to extend Bricks.
 Author:       MLCOM
 Author URI:   https://mlcom.fr/
 Template:     bricks
 Version:      1.0
 Text Domain:  bricks
*/

/* Disable WPML Notif Front Dev */
.otgs-development-site-front-end {
    display: none !important;
}



/************** ANIMATIONS **************/

/* Parallax Effect */
@keyframes parallax-up {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes parallax-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0%);
  }
}

@keyframes parallax-fadein-up {
  from {
    opacity: 0;
    transform: translateY(0%);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes parallax-fadein-down {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
/* End Parallax Effect */