/*
Theme Name: Divi Child Theme
Version: 1.0
Description: Simple Child Theme By Timages
Author: Timages
Template: Divi
Author URL: https://timages.net
*/
 
/*------- Theme Customizations------- */


/*------------- Ken Burns Effect --------- */
   
   .kb-zoomout .et_pb_slide .et_parallax_bg {
	  animation: zoomout 10s forwards;
	 -ms-animation: zoomout 10s forwards;
	 -webkit-animation: zoomout 10s forwards;
	 -0-animation: zoomout 10s forwards;
	 -moz-animation: zoomout 10s forwards;
   
   }
   
   
   .kb-zoomout .et_parallax_bg {
	  animation: zoomout 30s forwards;
	 -ms-animation: zoomout 30s forwards;
	 -webkit-animation: zoomout 30s forwards;
	 -0-animation: zoomout 30s forwards;
	 -moz-animation: zoomout 30s forwards;
   
   }
   
   
   @keyframes zoomout{
   0% {
	   -ms-transform: scale3d(1.5, 1.5, 1.5) translate3d(-0px, 0px, 0px);
	   -webkit-transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
	   -o-transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
	   -moz-transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
	   transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
	   animation-timing-function: linear;
   }
   
   
   100% {
	   -ms-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
	   -webkit-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
	   -o-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
	   -moz-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
	   transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
   
   }
   }