header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navBar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
}

.logo {
  height: 100px;
}

#burgerMenue {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

#closeButton {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  font-size: xx-large;
  color: var(--color-logo);
  display: none;
}

.hamburger-lines {
  display: block;
  height: 26px;
  width: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  height: 6px;
  width: 100%;

  background: #aa4b45;
}
#desktopLinks {
  display: none;
  height: 100px;
}

/* **********************************************Fin Barre de navigation**********************************************************  */

/* **********************************************Début Menue Liens****************************************************************  */

#burgerLinks {
  padding-top: 35vh;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
  height: 100vh;
  width: 100%;

  gap: 20px;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  display: none;
}

#burgerLinks li {
  list-style-type: none;
}
#burgerLinks li a {
  transition: 0.7s;
  text-underline-offset: 5px;
  transition-property: text-decoration;
  text-decoration: underline white;
  color: black;
}
#burgerLinks li a:hover {
  text-underline-offset: 5px;
  text-decoration: underline var(--color-logo);
}

/* **********************************************Début queries desktop****************************************************************  */

@media (min-width: 1098px) {
  #burgerMenue {
    display: none;
  }
  #burgerLinks {
    display: none !important;
  }
  #desktopLinks {
    display: block;
    text-align: center;
    padding-top: 35px;
    text-decoration: none;
  }
  #desktopLinks ul li {
    padding-right: 120px;
    display: inline;
    list-style-type: none;
  }
  #desktopLinks ul li a {
    text-decoration: none;
    transition: 0.7s;
    text-underline-offset: 5px;
    transition-property: text-decoration;
    text-decoration: underline white;
    color: black;
  }
  #desktopLinks ul li a:hover {
    text-underline-offset: 5px;
    text-decoration: underline var(--color-logo);
  }
}
