.navbar-bg {
  position: sticky !important;
  top: 0;
  z-index: 99;
  background-color: white;
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.1);
}
.navbar-container {
  height: 80px;
  /* background-color: brown; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 100%;
  max-height: 60px;
}
.menu-nav-link {
  transition: 0.3s;
}
.menu-nav-link:hover {
  color: var(--primary-orange) !important;
}
.contact-us-btn {
  height: 42px;
  background-color: var(--primary-orange);
  padding: 0px 16px;
  display: flex;
  align-items: center;
  color: white !important;
  transition: 0.3s;
}
.contact-us-btn img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}
.contact-us-btn:hover {
  color: white;
  opacity: 0.7;
}
@media (width < 1200px) {
  .logo img {
    width: 100%;
    max-height: 60px;
  }
}

@media (width >= 992px) {
  .nav-items-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.4s;
    font-weight: 500;
  }

  .nav-open-btn {
    display: none;
  }
  .side-nav-logo-close-btn {
    display: none;
  }
}
@media (width < 992px) {
  .desktop-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s ease-in-out;
  }

  .nav-open-btn {
    font-size: 24px;
    color: var(--primary-orange);
    display: block;
  }
  .nav-items-container {
    width: 300px;
    min-width: fit-content;
    height: 100%;
    background-color: rgb(255, 255, 255);
    margin-left: auto;
    overflow-y: auto;
    position: absolute;
    right: 0;
    right: -100%;
    z-index: 99;
    transition: 0.4s ease-in-out;
  }
  .show-menu {
    opacity: 1;
    pointer-events: initial;
  }
  .show-menu .nav-items-container {
    right: 0;
  }

  .side-nav-logo-close-btn {
    display: flex;
    justify-content: space-between;
    padding: 0px 24px;
    height: 100px;
    font-size: 24px;
    align-items: center;
  }
  .side-menu-logo img {
    width: auto;
    height: 56px;
  }
  .nav-open-btn {
    display: block;
  }
  .nav-items-container li a {
    padding: 16px 24px;
  }
  .contact-us-btn {
    width: fit-content;
    margin-left: 24px;
    margin-top: 20px;
  }
}

@media (width < 768px) {
  .navbar-container {
    height: 70px;
  }
  .logo img {
    width: 100%;
    max-height: 56px;
  }
  .side-nav-logo-close-btn {
    padding: 0px 24px;
    height: 70px;
  }
}
