.header-container {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header-top {
  padding: 6px 0;
  width: 100%;
  background-color: var(--primary);
  color: white;
}

.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-left-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.header-top-left-item a {
  color: white;
}
.header-top-left-item a:hover {
  color: white !important;
  opacity: 0.8 !important;
  scale: 1.1 !important;
}


.header-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-right a {
  color: white;
}


.header-bottom {
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: black;
}

.header-bottom-container {
  display: flex;
  justify-content: space-between;
}

.header-logo-img {
  height: 70px;
}

.header-menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}


.header-menu-link:hover {
  color: var(--primary);
}

.header-menu-right {
  display: flex;
  align-items: center;
}
