.mob-navbar {
  position: relative;
  background: #fff;
  z-index: 1000;
}

.mob-navbar .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem 0.8rem;
  border-bottom: 0.0625rem solid #eee;
}

.mob-navbar .logo img {
  max-width: 70%;
  height: unset;
  width: unset;
}

.mob-navbar .hamburger {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.mob-navbar .hamburger .bar {
  width: 1.375rem;
  height: 0.125rem;
  background-color: #000;
  display: block;
}

.mob-navbar .menu {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 100%;
  background: #fff;
  z-index: 999;
  padding: 0 1.2rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.16);
  border-radius: 0 0 0.5rem 0.5rem;
  transition: max-height 0.35s ease;
}

.mob-navbar .menu.active {
  max-height: 31.25rem;
  padding-bottom: 1rem;
}

.mob-navbar .dropdown {
  width: 100%;
  border: none;
  border-bottom: 0.0625rem solid rgba(0, 74, 97, 0.2);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.mob-navbar .dropdown-toggle span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #063674;
}

.mob-navbar .pricing {
  font-size: 1.3rem;
  font-weight: 500;
  color: #063674;
  text-decoration: none;
}

.mob-navbar .dropdown img {
  width: 1.3rem;
  height: 1.3rem;
  transition: transform 0.3s ease;
}

.mob-navbar .dropdown.active .header-arrow-icon {
  transform: rotate(180deg);
}

.mob-navbar .dropdown-content {
  max-height: 0;
  overflow: hidden;
  background-color: #063674;
  border-radius: 0.3125rem;
  padding: 0 1rem;
  transition: max-height 0.3s ease;
}

.mob-navbar .dropdown-content.active {
  max-height: 15.625rem;
}

.mob-navbar .sub-dropdown {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0.9rem 0;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.45);
}

.mob-navbar .sub-dropdown:last-child {
  border-bottom: none;
}

.mob-navbar .no-border {
  border-bottom: none;
}

.mobile-number-footer {
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -0.1875rem 0.625rem rgba(0, 0, 0, 0.1);
}

.mobile-number-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: #063674;
  text-decoration: none;
  font-weight: 500;
}
