
@media (max-width: 768px) {

  #DesktopNavbar{
    display: none;
  }
  #MobileContent{
    display: block;
  }
  .navbar{
    display: block;
  }

}
@media (min-width: 768px) {

#DesktopNavbar{
  display: block;
}
#MobileContent{
  display: none;
}
.navbar{
  display: none;
}
}



#navbar{
    height: 65px;
    top: 0;
    width: 100%;
    z-index: 1000;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
  }
  #navbarLogo{
    position: relative;
    display: inline-flex;
    opacity: 1;
    top: -9%;
    width: 70px;
    height: auto;
  }
  #navbar .navleft{
    position: absolute;
    display: inline-flex;
    top: 0%;
    padding: 20px 0px;
  }
  #navbar .navright{
    position: absolute;
    right: 2%;
    display: inline-flex;
    top: 0%;
    padding: 20px 0px;
  }
  
  #navbarMenuIcon{
    width: 20px;
    height: auto;
  }
  .navbarLink{
    color: white;
    text-align: center;
    padding: 0px 20px;
    text-decoration: none;
    font-family: Montserrat;
    font-size: 20px;
  }
  .navbarLink:hover{
    text-decoration: none;
    color: white;
  }
  .navbarLinkAlt {
      background: url("img/new/PAGE\ _HOME/BoutonRougeBanniere.png") no-repeat center center;
      border-radius: 1.5em;
      margin-top: -15px;
      padding: 15px;
  }






  

  /* Mobile Version Styles */
  #MobileContent{
    width: 100%;
    position: absolute;
    z-index: 1;
    overflow-x: hidden;
    height: 100vh;
  }
 .navbar{
    height: 55px;
    width: 100%;
    z-index: 1000;
    position: absolute;
  }
  .navbarLogoMobile{
    position: relative;
    margin-top: -8%;
    display: inline-flex;
    opacity: 1;
    align-items: center;
    width: 100px;
    height: auto;
  }
  .navbar .navrightMobile{
    position: absolute;
    right: 10%;
    display: inline-flex;
    top: -5%;
    padding: 15px 0px;
  }
  
  .navbarMenuIconMobile{
    transition: transform 0.3s ease-in-out;
    width: 25px;
    height: auto;
    transform: rotateZ(0deg);
  }
  .navbarMenuIconMobile.active{
    transition: transform 0.3s ease-in-out;
    transform: rotateZ(90deg);
  }
  
  .navbarLink:hover{
    text-decoration: none;
    color: white;
  }
  .mobileOverFlowMenu{
    position: absolute;
    z-index: 9;
    top: 0%;
    transition: 0.3s all ease-in-out;
    height: 100vh;
    opacity: 0;
    display: none;
    background: rgba(0, 0, 0, 0.8);
  }
  .mobileOverFlowMenu.active{
    transition: 0.3s all ease-in-out;
    opacity: 1;
    display: block;
    overflow: hidden;
  }
  
  .menuList ul{
    text-align: center;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
  .menuList ul li{
    padding: 10px;
  }
  .menuList ul li a{
    color: white;
    font-size: 20px;
    font-family: Montserrat;
    text-decoration: none;
    width: 100%;
  }

  .menuList ul li a:hover{
    color: white;
  }

  .retourBTN{
    position: relative;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(27, 159, 27);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-family: Montserrat;
    font-weight: bold;
    padding: 15px 30px;
    outline: none;
  } 