@font-face {
  font-family: "Mulish";
  src: url("/assets/fonts/Mulish-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Mulish";
  src: url("/assets/fonts/Mulish-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Mulish";
  src: url("/assets/fonts/Mulish-Bold.woff") format("woff");
  font-weight: 700;
}
.navbar-section {
  max-width: 1440px;
  width: 100%;
}
.navbar-section .navbar {
  max-width: 1440px;
  width: 100%;
  height: 102px;
  padding: 0px 135px;
  border-bottom: 1px solid #dee3ed;
}
.navbar-section .navbar .nav-logo {
  width: 144px;
  height: 70px;
}
.navbar-section .navbar .nav-links {
  width: 268px;
  height: 100%;
  gap: 36px;
}
.navbar-section .navbar .nav-links .nav-link {
  width: 63px;
  height: 100%;
  color: #222943;
  font-family: "Mulish", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 22px !important;
}
.navbar-section .navbar .nav-links .nav-link.active {
  color: #0058ad;
  position: relative;
}
.navbar-section .navbar .nav-links .nav-link.active::before {
  content: "";
  position: absolute;
  background: #0058ad;
  width: 63px;
  height: 8px;
  border-radius: 8px 8px 0px 0px;
  bottom: 0;
}
.navbar-section .navbar .navbar-button {
  display: none;
  outline: none;
  border: none;
  background: transparent;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .navbar-section {
    z-index: 20;
  }
  .navbar-section .navbar {
    position: relative;
    padding-inline: 12px;
    width: 100% !important;
    background: #f8f9fb;
  }
  .navbar-section .navbar .nav-links {
    position: absolute;
    z-index: -1;
    background: #f8f9fb;
    justify-content: flex-start !important;
    padding: 4%;
    top: -200%;
    flex-direction: column;
    height: auto;
    width: 100%;
    left: 0;
    transition: top 0.3s linear;
  }
  .navbar-section .navbar .nav-links .nav-link.active {
    color: #0058ad;
    position: relative;
  }
  .navbar-section .navbar .nav-links .nav-link.active::before {
    display: none;
  }
  .navbar-section .navbar-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .navbar-section .navbar-button .nav-sticks {
    width: 24px;
    height: 24px;
    gap: 3px;
  }
  .navbar-section .navbar-button .nav-sticks .nav-stick {
    width: 18px;
    height: 2px;
    background-color: black;
    transition: transform 0.2s linear;
    transform-origin: 30%;
  }
  .navbar-section .navbar-button .nav-sticks .rotate1 {
    transform: rotateZ(45deg);
  }
  .navbar-section .navbar-button .nav-sticks .rotate2 {
    transform: rotateZ(-45deg);
  }
}/*# sourceMappingURL=navbar.css.map */