div.general_parallax{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s linear;
    height: 500px;
    overflow: hidden;
    overflow-y: scroll;
}
div.general_parallax::-webkit-scrollbar {
    width: 8px;
}
 
div.general_parallax::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}
 
div.general_parallax::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 20px;
}
div.visuel{
    width: 100%;
    height: 90vh;
    height: 100%;
    padding: 0 0 0 0;
    box-sizing: content-box;
    position: sticky;
    left: 0px;
    top: 10px;
}
div.visuel svg{
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
div.visuel svg image{
    cursor: help;
}
div.visuel svg>g:not(#cercle) image{
    opacity:0;
    visibility: hidden;
    transition: opacity 0.5s linear, visibility 600ms;
}
div.visuel svg g>g:not(.active) circle{
    fill: #ccc;
}
div.visuel g>g.active:not(#cercle) image{
    visibility: visible;
    opacity:1;
}
div.texte{
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 0;
    min-height: 2000px;
}
div.texte section{
    width: 100%;
    font-size: 1.9rem;
    font-weight: 500;
    height: auto;
    margin-bottom: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;

}
div.texte section p{
    width: 50%;
    margin: auto;
    background-color: #fff;
    border: 2px solid #ccc;
    padding: 10px;
}
@media (max-width: 767px) {
    div.texte section p{
        width: 100%;
    }
}




 div.general_parallax .modal {
    display: none; 
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
  }
  
  div.general_parallax .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  div.general_parallax .modal-content p{
    text-align: center;
    padding: 50px;
  }
  div.general_parallax .close {
    color: #aaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
  }
  
  div.general_parallax .close:hover,
  div.general_parallax .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  } 