/*
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------- */

/* Inline Buttons
.inline-buttons .et_pb_button_module_wrapper {
    display: inline-block;
	border-right: solid black 1px;
    padding-right: 10px;
    margin-right: 10px;
}

.inline-buttons .et_pb_button_1_wrapper {
    border-right: solid black 0px !important;
    padding-right: 0px !important;
    margin-right: 0px !important;
}

.center-inline-buttons {
    text-align: center !important;
}*/


/*------------- 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);
   
   }
   }