<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
    #carousel{
      width: 100%;
    }
    .carousel {
    list-style-type: none;
    padding: 5px;
    margin: 0;
    height: 100%; /* D&amp;eacute;finir la hauteur du carrousel pour remplir le conteneur */
    display: flex; /* Utiliser flexbox pour aligner les &amp;eacute;l&amp;eacute;ments en colonne */
    flex-direction: column; /* Aligner les &amp;eacute;l&amp;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 &amp;eacute;l&amp;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 &amp;eacute;l&amp;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 #24273462;
    }

    /* Ajouter une rÃ¨gle pour les &amp;eacute;l&amp;eacute;ments du carrousel survol&amp;eacute;s */
    .carousel-item:hover {
    transform: scale(1.1); /* Appliquer une transformation d'&amp;eacute;chelle pour agrandir l'&amp;eacute;l&amp;eacute;ment */
    z-index: 1; /* D&amp;eacute;finir un index Z pour s'assurer que l'&amp;eacute;l&amp;eacute;ment survol&amp;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;
  }

  /* reseau sociaux */
  .fb-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrer horizontalement */
    gap: 10px; /* Espacement entre les Ã©lÃ©ments */
    margin-top: 50px;
  }

  .fb-like {
      width: 100%;
      max-width: 50px; /* Limite la largeur maximale */
  }

  .message {
    display: none;
    color: red;
    font-weight: bold;
  }

/* traduction */
  #dika{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    }
    #dika div{
    width: auto;
    height: 25px;
    margin-top: -1px;
    } 
    #dika div img{
    height: 15px;
    width: auto;
    margin-right: 2px;
    }
    .translate select{
      font-size:0.8vw;
      width: 95%;
    }
    .VIpgJd-ZVi9od-l4eHX-hSRGPd{
      display: none;
      font-style:italic;
      font-family: 'Times New Roman', Times, serif;
      border: #000 1px;
    }

    
/* transform */

@media screen and (max-width: 785px) {
  #carousel{
    width: 95%;
  }
  .carousel-item img{
    width: 100%;
    height: auto;
    box-shadow: 2px 2px 2px 2px #000;
  }
  #dika{
    width: 90%;
  }
  #dika div{
    width: auto;
    height: 25px;
    margin-top: -1px;
    } 
  #dika div img{
    height: 60%;
    width: auto;
    margin: 5%;
    }
  #google_translate_element{
    width: 95%;
  }
  .translate select{
    font-size: 90%;
  }
  .translate span{
    display: flex;
    width: 5%;
  }
  
}

</pre></body></html>