.navbar {
  /* background-color: rgba(255, 255, 255, 1) !important; */
  /* backdrop-filter: blur(5px); */
  /* padding: 0.5rem 5rem; */
  transition: all 0.2s ease;
  z-index: 999;
  background-repeat: no-repeat;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3) !important;
  /* background-size: cover; */
}

.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #007bff;
    transition: all 0.3s ease;
    /* transform: translateX(-50%); */
}

.nav-link.active::after {
    width: 100%;
}

.top-bar {
  padding: 10px 0;
  position: absolute;
  inset: 0;
  height: 45px;
  width: 100%;
  z-index: 99;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-bar-left span {
  font-size: clamp(8px, 1vw, 14px) !important;
}

.top-bar-left .fa-location-dot {
  color: #ff0000;
  margin-right: 5px;
}

.top-bar-left .fa-envelope {
  margin-right: 5px;
}

.top-bar-left .fa-phone-volume {
  color: var(--primary-color);
  margin-right: 5px;
}


/* end style main */

/* media query ------------------------------------*/
@media screen and (max-width: 468px) {
  .top-bar {
    width: 100%;
    justify-content: center;
  }

  .top-bar-left {
    display: flex;
    justify-content: space-between;
  }

  .top-bar-left .fa-location-dot,
  .top-bar-left .fa-envelope,
  .top-bar-left .fa-phone-volume {
    margin-right: 0;
  }

  .navbar {
    padding: 0.8rem 2rem;
  }


}
