
  
  .list-item {
    margin: 0 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
  }
  
  .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 98;
  }
  
  .popup {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    width: 1520px;
    height: 734px;
  }
  
  .slide-content {
    display: none;
    transition: transform 0.3s ease-in-out;
  }
  
  .active-slide {
    display: block;
    transform: translateX(0);
  }
  
  .left-slide {
    transform: translateX(-100%);

  }

  .prev-button {
    margin-top: 312px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: #F9BE1D;
  }

  .prev-button:hover {
    width: 80px;
    height: 80px
  }

  .next-button {
    position: absolute;
    margin-left: 1340px;
    margin-top: 312px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background:#59C0F0 ;
  }

  .next-button:hover {
    width: 80px;
    height: 80px;
  }

  .circle-bleu {
    position: absolute;
    width: 521px;
    height: 521px;
    flex-shrink: 0;
    border-radius: 521px;
    border: 119px solid rgba(156, 208, 232, 0.50);
    background: rgba(217, 217, 217, 0.00);
    margin-left: 80%;
    margin-top: -43%;
    z-index: 2;
  }

  .circle-jaune {
    position: absolute;
    width: 371px;
    height: 371px;
    flex-shrink: 0;
    border-radius: 371px;
    border: 99px solid rgba(249, 190, 29, 0.50);
    background: rgba(217, 217, 217, 0.00);
    margin-left: -12%;
    margin-top: 8%;
  }

  .close-button {
    position: absolute;
    width: 231px;
    background: none;
    border: none;
    margin-left: 64px;
    margin-top: 30px;
  }

  .close-button svg {
    margin-left: -150px;
  }

  .close-button p {
    margin-top: -36px;
    color: #7C7979;
    font-family: Nexa-bold;
    font-size: 20px;
    line-height: normal;
    font-style: normal;
    margin-left: 30px;
  }

  .popup a button {
    width: 263px;
    height: 57px;
    background: #FBEEB9;
    border-radius: 26px;
    border: none;
    position: absolute;
    margin-left: 60%;
    margin-top: 16.5%;
  }

  .popup a {
    color: #000;
    font-family: Nexa-bold;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
  }

  .slide-content .titre-faq {
    position: absolute;
    margin-left: 431px;
    
  }

  .slide-content .titre-faq p {
    font-family: Nexa-bold;
    font-size: 32px;
    font-style: normal;
    line-height: normal;
  }

  .slide-content .content-faq {
    position: absolute;
    margin-top: 200px;
    margin-left: 239px;
  }

  .slide-content .content-faq p {
    font-family: Nexa-light;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
  }

 