
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}




.navbar {

  z-index: 9000;
  position: absolute;
  /*
  top: var(--space-s);
  */
  left: var(--space-s);
  right: var(--space-s);
  border: 1px solid #b2b2b24a;
  --navbar-height: 106px;
  --navbar-background: #ffffff;
  --navbar-border-radius: var(--space-3xs);
  border-radius: var(--navbar-border-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  background-color: var(--navbar-background);

}


.site_header {
  display: flex;
  top: 0;
  right: 0;
  left: 0;
  height: 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
}

.nav-brands {
  margin-right: var(--space-xs)
}

.nav-brand {
  max-width: 115px;
  object-fit: contain;
  display: inline;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  font-size: var(--paragraph-1);
  /* z-index: 10000; */
  border-radius: var(--navbar-border-radius);
}

.nav-links::before {
  backdrop-filter: blur(10px);
}


.nav-item:not(:first-of-type) {
  margin-left: var(--space-m);
}

.nav-link {
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-item {
  flex: 1 1 auto; /* Allow items to grow and shrink */
}



.nav-btn {
  height: fit-content;
  padding: var(--space-2xs) var(--space-s);
  font-weight: bold;
  background-color: var(--primary-color);
  border: 1px solid #ececec;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-link, .nav-btn {
  white-space: nowrap;
}



/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 35px;
  height: 5px;
  background-color: #515151c9;
  margin: 4px 0;
}


/* Responsive styles */
@media (max-width: 1050px) {
  .nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    flex-direction: column;
    display: none;
    font-size: var(--paragraph-5);
    background-color: var(--navbar-background);
    border: 1px solid #b2b2b24a;

  }

  .nav-item:not(:first-of-type) {
    margin-left: 0;
  }
  

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    text-align: center;
    margin: var(--space-xs) 0;
  }

  .nav-btn {
    margin: var(--space-m) auto;
  }

  .hamburger {
    display: flex;
  }

}