

  .body {
    overflow-x: auto;
  }

  .nb-prestataire {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ceci s'assure que le texte et les boutons soient centrés verticalement. */
  }

  .bouton-choix-presta-label {
      display: flex; 
      gap: 5px; /* Un petit espace entre les boutons. */
  }

  .choix {
    padding: 5px 10px;
    background-color: white; 
    font-size: 15px;
    border: 2px solid var(--red);
    border-radius : 5px;
    margin-right : 10px;
    color: var(--red);
    cursor: pointer;
  }

  .choix.presta {
    border: 2px solid var(--orange);
    color: var(--orange);
  }

  .choix.presta.selected {
    background-color: var(--orange-light);
  }

  .choix.selected {
    background-color: var(--red-light);
  }

  .choix:hover {
    background-color: var(--red-light);
  }

  .choix.presta:hover {
    background-color: var(--orange-light);
  }

  
  .valeurs {
    width : calc(100% - 20px);
    margin: 0px 10px;
    margin-bottom: 0px;
    border-color : 1px solid grey;
    font-size : 13px;
    display: flex;
    height : 27px;
  }
  
  .valeurs a {
    position: relative;
  }

  .valeurs a:hover::after {
    width : 180px;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    top: 30px; /* Positionne l'info-bulle au-dessus du badge */
    left: 50px; /* Centre l'info-bulle horizontalement */
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 2px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 11px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  .labels a:hover::after {
    width : 59px !important;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    top: 30px; /* Positionne l'info-bulle au-dessus du badge */
    left: 50px; /* Centre l'info-bulle horizontalement */
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 2px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 11px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  .sujets a:hover::after {
    width : 80px !important;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    top: 30px; /* Positionne l'info-bulle au-dessus du badge */
    left: 50px; /* Centre l'info-bulle horizontalement */
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 2px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 11px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }


  .nom a i{
    position: relative;
  }

  .nom a i:hover::after {
    width : 97px;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    top: 30px; /* Positionne l'info-bulle au-dessus du badge */
    left: 20px; /* Centre l'info-bulle horizontalement */
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 2px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 11px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  .nom a i {
    color: var(--blue);
  }

  .nom a i:hover {
    color: var(--blue-dark);
  }

  .info-box {
    background-color: white; /* Couleur de fond */
    color: rgb(0, 0, 0); /* Couleur du texte */
    padding-left: 7px; /* Espace intérieur */
    padding-right: 7px; /* Espace intérieur */
    padding-top : 3px;
    padding-bottom: 3px;
    border-radius: 13px; /* Bords arrondis */
    display: inline-block; /* S'ajuste à la taille du contenu */
    margin-top : 5px;
    font-size: 11px; /* Augmenter la taille de la police */
  }
  
  
  .text-container {
    position: relative;
    font-size: 11px;
    width: calc(100% - 20px);
    margin: 10px;
    margin-top: 0px;
    overflow: hidden; /* Masque le contenu qui dépasse du conteneur */
  }

  .text-container-label {
    position: relative;
    font-size: 11px;
    width: calc(100% - 20px);
    margin: 10px;
    margin-top: 0px;
    overflow: visible;
  }

  .text-container p {
    margin :5px;
  }

  .text-container-label p {
    margin :5px;
  }

  .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px; /* Ajustez cette valeur pour donner de l'espace au texte par rapport aux bords */
  }

  .b-description {
    font-weight: bold;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    font-size: 13px !important;
  }

  @media (min-width : 1140px) {

    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 2px 10px;
      margin-top: 10px;
      height : 80px;
    }

    .shaped {
      height:100%;
      width:100%;
      float:right;
      /* shape-outside: polygon(0 0, 100% 0, 100% 65%, 85% 65%, 85% 100%, 0 100%); */
      shape-outside: polygon(100% 65%, 87% 65%, 87% 100%, 100% 100%);
    }

    .shaped-label {
      height:100%;
      width:100%;
      float:right;
      /* shape-outside: polygon(0 0, 100% 0, 100% 65%, 85% 65%, 85% 100%, 0 100%); */
      shape-outside: polygon(100% 80%, 87% 80%, 87% 100%, 100% 100%);
    }

    .image-nom {
      width : calc(100% - 10px);
      height : 100px;
      display: grid;
      grid-template-columns: 110px 10px calc(100% - 120px);
      align-items: center;
      margin-right : 10px;
    }

    .secteur-secteur {
      margin-left: 10px;
      font-size: 15px;
    }

    .lieu-lieu{
      font-size: 15px;
      margin-left: 10px;
    }
    
    .lieu {
      flex: 1;
      height : 24.5px;
      align-items: center;
      display: flex;
      align-items : center;
    }

    .icon-secteur {
      height: 20px; /* Ajustez la largeur de l'icône selon vos besoins */
      width: auto;
    }

    .nom {
      font-size: 16px;
      word-wrap: break-word;
      align-items: center;
      display: flex;
      width : 270px;
      
    }

    .image-container {
      flex: 1;
      margin: 7px;
      height : 100px;
      width : 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-container.label {
      height : 88px !important;
      width : 100% !important;
    }
    
    .image-preview {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      border-radius: 5px;
    }    
  }

  @media (min-width : 450px) {

    .nb-prestataire {
      width : 100%;
      margin-top: 15px;
      margin-bottom : 15px;
      margin-left: 10px; 
      font-weight: bold;
      font-size: 21px;
    }
  }

  @media (max-width : 450px) {

    .nb-prestataire {
      width : 100%;
      margin-top: 15px;
      margin-bottom : 15px;
      margin-left: 10px; 
      font-weight: bold;
      font-size: 17px;
    }
  }


  
  @media (max-width : 1140px) and (min-width : 1000px) {

    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 2px 10px;
      margin-top: 10px;
      height : 80px;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 84% 65%, 84% 100%, 100% 100%);
    }

    .shaped-label {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 80%, 84% 80%, 84% 100%, 100% 100%);
    }

  }


  @media (max-width : 1000px) and (min-width : 850px) {

    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 2px 10px;
      margin-top: 10px;
      height : 80px;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 81% 65%, 81% 100%, 100% 100%);
    }
    
    .shaped-label {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 92%, 81% 92%, 81% 100%, 100% 100%);
    }

  }


  @media (max-width : 850px) and (min-width : 750px) {
    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 2px 10px;
      margin-top: 10px;
      height : auto;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 81% 65%, 81% 100%, 100% 100%);
    }
    
    .shaped-label {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 85%, 90% 85%, 90% 100%, 100% 100%);
    }
  }

  @media (max-width : 750px) and (min-width : 550px) {

    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 7px 10px;
      margin-top: 0px;
      height : auto;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 81% 65%, 81% 100%, 100% 100%);
    }

    .shaped-label {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 81% 65%, 81% 100%, 100% 100%);
    }
  }

  @media (max-width : 550px) and (min-width : 450px) {

    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 7px 10px;
      margin-top: 0px;
      height : auto;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 81% 65%, 81% 100%, 100% 100%);
    }

    .shaped-label {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 80%, 83% 80%, 83% 100%, 100% 100%);
    }
  }

  @media (max-width : 450px) and (min-width : 350px) {

    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 7px 10px;
      margin-top: 0px;
      height : auto;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 60%, 81% 60%, 81% 100%, 100% 100%);
    }
    
    .shaped-label {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 80%, 75% 80%, 75% 100%, 100% 100%);
    }
  }

  @media (max-width : 350px) {
    .sujets {
      margin-top : 10px;
      width : calc(100% - 20px);
      margin: 7px 10px;
      margin-top: 0px;
      height : auto;
    }

    .shaped {
      height:100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 65%, 76% 65%, 76% 100%, 100% 100%);
    }

    .shaped-label {
      height: 100%;
      width: 100%;
      float: right;
      shape-outside: polygon(100% 83%, 67% 83%, 67% 100%, 100% 100%);
    }
  }



  @media (max-width : 1140px) {

    .image-nom {
      width : calc(100% - 10px);
      height : 120px;
      display: grid;
      grid-template-columns: 90px 10px calc(100% - 100px);
      align-items: center;
      margin-right : 10px;
    }

    .secteur-secteur {
      margin-left: 10px;
      font-size: 13px;
    }

    .lieu-lieu{
      font-size: 13px;
      margin-left: 10px;
    }
    
    .lieu {
      flex: 1;
      height : 24.5px;
      align-items: center;
      display: flex;
      align-items : center;
    }

    .icon-secteur {
      height: 15px; /* Ajustez la largeur de l'icône selon vos besoins */
      width: auto;
    }

    .nom {
      font-size: 18px;
      word-wrap: break-word;
      align-items: center;
      display: flex;
      width : calc(100% - 85px);
    }
    
    .image-preview {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      border-radius: 5px;
    }
    
  }

  @media (min-width : 550px) and (max-width : 1140px) {
    .image-container {
      flex: 1;
      margin: 7px;
      height : 80px;
      width : 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
  }

  @media (max-width : 550px) {

    .image-container {
      flex: 1;
      margin: 7px;
      margin-bottom : -5px;
      height : 80px;
      width : 100%;
      display: flex;
      justify-content: center;
      align-items: end;
    }
  }





    

  .site-web {
    flex: 1;
    text-align: center;
    font-size: 13px;
    align-items: center;
    display: flex;
    align-items : center;
    height : 24.5px;
  }
    
  .site-web a {
    color: rgb(0, 0, 115);
    text-decoration: underline;
    margin-left : 10px;
  }
  

  
  .icon-lieu {
    height: 30px; /* Ajustez la largeur de l'icône selon vos besoins */
    width: auto;
    margin-right: 10px; /* Ajoutez une marge à droite pour séparer l'icône du texte */
  }
  
  .icon-valeurs {
    height: 27px; /* Ajustez la largeur de l'icône selon vos besoins */
    width: auto;
    margin-right: 10px; /* Ajoutez une marge à droite pour séparer l'icône du texte */
  }
  
  .nom-lieu {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 3fr 2fr 2fr;
  }


  .secteur {
    word-wrap: break-word;
    align-items: center;
    display: flex;
    align-items : center;
  }





  .nom {
    position: relative;
  }

@media (min-width : 1150px) {

  .bouton-lien-temoignage a,
  .bouton-lien-temoignage-label a{
    position: absolute;
    top: 0px;
    left: 280px;
    font-size: 14px;
    padding: 10px;
    background-color: var(--orange);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom : 15px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.15);
    color: white;
    height: auto;
  }

  .nom-lieu {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 3fr 2fr 2fr;
  }

  .nom-lieu-label {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 3fr 2fr 2fr;
  }

}


