#burger-menu{
    display:none
}
header {
    position: fixed;
    width: 100%;
    transition: 0.3s ease;
    z-index: 1;
    position: sticky;
    background-color: rgba(66, 66, 66, 0.781);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.329);
}

nav {
    position: fixed;
    z-index: 9;
    top: 0%;
    width: 100%;
    background-color: rgba(11, 11, 11, 0.603);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.329);
}

nav ul li#accueil{
    display: none;
}

nav ul {
    align-items: center;
    
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

nav ul li {
    color: rgb(226, 226, 226);
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    list-style: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 50px ;
}


li {
    font-size: 15pt;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: rgb(226, 226, 226);
    display: inline-block;
}

 a img{
    width: 40px;
    padding-right: 60%px;
    }

li:after {
    display: block;
    content: '';
    border-bottom: solid 3px rgb(226, 226, 226);  
    transform: scaleX(0);  
    transition: transform 500ms ease-in-out;
}

li:hover:after {
    transform: scaleX(1); 
}

a{
    color: rgb(226, 226, 226);
    text-decoration: none;
}

h2{
  color: rgb(226, 226, 226);
  margin:0px;
  margin-top:100px;
  font-size: 35px;
  margin-bottom: 50px;
  
}




body {
    background-color: #141414;
    top:0 ;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    
}

#moi{
    padding-top: 30px;
    font-size: 20pt;
}

 a :hover{
    opacity: 0.5 ;
   }

#presentation img{
    height: 700px;
    
}

#presentation{
    margin-top: 200px;
    margin-left: 20%;
    margin-right: 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: #fff;
}
     

#parcours{
    text-align: right;
    
    background-color:#111111;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #fff;
}

#texte{
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 100px;
}
#parcours p{
    font-size:20pt
}

#parallele{
    
    margin-left: 20%;
    margin-right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #fff;
    font-size:20pt;
    margin-bottom: 150px;
}


footer{
    
    padding-top: 70px;
    background-color: #111111;
    padding-bottom: 20px;
    color: white;
    
  }
  
  .Contactbouton {
    cursor: pointer;
    margin-top: 40px;
    background-color: red;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
    padding: 10px 35px;
    font-weight: 600;
    margin-left: 45%;
}
  
 

  header img:hover{
    opacity: 0.5;

   }
  .Liste a:hover{
    opacity: 0.5;
  }
  
  
  
  #copyright{
    display: block;
        margin-top: 100px; 
        color: #ffffff36;
        text-align: center;
  }

  #copyright2{
    display: none;
}
  
  .Liste{
    
    display:flex ;
    flex-direction: row;
    justify-content: space-around;
    padding-left: 10%;
    padding-right: 10%;
  }

  @media only screen and (max-width: 600px) {
    
    
    @media all and (max-width: 992px) {
        #burger-menu {
       display: none; /* On cache le bouton burger en desktop */
       }
       #burger-menu {
           color: #fff;
         display: block;
         width: 100%;
         text-align: right;
         padding: 8px 24px;
         font-size: 24px;
         background-color: #111111;
         border: none;
         border-radius: 0;
         
       }

      nav ul li#accueil{
       display: block;
      }

     a img{
       display: none;
      }
      main{
        margin-top: -30%;
    }
       nav ul {
           margin: 0;
           padding: 0;
           list-style: none;
           display: flex;
           flex-direction: column;
           background-color: rgba(11, 11, 11, 0.603);
           box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.329);
           align-items: center;
         }
         
         nav ul li {
           width: 100%;
           text-align: center;
           font-family: "Montserrat", sans-serif;
           font-weight: bold;
           
         }
         
         nav ul li a {
           display: inline-block;
           width: 100%;
           padding: 16px 0;
           text-decoration: none;
           color: #fff;
           background-color: none;
           
         }


       nav #menu-principal {
         display: none;
         flex-direction: column;
         position: absolute;
         width: 100%;
         z-index: 9;
       }
     
       .background-logo {
         display: none;
       }
     }
     
     /* 
       STYLE BOUTON BURGER 
     */
     
     #bars {
       display: inline-block;
       width: 24px;
       height: 2px;
       background-color: #fff;
       position: relative;
       transition: transform 0.35s ease-in;
       bottom: 5px;
       left: 5px;
     }
     
     #bars::before,
     #bars::after {
       content: '';
       display: inline-block;
       width: 24px;
       height: 2px;
       background-color: #fff;
       position: absolute;
       left: 0;
       transition: transform 0.35s ease-in, opacity 0.35s ease-in;
     }
     
     #bars::before {
       top: -8px;
     }
     
     #bars::after {
       top: 8px;
     }
     
     #bars.open {
       transform: rotate(45deg);
     }
     
     #bars.open::before {
       transform: rotate(90deg);
       top: 0;
     }
     
     #bars.open::after {
       transform: rotate(90deg);
       top: 0;
     }
     
   
   
    a img{
       width: 50px;
       padding-right: 60%;
       }
   
   li:after {
       display: block;
       content: '';
       border-bottom: solid 3px rgb(226, 226, 226);  
       transform: scaleX(0);  
       transition: transform 500ms ease-in-out;
   }
   
   li:hover:after {
       transform: scaleX(1); 
   }
   
   a{
       color: rgb(226, 226, 226);
       text-decoration: none;
   }
    h2 {
        
            color: rgb(226, 226, 226);
            margin:0px;
            margin-top:30px;
            font-size: 35px;
            
    
    }
    
    
    body {
        background-color: #161616;
        top:0 ;
        padding: 0;
        margin: 0;
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        
    }
    
    #moi{
        padding-top: 30px;
        font-size: 20pt;
        margin-left: 25px;
        text-align:center;
    }
    
    
    #presentation img{
        height: 400px;
        width: 330px;
        
    }
    
    #presentation{
        margin-top: 200px;
        margin-left: 10%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        color: #fff;
    }
         
    
    #parcours{
        text-align: center;
        background-color:#111111;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        color: #fff;
        
    }
    
    #texte{
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 100px;
    }
    #parcours p{
        font-size:20pt
    }
    
    #parallele{
        text-align: center;
        margin-left: 10%;
        margin-right: 10%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        color: #fff;
        font-size:20pt
    }
    




   
    footer {
      margin-top: 100px;
      padding-top: 70px;
      background-color: #111111;
      padding-bottom: 20px;
      color: white;
    }
    
    
    .Contactbouton {
      margin-top: 40px;
      margin-bottom: 40px ;
      margin-left: 25%;
    }
    
    
    .Liste {
      display: flex;
      flex-direction: column; 
      
      padding-left: 10%;
      padding-right: 10%;
      text-align: center;
    }
    
    .Contact {
      margin-bottom: 10px; 
    }
    
    #reseaux {
      margin-top: 10px; 
    }
    
    #copyright2{
      display: block;
      margin-top: 30px; 
      color: #ffffff36;
      text-align: center;
    }
    
  #copyright{
      display: none;
  }

  }