#lgBox {
  display: block;
  position: absolute;
  color: #cbad84;
  text-transform: uppercase;
  top: 60px;
  left: 20px;
  z-index: 1000;
}
#lgBox a {
  display: inline-block;
  color: #666;
  text-decoration: none; 
}
#lgBox a:hover {
  color: #cbad84; 
}


#menuToggle input,
#menuToggle span {
  display: none;
  z-index: 1000;
}
#menu {
  width: 100vw;
  height: 100%;
  text-align: center;
  list-style: none;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* border: 1px red solid; */
  top: 0;
  left: 0;
  margin-top: -100vh;
  z-index: 1000;
}
#menu li {
  text-align: center;
  /* flex-direction: column;   */
}
#menu li a {
  color: #666666;
  text-decoration: none;
  padding: 1vw 1.5vw;
  transition: ease 1s;
  font-family: "Spartan", sans-serif;
  text-transform: uppercase;
  font-size: 0.7vw;
  font-weight: 500;
}
#menu li a:hover,
#menu li a.ON {
  color: #000;
  background-color: #cbad84;
  transition: ease 0.5s;
}

/* ? NAV / MENU BURGER */

@media (max-width: 767px) {
  #menu {
    margin-top: -113vh;
  }
}

@media (max-width: 1023px) {
  #Page {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
  }

  
  #lgBox {
    top: 25px;
    left: 2.5vw;
  }
 
  
  #menuToggle {
    display: block;
    position: absolute;
    top: 60px;
    left: 3vw;
    z-index: 1000;
    -webkit-user-select: none;
    user-select: none;
    /* max-width: 100%; */
    /* overflow-x: hidden; */
    width: 40px;
    z-index: 1000;
  }

  #menuToggle a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
  }

  #menuToggle a:hover {
    color: tomato;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
    z-index: 1002;
  }

  /*
    * Just a quick hamburger
    */
  #menuToggle span {
    display: block;
    z-index: 1000;
    width: 35px;
    height: 2px;
    margin-bottom: 8px;
    position: relative;
    background: #666666;
    /* border-radius: 3px; */
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  #menuToggle span:hover {
    color: #cbad84;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  /* 
    * Transform all the slices of hamburger
    * into a crossmark.
    */
  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
    z-index: 1001;
  }

  /*
    * But let's hide the middle one.
    */
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  /*
    * Ohyeah and the last one should go the other direction
    */
  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  /*
    * Make this absolute positioned
    * at the top left of the screen
    */
  #menu {
    position: fixed;
    /* display: inline-table; */
    top: 0;
    left: 0;
    /* width: 100%;
    max-width: 100%; */
    height: 100vh;
    /* z-index: 20; */
    /* margin: 0px 0 0 0px; */
    /* padding: 50px; */
    /* padding-top: 125px; */
    background: #cbad84;
    /* list-style-type: none; */
    /* -webkit-font-smoothing: antialiased; */
    /* transform-origin: 0% 0%; */
    transform: translate(0, -100vh);
    /* transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0); */
    transition: transform 0.5s ease-in-out;
    padding: 0;
    margin: 0;
  }
  #menu li {
    padding: 10px 0;
    font-size: 22px;
    width: 100%;
    /* flex-direction: row; */
    /* grid-auto-rows: auto; */
    grid-gap: 0;
    /* grid: none; */
    margin: 5vw 0;
  }
  #menu li a {
    font-size: 2rem;
  }

  #menuToggle input:checked ~ ul {
    transform: none;
    margin-top: 0;
    transition: all 0.5s ease-in-out;
  }
  #menu .icon-logo_champagne-martel {
    font-size: 8rem;
    color: #666;
    margin-left: 50%;
    translate: -220%;
    line-height: 8rem;
    text-indent: -9999px;
    display: contents;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  #menu li a {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  #menuToggle {
    position: relative;
  }
  #menuToggle input,
  #menuToggle span {
    display: none;
  }
  #menu {
    width: 100%;
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px red solid; */
    margin: 32px 0 0 0;
    height: inherit;
    bottom: 0;
    position: absolute;
    z-index: 1000;
  }
  #menu li {
    text-align: center;
    flex-direction: column;
  }
  #menu li a {
    color: #666666;
    text-decoration: none;
    padding: 15px 25px 12px 25px;
    transition: ease 1s;
    font-family: "Spartan", sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
  }
  #menu li a:hover,
  #menu li.ON a {
    color: #000;
    background-color: #cbad84;
    transition: ease 0.5s;
  }
}
