.grille2{
    max-width: 1300px;
    width: 80%;
    height: auto;
    margin: 30px auto;
    /* border: 1px solid #333; */
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    justify-content: center;
    grid-gap: 10px;
}
.grille2 ul{
    list-style: none; 

}
.grille2 a:hover, .grille2 .link:hover{
  border-bottom: 1px solid #0A4C67 !important;
}
.grille2 a{
    text-decoration: none;    
}
.grid-item2{
    width: 250px;
    height: 200px;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: left;

}

.grid-item2 img{
    height: 200px;
}
.grid-item2 .bi{
    width: 64px;
    margin-right: 20px;
}

/* Modal */
.img_modal {
    max-width: 100%;
    height: auto;
  }

  .button_modal {
    display: inline-block;

    width: 100%;
    padding: 15px 20px;
    color: white;
    background: rgb(27, 187, 131);
    transition: background 150ms ease-out;
    border-radius: 2px;
    cursor: pointer;
  }
  .button_modal:hover, .button_modal:active {
    background: rgb(27, 187, 131);
    transition: background 250ms ease-out;
  }


  
.modal {
    position: fixed;
    z-index: 20;
    /* max-width: 85%; */
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    opacity: 1;
    transition: margin-top 150ms ease-out, opacity 150ms ease-out;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
  }
  @media screen and (max-height: 500px) {
    .modal {
      width: 80%;
    }
  }
  .modal__toggler {
    display: none;
  }
  .modal__toggler:not(:checked) ~ .modal {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    opacity: 0;
    height: -1px;
    width: 1px;
    margin: 1px;
    padding: 0;
    border: 0;
    margin-top: 10px;
  }
  .modal__toggler:not(:checked) ~ .modal__mask {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    opacity: 0;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  .modal__mask {
    position: fixed;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition: opacity 150ms ease-out;
    background: RGBA(0, 0, 0, 0.7);
    cursor: pointer;
  }
  .modal__close::after {
    content: "✕";
    position: absolute;
    display: inline-block;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }
  .modal__title {
    margin: 0;
  }
  .modal__content {
    background: #eee;
    padding: 30px;
    max-height: 90vh;
    overflow-x: auto;
  }
  /* .demo-button {
    transform: translate(0, 0);

  } */