/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Thème enfant Hello Elementor, personnalisé par Jean Levatic
Author: Jean Levatic
Author URI: https://jlevatic.fr
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
*/

@import url("../hello-elementor/style.css");

/* Ajoutez vos styles personnalisés ci-dessous */

.hidden {
	display:none;
}

body {
     overflow-x: hidden !important;
}

#conteneurPhoto {
  display: flex;
  overflow: hidden;
  white-space: nowrap;  
    
}

#defilement, #clone {
  display: inline-flex;
  animation: defilement 80s linear infinite;
  align-items: center;
    
}

#conteneurPhoto img {
  
  max-width: 150px !important;
  max-height: 70px !important;
  margin-right: 100px !important;
  opacity: 0.7 !important;
  object-fit: contain !important;
}

@keyframes defilement {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width:500px) {
#conteneurPhoto img {
  max-height: 40px !important;
  margin-right: 50px !important;
}
    }

