html{
    scroll-behavior: smooth;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: Kufam;
    overflow-x: hidden;
    background-color: rgb(34, 34, 34);
    color: white;
  }

/****************************/
/****************************/
/*       Code Mobile        */
/****************************/
/****************************/

/****************************/
/*    Code du Header        */
/****************************/
.navbar{
  position: fixed;
  top: 0;
  padding: 10px;
  width: 100%;
  height: 70px;
  display: flex;
  z-index: 10000;
  transition: 1s;
  justify-content: space-between;
  align-items: center;
  background:  #5da066;
}

.menutel{
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background-color: white;
  transform: translateX(-100%);
  transition: 0.5s;
  z-index: 11;
}

.menutel a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  margin-bottom: 40px;
}

.menutel>ul>img{
  margin-bottom: 50px;
  margin-top: 50px;
}

nav a img{
  display: none;
}

nav>div{
  display: none;
}

.ouvert {
  transform: translate(0);
  background: #5da066;
}

#hamburger,
#hamburger-content {
  display: inline;
}

#hamburger-button {
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  left: 45%;
  font-size: 30px;
  padding: 0;
  vertical-align: top;
  line-height: 77px;
  float: right;
  animation: 1s;
  color: white;
}

.burger2 {
  transform: rotate(90°);
  color: red;
}

li {
  display: block;
}

li:before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 30px;
  margin-bottom: 24px;
  margin-top: 20px;
}


li:nth-child(2):before {
  background-image: url(../svg/accueil.svg);
}

li:nth-child(3):before {
  background-image: url(../svg/lieux.svg);
}

li:nth-child(4):before {
  background-image: url(../svg/evenement.svg);
}

li:nth-child(5):before {
  background-image: url(../svg/contact.svg);
}

.logo {
  width: 60px;
  height: 60px;
  margin-left: 30%;
  margin-top: 0px;
}

/****************************/
/*    Code du Footer        */
/****************************/

footer{
  transition: 500ms ease-in-out;
} 

.footercontact{
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  color: white;
  background-color: rgb(147, 163, 88);
  padding: 10px;
  padding-right: 50px;
}

.reseaux{
  display: flex;
  flex-direction: initial;
}

.reseaux a img{
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
}

.footertexte{
  display: block;
  font-size: 1em;
  margin: 10px;
  text-align: center;
}

.footer2{
  background-color: rgb(12, 44, 23);
  color: yellowgreen;
  font-size: small;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  background-position: center;
  background-size: cover;
}

.mention{
  text-decoration: none;
  color: rgb(31, 46, 0);
}

.googlemap{
text-decoration: none;
  color: rgb(31, 46, 0);
}

.footeradress{
  text-align: center;
}

footer:hover{
  box-shadow: 0px 0px 10em rgba(0,0,0,0.19);
}


/****************************/
/****************************/
/*       Code PC        */
/****************************/
/****************************/

@media screen and (min-width: 1200px) {

    /****************************/
    /*    Code du Header        */
    /****************************/
    nav a img{
      display: initial;
    }
    
    nav>div{
      display: initial;
    }
    
    .navbar>button{
      display: none;
    }
  
    .navbar{
      position: fixed;
      top: 0;
      padding: 10px;
      width: 100%;
      height: 70px;
      display: flex;
      z-index: 10000;
      transition: 1s;
      justify-content: space-between;
      align-items: center;
      background: #5da066;
    }

    .navbar img{
      width: 200px;
      height: auto;
      margin-left: 50px;
    }
  
    .navbar-menu{
      margin-right: 50px;
    }
    .navbar2{
      background: #c8ad7f;
      padding: 0;
    }
    .nav-link{
      margin-right: 5px;
      text-decoration: none;
      font-size: 20px;
      font-weight: 900;
      color: white;
      transition: 0.5s ease-in-out;
    }
    .nav-link:hover,
    .nav-link:focus{
      color: yellowgreen;
    }
    .nav-link2{
      color: black;
      font-size: 15px;
    }
  
    header {
      display: none;
  }

}