.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fcfcfd;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  z-index: 1100;
}
.navbar.hidden {
  transform: translateY(-166%);
}
.navbar.open-menu {
  background-color: #101828;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.navbar__content__actions .menu-btn {
  width: 94px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  background-color: #101828;
  border-radius: 31px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}
.navbar__content__actions .menu-btn__text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: #fcfcfd;
  transition: all 0.3s ease;
}
.navbar__content__actions .menu-btn__icon svg path {
  fill: #fcfcfd;
  stroke: #fcfcfd;
}
.navbar__content__actions .menu-btn.open-menu {
  border: 1px solid #1d2939;
  background-color: #1d2939;
}

.nav-spacer {
  position: relative;
  width: 100%;
  min-height: 8.8125rem;
}
.nav-spacer.open-menu {
  background-color: #101828;
}
.nav-spacer.map-project {
  margin-bottom: 0;
}

/* Navbar Header */
.navbar-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f2f3f4;
  z-index: 1101;
  transition: transform 0.3s ease;
}
.navbar-header.hidden {
  transform: translateY(-100%);
}
.navbar-header.menu-open {
  transform: translateY(-100%);
}
.navbar-header__content {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  transition: all 0.3s ease;
}
.navbar-header__content__left .text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: #101828;
}
.navbar-header__content__right {
  display: none;
  align-items: center;
}
/* End Navbar Header */

/* NavbarLogo */
.navbar-logo {
  position: relative;
}
.navbar-logo__wrapper {
  width: 10.25rem;
  height: 2.4375rem;
}
.navbar-logo__image {
  width: 10.25rem;
  height: 2.4375rem;
}
.navbar-logo__image .common-image {
  width: 100%;
  height: auto;
}
.navbar-logo__image .common-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* END NavbarLogo */

