  #content{
    visibility: hidden;
  }

  #join-club{
    margin-top: 4%;
  }

  @media screen and (min-width: 900px) {
    #super-title {
      top: 40% !important;
      max-width: 40% !important;
    }
  }

  #super-title{
    position: fixed;
    transition: 1s all ease;
    width: 80%;
    left: 10%;
    top: 30%;
    z-index: -1;
  }

  section{
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 100px 100px rgba(0, 0, 0, 0.2);
  }

  #slogan{
    position: fixed;
    right: 14%;
    bottom: 25%;
    transition: 1s all ease;
    color: white;
  }

  #slogan h2{
    font-size: 5em;
  }

  @media screen and (min-width: 415px) {
    #episodes {
      right: 4% !important;
      bottom: 7% !important;
      width: 50% !important;
    }
  }

  #episodes{
    bottom: 13%;
    position: fixed;
    transition: 1s all ease;
    color: white;
    width: 100%;
    display: none;
    overflow-x: auto;
    text-align: justify;
  }

  @media screen and (min-width: 415px) {
    #partenaires-left{
      max-width: 40% !important;
    }
    #partenaires-right{
      bottom: 25% !important;
      max-width: 40% !important;
    }
    .video{
      display: block !important;
    }
  }

  @media screen and (max-width: 415px) {
    #partenaires-right, #partenaires-left, #mission-content{
      box-shadow: 0px 0px 10px 10px rgb(0 0 0 / 50%);
      background-color: rgba(0 0 0 / 50%);
    }
  }

  #partenaires{
    transition: 1s all ease;
    color: white;
    text-align: center;
    display: none;
  }

  #partenaires h3{
    font-size: 35px;
  }

  #partenaires-left{
    left: 0%;
    bottom: 25%;
    position: fixed;
    margin-left: 5%;
    max-width: 80%;
  }

  #partenaires-right{
    right: 0%;
    position: fixed;
    margin-right: 5%;
    bottom: 55%;
    max-width: 70%;
    margin-left: 10px;
  }

  .video{
    display: none ;
  }

  .link:hover > #arrow-yt {
    color: yellow;
  }

  iframe{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
  }


  @keyframes loading {
      0% {
          max-width: 0;
      }
  }


/* Style par défaut pour la navbar */
#navbar {
  transition: background-color 0.3s;
}

/* Style quand la navbar est ouverte en mode mobile */
#navbar.opened {
  background-color: #000; /* ou la couleur de ton choix */
}

/* Assure que la navbar est transparente en mode mobile quand elle est fermée */
@media (max-width: 768px) {
  #navbar {
      background-color: transparent;
  }
}