@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

.navbar {
  z-index: 999;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  font-size: 1.8rem;
  background-color: #FCFCFD;
  padding: 1.2rem 3rem;
  animation: navActive 1s ease-in-out;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.6431372549);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@keyframes navActive {
  from {
    transform: translateY(-160%);
  }
  to {
    transform: translateY(0);
  }
}
.logo-img {
  width: 40px;
  aspect-ratio: 1/1;
}

.navbar__links-container {
  position: absolute;
  left: 50vw;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__link {
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #667085;
  padding: 0.5rem;
  transition: color 0.3s;
}
.navbar__link::before {
  transition: width 0.5s;
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0.5rem;
  width: 0%;
  height: 0.2rem;
  background-color: #0086C9;
  border-radius: 5px;
}
.navbar__link:hover::before {
  width: calc(100% - 1rem);
}
.navbar__link:hover {
  color: #0086C9;
}

.navbar__contactUsBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.9rem 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #026AA2;
  color: white;
  font-family: "Inter", sans-serif;
  width: 16rem;
  outline: white 2px solid;
  transition: all 0.2s;
}
.navbar__contactUsBtn:hover {
  cursor: pointer;
  outline: #026AA2 2px solid;
  background-color: #FCFCFD;
  color: #026AA2;
}

.hamburger-btn {
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: #026AA2;
  width: 3.6rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.vertical-nav--active {
  height: 40rem;
}
.vertical-nav--active .vertical-navbar-links-container {
  display: flex;
}

.vertical-navbar__link {
  width: 100%;
  text-decoration: none;
  color: #667085;
  font-size: 1.8rem;
  padding: 1rem;
  transition: color 0.3s;
}
.vertical-navbar__link:hover {
  color: #0086C9;
}

.vertical-navbar-links-container {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.blur-brightness-effect {
  z-index: 1;
  filter: blur(2px) brightness(0.7);
}

@media (max-width: 900px) {
  .navbar__links-container {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .navbar__contactUsBtn {
    display: none;
  }
}/*# sourceMappingURL=navbar.css.map */