.header {
  max-width: 1440px;
  width: 96%;
  height: 96px;
  display: flex;
  align-self: flex-end;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}

.logo {
  width: 48px;
  height: 48px;
}

.navbar-decoration-line {
  max-width: 473px;
  width: 473px;
  height: 1px;
  background: #ffffff;
  mix-blend-mode: normal;
  opacity: 0.25;
  position: relative;
  z-index: 3;
  left: 3%;
}

.navbar-container {
  max-width: 830px;
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(81.5485px);
          backdrop-filter: blur(81.5485px);
  transition: all 300ms ease-in-out;
}

@supports (-moz-appearance: none) {
  .navbar-container {
    background-color: #1b304d;
  }
}
.navbar {
  max-width: 542px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-right: 9%;
}

.res-navbar-close-btn-container {
  height: 96px;
  width: 100%;
  display: none;
  justify-content: flex-end;
  align-items: center;
}

.res-navbar-close-btn {
  width: 20px;
  height: 21px;
  padding-right: 1rem;
}

.nav-item {
  list-style: none;
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: all 300ms ease-in-out;
}
.nav-item:hover {
  border-bottom: 3px solid rgba(255, 255, 255, 0.459);
}

.nav-link {
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.7px;
}

.nav-link-num {
  font-weight: 700;
  margin-right: 0.4rem;
}

.active-nav-link {
  border-bottom: 3px solid #ffffff;
}

.hamburger-btn-container {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  display: none;
}

.hamburger-btn {
  width: 24px;
  height: 21px;
}

@media (max-width: 1130px) {
  .nav-link {
    font-size: 14px;
  }
  .nav-link-num {
    font-size: 16px;
  }
}
@media (max-width: 1115px) {
  .navbar {
    margin-right: 0 !important;
  }
}
@media (max-width: 960px) {
  .nav-link-num {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar-decoration-line {
    display: none;
  }
  .nav-link {
    letter-spacing: 2.36px;
  }
}
@media (max-width: 600px) {
  .header {
    width: 90%;
    align-self: center;
  }
  .logo {
    width: 40px;
    height: 40px;
  }
  .navbar-container {
    max-width: 67%;
    width: 67%;
    position: fixed;
    top: 0;
    right: -500px;
    z-index: 10;
    flex-direction: column;
    justify-content: flex-start;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    justify-content: flex-start;
    height: -moz-max-content;
    height: max-content;
    max-height: 50%;
  }
  .nav-item {
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 2.5rem;
  }
  .nav-link {
    font-size: 16px;
  }
  .nav-link-num {
    display: inline-block;
  }
  .active-nav-link {
    border-bottom: 3px solid transparent;
  }
  .hamburger-btn-container {
    display: inline-block;
  }
  .res-navbar-close-btn-container {
    display: flex;
    align-self: flex-end;
  }
}/*# sourceMappingURL=header.css.map */