/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */

/* Slider animation homepage 


  .img-defilement {width:100px !important;
  height:100px !important; 
  margin:3px;
  border-radius:15px;}
  
.section-defile {
    display:flex;
  width:200%;
    gap:0%;
    overflow: hidden;
}

.defile-images-1 {
    white-space: nowrap;
    position: relative;
    animation: moveLeft 25s linear infinite;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.defile-images-2 {
    white-space: nowrap;
    position: relative;
    animation: moveLeft2 25s linear infinite;
}

@keyframes moveLeft2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