/* NavbarMenuDropDown */
.navbar-menu-dropdown {
  position: relative;
  background-color: #fcfcfd;
  padding: 0 21px 16px 16px;
}
.navbar-menu-dropdown__dropdown-toggle {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  background-color: #115164;
  border-radius: 24px;
  cursor: pointer;
}
.navbar-menu-dropdown__dropdown-toggle__selected-text {
  width: calc(100% - 3.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-menu-dropdown__dropdown-toggle__selected-text span {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
  text-transform: uppercase;
}
.navbar-menu-dropdown__dropdown-toggle__arrow {
  position: relative;
  border-left: 1px solid #fcfcfd;
}
.navbar-menu-dropdown__dropdown-toggle__arrow .icon {
  width: 3.875rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-menu-dropdown__dropdown-menu {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  width: calc(100% - 37px);
  min-height: 97px;
  background: #fcfcfd;
  border: 1px solid #115164;
  border-radius: 24px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  margin: auto;
  list-style: none;
  z-index: 110;
}
.navbar-menu-dropdown__dropdown-menu :last-child.dropdown-item {
  border-radius: 0 0 24px 24px;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item {
  width: 100%;
  min-height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  border-bottom: 1px solid #d0d5dd;
  border-radius: 24px 24px 0 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__title {
  width: calc(100% - 3.875rem);
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__title span {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
  text-transform: uppercase;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__arrow {
  border-left: 1px solid #d0d5dd;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__arrow .icon {
  width: 3.875rem;
  min-height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* END NavbarMenuDropDown */

/* NavbarMenuMobile */
.navbar-menu-mobile {
  position: fixed;
  top: 6rem;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #fcfcfd;
  overflow: hidden;
  transition: all 0.8s ease;
  pointer-events: none;
  z-index: 240;
  display: flex;
  flex-direction: column;
  display: none;
  visibility: hidden;
}
.navbar-menu-mobile.open {
  display: flex;
}
.navbar-menu-mobile.open .navbar-menu-mobile__info-container {
  opacity: 1;
}
.navbar-menu-mobile__info-container {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  max-height: calc(100% - 92px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s ease;
}
.navbar-menu-mobile__top {
  padding-left: 16px;
  padding-right: 8px;
  padding-top: 3px;
}
.navbar-menu-mobile__top__content__go-back {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  width: 100%;
}
.navbar-menu-mobile__top__content__go-back svg {
  width: 15px;
  height: 14px;
}
.navbar-menu-mobile__top__content__go-back svg path {
  fill: #115164;
}
.navbar-menu-mobile__top__content__go-back__title__text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
}
.navbar-menu-mobile__top__content__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  border-bottom: 1px solid #9ba5b5;
}
.navbar-menu-mobile__top__content__item:first-child {
  border-top: 1px solid #9ba5b5;
}
.navbar-menu-mobile__top__content__item.child .navbar-menu-mobile__top__content__item__title__text {
  font-weight: 600;
  color: #101828;
}
.navbar-menu-mobile__top__content__item__title {
  padding-left: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding-right: 24px;
}
.navbar-menu-mobile__top__content__item__title__text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
}
.navbar-menu-mobile__top__content__item__title:hover {
  transition: all 0.3s ease;
  background-color: #e9faff;
}
.navbar-menu-mobile__top__content__item__arrow {
  width: 4.8125rem;
  height: 100%;
  border-left: 1px solid #9ba5b5;
  transition: all 0.3s ease;
}
.navbar-menu-mobile__top__content__item__arrow svg {
  width: 14px;
  height: 15px;
  padding-left: 9px;
}
.navbar-menu-mobile__top__content__item__arrow svg path {
  fill: #115164;
}
.navbar-menu-mobile__top__content__item__arrow:hover {
  transition: all 0.3s ease;
  background-color: #e9faff;
}
.navbar-menu-mobile__top__content__item.external .navbar-menu-mobile__top__content__item__arrow {
  border-left: none;
}
.navbar-menu-mobile__top__content__item.external .navbar-menu-mobile__top__content__item__arrow svg {
  width: 13px;
  height: 13px;
  padding-left: 0;
}
.navbar-menu-mobile__top__content__item.external .navbar-menu-mobile__top__content__item__arrow svg path {
  fill: #115164;
}
.navbar-menu-mobile__top__content__item.external .link-external-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding-right: 24px;
}
.navbar-menu-mobile__top__content__item.external .link-external-indicator svg {
  width: 13px;
  height: 13px;
}
.navbar-menu-mobile__top__content__item.external .link-external-indicator svg path {
  fill: #115164;
}
.navbar-menu-mobile__bottom-content {
  height: 80px;
  top: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #101828;
  padding: 0 20px 0 15px;
}

.navbar.hidden {
  transform: translateY(-100%);
}
.navbar.open-menu {
  background-color: #101828;
  margin-bottom: 0;
}

.navbar.open-menu .navbar__content {
  margin-bottom: 5px;
}

.navbar.open-menu .navbar__content .navbar__content__actions {
  justify-content: center;
  align-items: flex-end;
}

.navbar .navbar-logo {
  transition: all 0.3s ease;
}
.navbar .navbar-menu-desktop .info-parent__title span {
  transition: all 0.3s ease;
}
.navbar .navbar-menu-desktop__right-content svg path,
.navbar .navbar-menu-desktop__right-content span,
.navbar .navbar-menu-desktop__right-content button {
  transition:
    color 0.3s ease,
    fill 0.3s ease,
    stroke 0.3s ease;
}
.navbar__content__actions {
  flex-direction: column;
}
.navbar__content__actions .menu-btn {
  width: 94px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  background-color: #101828;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}
.navbar__content__actions .menu-btn__text {
  font-size: 0.9375rem;
  line-height: 1.2;
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 700;
  color: #fcfcfd;
  transition: all 0.3s ease;
}
.navbar__content__actions .menu-btn__icon svg path {
  fill: #fcfcfd;
  stroke: #fcfcfd;
}
.navbar__content__actions .menu-btn.open-menu {
  background-color: #1d2939;
}
.navbar__content__actions .menu-btn.open-menu .menu-btn__text {
  font-size: 0.9375rem;
  line-height: 1.2;
  font-family: var(--font-archer);
  font-weight: 700;
}
/*Start Navbar Logo*/
.navbar-logo {
  display: inline-flex;
  align-items: center;
  z-index: 105;
}
.navbar-logo__wrapper {
  width: 6.8125rem;
  height: 2.8125rem;
  margin: unset !important;
}
.navbar-logo__image {
  width: 10.25rem;
  height: 2.4375rem;
}
/*End Navbar Logo*/

.navbar-menu-mobile * {
  pointer-events: none;
  visibility: hidden;
}
.navbar-menu-mobile.open {
  top: 160px;
  height: calc(100vh - 160px);
  height: calc(100svh - 160px);
  pointer-events: auto;
  visibility: visible;
}
.navbar-menu-mobile.open * {
  pointer-events: auto;
  visibility: visible;
}
.navbar-menu-mobile__bottom-content {
  width: 100%;
}
/*End Navbar Mobile*/

@media screen and (min-width: 768px) {
  /*Tablet Nav Start*/
  .navbar {
    margin-bottom: 0;
  }
  .navbar__content {
    height: 6rem !important;
    padding: 0 48px 0 48px !important;
  }
  .navbar__content__actions {
    gap: 8px;
  }

  .nav-spacer {
    min-height: 9.5rem;
  }
  /*Tablet Nav End*/
}
