/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*--------------------
 Animation Logo
 --------------------*/
.middle-site-logo {
  animation-duration: 2s;
  animation-name: slidedown;
}

@keyframes slidedown {
  from {
    margin-top: -200px;
  }
  to {
    margin-top: 0px;
  }
}

/*--------------------
 Animation Menu Left
 --------------------*/
.left-menu {
  animation-duration: 3s;
  animation-name: leftIn;
}

@keyframes leftIn {
  from {
    opacity: 0;
	left: -50px;
  }
  to {
    opacity: 1;
	left: 0;
  }
}

/*--------------------
 Animation Menu Right
 --------------------*/
.right-menu {
  animation-duration: 3s;
  animation-name: rightIn;
}

@keyframes rightIn {
  from {
    opacity: 0;
	right: -50px;
  }
  to {
    opacity: 1;
	right: 0;
  }
}