.navbar-toggler.active .top-bar {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler.active .middle-bar {
  opacity: 0;
}

.navbar-toggler.active .bottom-bar {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.navWrapper {
  position: sticky;
  top: 0;
  width: 100vw;
  z-index: 9;
}

.navbar {
  padding: 0;
}

.nav-link:hover {
  border-bottom: 1px solid #42006c;
  color: black;
}

.navbar-toggler {
  border: none;
  background: transparent;
  margin-right: 8px;
}

#navbarToggler:focus {
  box-shadow: none;
}

.navWrapper.scrolled {
  box-shadow: 0px 6px 20px 0px #0000002e;
  background-color: #fff;
}
.navbar-nav .dropdown-item:hover {
  background-color: unset;
}

.navbar-nav .nav-item > .nav-link {
  font-size: 18px;
  text-align: center;
}

.mobile-page-icon {
  display: none;
}

.nav-list-item {
  border: 1px solid rgba(0, 0, 0, 0);
}
/* Desktop */
@media (min-width: 1024px) {
  .navbar {
    min-height: 60px;
  }
  .navbar-nav .dropdown-menu {
    position: absolute;
    background-color: white;
    border-radius: 15px;
    box-shadow: -2px 4px 8px 0px #17002626;
    top: 36px;
    right: -10px;
    width: unset;
  }

  .navbar-toggler {
    display: none;
  }

  .mobileLogo {
    display: none;
  }

  .navbar-menu {
    position: relative;
    height: auto;
    transform: none;
    background-color: transparent;
    width: auto;
    display: flex;
    top: 0;
    align-items: center;
    gap: 56px;
    padding-right: 24px;
    width: 100vw;
  }

  .navbar-menu.scrolled {
    background-color: white;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-left: 5vw;
  }

  .nav-menu-item {
    margin-right: 20px;
  }

  .navbar-nav .dropdown-menu .dropdown-item.headerDropdownItem {
    font-size: 16px;
    border-bottom: 1px solid #0000001a;
  }
}

/* Mobile */
@media (max-width: 1024px) {
  .navbar-header {
    width: 100%;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link:hover {
    border-bottom: none;
  }

  .navWrapper {
    background-color: #f5f7f9;
  }

  .navItem {
    border-bottom: 1px solid #0000001a;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 5px 8px 5px 8px;
  }

  .navbar {
    padding: 0;
  }

  .navbar-header-logo {
    display: flex;
    align-self: center;
    justify-content: center;
    flex: 1;
  }

  .nav-list-item:active,
  .nav-list-item:focus,
  .nav-list-item:hover {
    background-color: #e3d9e999;
    font-weight: 700;
    border-radius: 4px;
  }

  .nav-list-item {
    padding-right: 16px;
    align-items: center;
    display: flex;
    gap: 16px;
    width: 100%;
  }

  .navbar-menu {
    display: none;
  }

  .navbar {
    height: 100%;
  }

  .navbar:not(:has(.show)) {
    height: 53px;
  }

  .HeaderDesktopIcon {
    display: none;
  }

  .mobileLogo {
    width: 155px;
  }

  .footerBottom {
    display: flex;
    flex-direction: column;
    padding-bottom: 64px;
    font-size: 14px;
    justify-content: center;
    align-items: center;
  }

  .footerBottomLinks {
    display: flex;
    justify-content: center;
    gap: 10px;

    .linkWithBorders {
      border-right: 1px solid;
      border-left: 1px solid;
      padding: 0px 8px;
    }
  }

  .footerCopyrights {
    padding-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;

    span {
      font-size: 20px;
    }
  }
  .navbar-menu.show {
    width: 100vw;
    height: calc(100vh - 53px);
    background: white;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    transform: translateX(0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-page-icon {
    width: 26px;
    height: 26px;
    display: flex;
  }
}
