/* Header Styles */

/* --- CONTACT HEADER --- */

.contact-header-bar {
  background: #222;
  color: #fff;
  font-size: 13px;
  padding: 0;
  margin: 0;
}

.contact-header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
  min-height: 32px;
  width: 100%;
}

.contact-item {
  margin-left: 0;
}

.contact-logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
  min-width: 120px;
}

.contact-logo img {
  max-height: 38px;
  width: auto;
  display: block;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-weight: 300;
}

.contact-header-bar .icon {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* --- MAIN HEADER --- */

.main-header-bar {
  background: #232323;
  color: #fff;
  position: relative;
  z-index: 10;
}

.main-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}

.main-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 0 16px;
  width: 100%;
}

.main-header-flex .logo-wrapper {
  margin-right: auto;
}

.main-header-flex .nav-menu-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 48px;
  width: auto;
  max-width: 180px;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .contact-header-bar {
    display: none !important;
  }
  .main-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    padding: 0 8px;
  }
  .logo-wrapper {
    min-width: 120px;
}

.logo-nav-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}
}