.site-header {
  background: var(--noir1);
  display: flex;
  align-items: center;
  height: 120px;
  position: relative;
  z-index: 2;
}

img.logo-header {
    width: 100px;
    margin-left: 50px;
    margin-right: 50px;
}

.main-navigation li a {
  color: var(--blanc);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 15px 1px 15px;
  text-decoration: none;
  font-family: var(--font-poppins);
  transition: all 0.5s;
}

.main-navigation .current_page_item::after {
      content: '';
      border-bottom: 2px solid #fff;
      width: 40px;
      display: block;
      margin: 0 auto;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 60px;
}

.overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

ul#menu-menu-2 {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.overlay a {
    padding: 15px 0px;
    text-decoration: none;
    font-size: 28px;
    color: #ffffff !important;
    display: block;
    transition: 0.3s;
    font-family: var(--font-poppins);
}

i.fas.fa-bars {
    display: none;
}