@media (max-width : 1150px) and (min-width : 550px) {

  .bouton-lien-temoignage a,
  .bouton-lien-temoignage-label a {
    position: absolute;
    top: -8px;
    left: calc(100% + 3px);
    font-size: 13px;
    padding: 8px;
    background-color: var(--orange);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom : 15px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.15);
    color: white;
    height: auto;
  }

  .nom-lieu {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 3fr 2fr 2fr;
  }

  .nom-lieu-label {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 3fr 2fr 2fr;
  }
}


@media (max-width : 550px) {

  .bouton-lien-temoignage a,
  .bouton-lien-temoignage-label a{
    position: absolute;
    top: -8px;
    left: calc(100% + 3px);
    font-size: 13px;
    padding: 8px;
    background-color: var(--orange);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom : 15px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.15);
    color: white;
    height: auto;
  }

  .nom-lieu {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 4fr 2fr 2fr;
  }

  .nom-lieu {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 30px 30px 30px;
  }

  
  .nom-lieu-label {
    margin-left: 10px;
    display : grid;
    grid-template-rows: 3fr 2fr 0fr;
  }

}

  .bouton-lien-temoignage-label a {
    background-color: var(--red);
  }

  .bouton-lien-temoignage a:hover{
    background-color: var(--orange-dark);
  }

  .bouton-lien-temoignage-label a:hover {
    background-color: var(--red-dark);
  }

  .prestataire-box {
    position: relative;
  }

  .label2-box {
    position: relative;
  }

  /* Bouton prestataire "j'ai fait appel à ce prestataire et je suis ouvert au partage d'expérience" */

  .button-presta-user {
    position: absolute;
    bottom: 10px;
    right : 30px;
  }

  .button-label-user {
    position: absolute;
    bottom: 10px;
    right : 30px;
  }

  .button-presta-user i {
    color: var(--orange)
  }

  .button-label-user i {
    color: var(--red);
  }

  .button-button-presta-user:hover i,
  .up-button-presta-user:hover i {
    color: var(--orange-dark);
    cursor: pointer;
  }

  .button-button-label-user:hover i,
  .up-button-label-user:hover i {
    color: var(--red-dark);
    cursor: pointer;
  }

  .button-button-presta-user,
  .button-button-label-user {
    display: inline-block;
  }

  .up-button-presta-user,
  .up-button-label-user {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    margin-left: 3px;
  }

  .up-button-presta-user i,
  .up-button-label-user i {
    position: relative;
  }

  .up-button-presta-user i:hover::after,
  .up-button-label-user i:hover::after {
    width : 100px;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    top: -70px; /* Positionne l'info-bulle au-dessus du badge */
    left: -20px; /* Centre l'info-bulle horizontalement */
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 5px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  
  .button-button-presta-user i,
  .button-button-label-user i {
    position: relative;
  }

  .button-button-presta-user i:hover::after,
  .button-button-label-user i:hover::after {
    width : 100px;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    top: -80px; /* Positionne l'info-bulle au-dessus du badge */
    left: -10px; /* Centre l'info-bulle horizontalement */
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 5px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  .liste-presta-user {
    position: absolute;
    width : 250px;
    height: auto;
    border-radius: 10px;
    background-color: rgb(249, 249, 249);
    box-shadow: 2px 2px 5px 6px rgba(0,0,0,0.2); /* Ajout de l'ombre */
    padding: 5px;
    bottom: 70px;
    left: -210px;
    padding : 15px 10px;
  }

  .liste-presta-user-tiret-shadow {
    filter: drop-shadow(5px 7px 5px rgba(0,0,0,0.3));
    position: absolute;
    top: 99%;
    right: 10px;
  }

  .liste-presta-user-tiret {
    background-color: rgb(249, 249, 249);
    clip-path : polygon(0 0, 75% 0, 100% 100%);
    height: 20px;
    width: 25px;
  }

  .questionnaire-presta {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centre l'info-bulle exactement au-dessus du badge */
    width: 80%;
    height : 170px;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 3px rgba(0,0,0,0.2);
    z-index: 98;
    background-color: var(--blue);
  }

  .questionnaire-presta textarea {
    resize: none;
    border-radius: 4px;
    outline:none;
    border: 1px solid #ccc;
    position: fixed;
    position: absolute;
    top: 80px;
    left: 10px;
    padding: 5px;
    width : min(270px, 85%);
    font-family: "Arial", sans-serif;
    font-size: 14px;
    height : 18px;
  }

  .questionnaire-presta p {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    margin : 10px;
    margin-right : 15px;
    margin-top: 15px;
    color: white;
    height : 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .questionnaire-presta span {
    position: absolute;
    top: 3px;
    right : 3px;
    color: white;
  }

  .questionnaire-presta span:hover {
    color: var(--red);
    cursor: pointer;
  }

  .submit-presta {
    position: absolute;
    font-size: 14px;
    padding: 10px;
    background-color: white;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.15);
    color: var(--blue);
    height: auto;
    bottom: 10px;
    right : 10px;
    border: none;
  }

  .submit-presta:hover {
    color: var(--blue-dark);
    cursor: pointer;
  }

  .liste-presta-user span {
    position: absolute;
    top: 3px;
    right : 3px;
    color: grey;
  }

  .liste-presta-user span:hover {
    color: var(--red);
    cursor: pointer;
  }

  .liste-presta-user ul li a i {
    position: relative;
  }

  
  .liste-presta-user span i {
    color: grey;
  }

  .liste-presta-user span i:hover {
    color: var(--blue);
  }

  .liste-presta-user ul li a i:hover {
    color: var(--blue-very-dark);
  }

  .liste-presta-user ul li a {
    color: var(--blue);
  }

  .liste-presta-user ul li a:hover {
    color: var(--blue-dark);
  }

  .lien-user {
    position: relative;
  }

  .lien-user:hover::after {
    width : 70px;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    right: 5px;
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 2px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 11px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  .liste-presta-user ul li a i:hover::after {
    width : 45px;
    content: attr(data-title); /* Récupère le contenu de l'attribut title */
    position: absolute;
    right: -80px;
    transform: translateX(-50%); /* Centre l'info-bulle exactement au-dessus du badge */
    padding: 2px;
    background-color: var(--blue-dark-transparent);
    color: white;
    font-size: 11px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajout de l'ombre */
    z-index: 9; /* Valeur supérieure pour être au-dessus de l'encadré */
    transition: opacity 0.3s ease-in-out; /* Ajout d'une transition d'opacité */
  }

  .profil-utilisateur {
    position: absolute;
    top: 0;
    right : 0;
    width: 1000px;
    height: 1000px;
    border: 1px solid black;
    background-color: white;
    z-index: 10000000;
  }


  @media (max-width : 500px) and (min-width : 380px) {
    .nom {
      font-size: 16px;
    }
  }

  @media (max-width : 380px) {
    .nom {
      font-size: 14px;
    }
  }