/* Navigation */
header {
max-width: 100% !important;
min-width: 100% !important;
}

.menu-nav {
    display: flex;
    /* background-color: rgb(172, 214, 255);*/
    justify-content: center;
    max-width: 100%;
  }
  
  .NAV {
    display: flex;
    flex-wrap: wrap;
    /*background-color: rgb(255, 135, 135);*/
    width: 1020px;
    padding: 10px 0;
    justify-content: center;
  }
  
  .NAV-ELEMENT {
    /* background-color: #cbfdde;*/
    color: #029739;
    padding: 10px;
    position: relative;
    flex: 1 1 auto;
    text-align: center;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Lato", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
  }
  
  .NAV-ELEMENT a {
    text-decoration: none;
    color:  #029739;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    display: block;
    padding: 10px;
  }
  
  .NAV-ELEMENT a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #029739;
    bottom: 0;
    left: 50%;
    transition: width 0.3s ease, left 0.3s ease;
    max-width: 200px;
    display: flex;
  }
  
  /* Soulignement vert au survol et au clic */
  .NAV-ELEMENT a:hover::after,
  .NAV-ELEMENT.active a::after {
    width: 100%;
    left: 0;
  }
  
  /* Logo */
  .logo_header {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .LOG {
    display: flex;
    /*background-color: rgb(237, 255, 135);*/
    width: 1030px;
    justify-content: center;
    padding: 10px;
  }
  
.wrapper {

    margin-top: 90px;
}

  /* Contenu principal */
  .content_page {
    display: flex;
    /*background-color: rgb(255, 102, 0);*/
    width: 100%;
    padding: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-list_link {
    display: block;
    min-width: 20px;
    text-align: center;
    text-decoration: none;
  }
  .nav-list {
    list-style-type: none;
  }


.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
}

.hamburger-menu img {
  width: 30px;
  height: 30px;
  position: relative;
  left: 20px;
  z-index: 9999999;
}

@media screen and (max-width: 1000px) {
  .menu-nav {
    display: block;
  }

  .hamburger-menu {
    display: flex;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px;
  }

  .menu-nav.active #nav-links {
    display: flex;
  }

  .NAV-ELEMENT a::after {
    margin-left: 25%;
    max-width: 50%;
  }
}