
    #carousel{
      width: 100%;
    }
    .carousel {
    list-style-type: none;
    padding: 5px;
    margin: 0;
    height: 100%; /* D&eacute;finir la hauteur du carrousel pour remplir le conteneur */
    display: flex; /* Utiliser flexbox pour aligner les &eacute;l&eacute;ments en colonne */
    flex-direction: column; /* Aligner les &eacute;l&eacute;ments en colonne (verticalement) */
    justify-content: center;
    transition: transform 0.5s ease-in-out; /* Ajouter une transition fluide pour les animations */
    background-color: white;
    border: 1px solid;
    /* border-color: grey; */
    }

    .carousel-item {
    flex: 1; /* Faire en sorte que chaque &eacute;l&eacute;ment occupe tout l'espace disponible */
    display: flex; /* Utiliser flexbox pour aligner le texte au centre */
    justify-content: center; /* Centrer horizontalement le texte */
    align-items: center; /* Centrer verticalement le texte */
    /*background-color: white;  Ajouter un fond de couleur pour les slides */
    width: 100%;
    height: auto;
    margin-bottom: 20%;
    }

    .carousel-item {
    /* ... style existant pour les &eacute;l&eacute;ments du carrousel ... */
    transition: transform 0.5s ease-in-out; /* Ajouter une transition fluide pour les animations */
    }

    .carousel-item img{
      width: 100%;
      height: auto;
      box-shadow: 2px 2px 2px 2px #000;
    }

    /* Ajouter une règle pour les &eacute;l&eacute;ments du carrousel survol&eacute;s */
    .carousel-item:hover {
    transform: scale(1.1); /* Appliquer une transformation d'&eacute;chelle pour agrandir l'&eacute;l&eacute;ment */
    z-index: 1; /* D&eacute;finir un index Z pour s'assurer que l'&eacute;l&eacute;ment survol&eacute; s'affiche au-dessus des autres */
    }

    .popup {
    position: fixed;
    /* left: 0;
    top: 0; */
    background-color: #fff;
    border: 1px solid #000;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.824);
    }


    /* CSS pour la modal */
.modal {
    /* display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); */

    display: none;
    position: fixed;
    z-index: 1;
    left: 49.4%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68.2%;
    height: 100%;
    background-color: rgba(24, 28, 21, 0.746);
  }
  
  .modal-content {
    margin: 5% auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
  }
  
  .close {
    color: #fff;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 4px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
/* transform */

@media screen and (max-width: 785px) {
  .carousel-item img{
    width: 100%;
    height: auto;
    box-shadow: 2px 2px 2px 2px #000;
  }
  
}

#dika{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	}
	#dika div{
	width: auto;
	height: 25px;
	margin-top: -1px;
	} 
 	#dika div img{
	height: 20px;
	width: auto;
	margin-right: 5px;
	}
    .translate select{
        font-size:1vw;
    }