header {
  position: fixed;
  background-color: transparent;
  z-index: 9999;
}

.navbar {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: bolder;
  display: flex;
  flex-direction: row;
  height: 10vh;
}
.navbar .navbar-logo {
  align-self: center;
}
.navbar .navbar-logo img {
  margin-left: 3%;
  width: 35%;
  height: auto;
}
.navbar .navbar-items {
  margin-right: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.navbar .navbar-items > ul {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: row;
  list-style: none;
}
.navbar .navbar-items > ul #nav-devis {
  color: #ef7d00 !important;
}
.navbar .navbar-items > ul li {
  position: relative;
  margin-left: 1.5rem;
}
.navbar .navbar-items > ul li .navbar-item {
  padding-bottom: 0.3rem;
}
.navbar .navbar-items > ul li > a {
  display: inline-block;
  position: relative;
  font-family: Heebo, sans-serif;
  font-weight: 200;
  white-space: nowrap;
  overflow-x: hidden;
}
.navbar .navbar-items > ul li > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -100%;
  background-color: darkorange;
  width: 100%;
  height: 1px;
  transition: left 0.5s ease-in-out;
}
.navbar .navbar-items > ul li > ul:hover + a::before, .navbar .navbar-items > ul li a:hover::before, .navbar .navbar-items > ul li a:focus::before {
  left: 0%;
}
.navbar .navbar-items > ul .nested-list {
  position: relative;
}
.navbar .navbar-items > ul .nested-list:hover > .collapse-nav-item, .navbar .navbar-items > ul .nested-list:focus > .collapse-nav-item {
  opacity: 1;
  top: 0;
}
.navbar .navbar-items > ul .collapse-nav-item {
  background-color: #222222;
  list-style: none;
  display: block;
  opacity: 0;
  position: absolute;
  left: -10px;
  top: 100%;
  font-family: Poppins, sans-serif;
  font-weight: 200;
  font-size: 0.7em;
  z-index: 9999999;
  margin-top: 2rem;
  margin-left: 0.3rem;
  text-align: left;
  transition: top 0.3s ease-in, opacity 0.3s ease-in;
}
.navbar .navbar-items > ul .collapse-nav-item > li {
  margin: 0;
  padding: 0.5rem;
}
.navbar .navbar-items > ul .collapse-nav-item > li:not(li:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}
.navbar .navbar-items > ul > li a {
  text-decoration: inherit;
  color: inherit;
}

.mobile-navbar {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #222222;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.submenu-mobile-navbar {
  top: 0;
  z-index: 9999;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #222222;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  * {
    font-size: 0.8em;
  }

  .navbar-logo img {
    width: 45% !important;
  }

  /* Create a burger icon */
  .burger-menu .burger-menu-icon {
    z-index: 999999;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
  }
  .burger-menu .burger-menu-icon .burger-menu-line {
    pointer-events: none;
    width: 100%;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.5s ease-in-out;
  }
  .burger-menu .burger-menu-icon .burger-menu-line.burger-menu-line-transform:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger-menu .burger-menu-icon .burger-menu-line.burger-menu-line-transform:nth-child(2) {
    transform: translateX(-100%);
  }
  .burger-menu .burger-menu-icon .burger-menu-line.burger-menu-line-transform:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .navbar-items {
    display: none !important;
  }

  .mobile-navbar > ul {
    list-style: none;
  }
  .mobile-navbar > ul > li {
    font-size: 6em;
  }
  .mobile-navbar > ul > li > a {
    text-decoration: none;
    color: white;
  }

  .submenu-mobile-navbar > i {
    position: absolute;
    font-size: 6em;
    color: white;
    top: 2.5%;
    left: 8%;
  }
  .submenu-mobile-navbar > ul {
    list-style: none;
  }
  .submenu-mobile-navbar > ul > li {
    font-size: 6em;
  }
  .submenu-mobile-navbar > ul > li > a {
    text-decoration: none;
    color: white;
  }

  .submenu-mobile-navbar.submenu-show {
    transform: translateX(0%);
  }

  .mobile-navbar.mobile-navbar-show {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=header.css.map */
