header {
  height: 90px;
  transition: 0.4s;
}

.aura-navbar {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
.aura-navbar .aura-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  transform: translateY(-100%);
  text-align: center;
}
.aura-navbar .aura-nav-menu .aura-nav-item {
  margin: 0 50px;
  font-size: 1.3rem;
  font-weight: 300;
}
.menu-active .aura-navbar .aura-nav-menu {
  transform: translateY(0%);
  opacity: 1;
}
.aura-navbar .aura-navbar-brand {
  max-height: 80px;
  flex: 0;
}

.aura-nav-link {
  color: black !important;
  text-decoration: none;
  position: relative;
}
.aura-nav-link:hover {
  color: black !important;
}
.aura-nav-link .aura-nav-text {
  position: relative;
}
.aura-nav-link.active .aura-nav-text-underline::before {
  content: " ";
  border-bottom: 2px solid black;
  position: absolute;
  bottom: -3px;
  left: 10px;
  width: calc(100% - 20px);
}
.aura-nav-link .aura-nav-text-underline::after {
  content: "";
  border-bottom: 2px solid black;
  position: absolute;
  bottom: -3px;
  left: 10px;
  width: calc(100% - 20px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.aura-nav-link:hover .aura-nav-text-underline::after {
  opacity: 1;
}

.aura-sub-nav {
  display: none;
  position: relative;
  list-style: none;
}
.aura-sub-nav:hover {
  display: block;
}

.aura-nav-link:hover + .aura-sub-nav {
  display: block;
}

.hamburger {
  display: inline-block;
  position: relative;
  width: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  height: 30px;
  z-index: 1000;
}
.hamburger-line {
  height: 3px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  width: 100%;
  background: #777;
}
.hamburger:hover .hamburger-line {
  background: #000;
}
.hamburger-line-top {
  top: 3px;
}
.menu-active .hamburger-line-top {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
.hamburger-line-middle {
  top: 50%;
  transform: translatey(-50%);
}
.menu-active .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}
.hamburger-line-bottom {
  bottom: 3px;
}
.menu-active .hamburger-line-bottom {
  bottom: 50%;
  transform: rotate(-45deg) translatey(50%);
}

.navbar-scrolled {
  height: 70px !important;
}

.navbar-white-transparent {
  background-color: rgba(255, 255, 255, 0.99);
}

@media all and (min-width: 992px) {
  header {
    height: 120px;
  }
  .aura-navbar .aura-nav-menu {
    flex-direction: row;
    opacity: 1;
    transform: translateY(0%);
    position: inherit;
    background-color: transparent;
  }
  .hamburger {
    display: none;
  }
  .aura-sub-nav {
    position: absolute;
    background-color: white;
    box-shadow: 5px 5px 5px -3px #D1D1D1;
    width: 300px;
  }
}/*# sourceMappingURL=header.css.map */