.site-header {
  width: 100%;
  padding: 10px 0px;
  display: flex;
  position: sticky;
  z-index: 999;
}
.site-header .container {
  width: 100%;
  background-color: var(--color-primary-bg);
  display: flex;
  align-items: center;
}

.menu-item .mega-menu-dropdown {
  display: none;
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%; /* full width across nav */
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.menu-item:hover > .mega-menu-dropdown {
  display: block;
}

.nav-logo {
  width: 20%;
}
.nav-menu {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu {
  /* position: relative; */
  list-style: none;
  display: flex;
  margin: 5px 0px;
  justify-content: center;
  gap: 30px;
}

.menu ul {
  margin: 2px 0px;
  list-style: none;
  display: flex;
}
.menu a {
  position: relative;
  color: white;
  padding: 5px;
  text-decoration: none;
}
.menu a::after {
  position: absolute;
  content: "";
  background-color: black;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 0%;
  height: 2px;
  transition: 0.5s;
}
.menu a:hover::after {
  position: absolute;
  content: "";
  background-color: black;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 2px;
  transition: 0.5s;
}

.menu .sub-menu {
  display: none;
}

.menu li:hover > .sub-menu {
  display: block;
  position: absolute;
  background-color: beige;
  width: 100%;
  left: 0;
  top: 52px;
  border-radius: 5px;
}
.sub-menu .menu-item-object-page {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}
.sub-menu .menu-item-object-page a {
  position: relative;
  padding: 8px 15px;
}
.sub-menu .menu-item-object-page a::after {
  position: absolute;
  content: "";
  background-color: black;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 0%;
  height: 1px;
  transition: 0.5s;
}

.sub-menu .menu-item-object-page a:hover::after {
  position: absolute;
  content: "";
  background-color: black;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 1px;
}
