header {
  background: #111;
  width: 100%;
  height: 100px;
}

.page-wrap {
  padding: 2rem 0;
}

/* Start Wordpress Menu CSS */
header .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header .menu li a {
  padding: .25rem 1rem;
  color: #fff;
}

header .menu li {
  position: relative;
}

header .menu li:first-child a {
  padding-left:  0;
}

header .menu li:last-child a {
  padding-right: 0;
}

header .menu li .sub-menu {
  display: none;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 15px;
  background: #fff;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 200px;
  border-radius: .25rem;
}

header .menu li .sub-menu a {
  color: #FF6600;
  padding: .25rem;
  display: block;
  text-decoration: none;
}

header .menu li .sub-menu a:hover {
  color:black;
}

header .menu .menu-item-has-children:hover .sub-menu {
  display: block;
}












/* End Wordpress Menu CSS */