
#lgBox {
  color: #c1a583;
  margin-bottom: 1vw;
  font-size: calc(14px + 0.25vw);
  top: 20px;
  position: absolute;
}
#lgBox a {
  text-decoration: none;
  font-size: calc(14px + 0.25vw);
  text-transform: uppercase;
}
#lgBox a.ON {
  color: #183a68;

}

nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

#menuToggle {
  display: block;
  position: fixed;
  top: 50px;
  left: 2.5vw;
  -webkit-user-select: none;
  user-select: none;
  padding: 10px 10px 1px 10px;
  background-color: #fff;
  margin-left: -10px;
  border-radius: 5px;
}

#menuToggle a {
  text-decoration: none;
  color: #c1a583;
   transition: color 0.3s ease-in-out;
   transition: transform 1s;
}

#menuToggle a:hover {
  color: #fff;
  margin-top: 15px;
  transform: scale(1.5);
  transition: transform 1s;
}

#menuToggle input {
  display: block;
  width: 50px;
  height: 32px;
  position: absolute;
  top: 5px;
  left: 2px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 2px;
  margin-bottom: 7px;
  position: relative;
  background: #c1a583;
  z-index: 1;
  transform-origin: 3px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#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(-3px, -1px);
  background: #c1a583;
}

/*
 * 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: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;
    margin-top: 0px;
    margin-left: 0px;
    padding: 0;
    top: 0;
    left: 0;
    background: #221d3e;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(0, -100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    overflow: hidden;
    margin-left: -50px;
    margin-top: -50px;
    margin-top: -50px;
    margin-left: -2.5vw;
    background: #1e1743 url(/img/bg_popup.jpg)center no-repeat;
    background-size: 100%;
    background-position: top;
}

#menu li {
  padding: 0;
  text-align: center;
  font-family: 'Bellefair', serif;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
}
#menu li.logoMenu {
  height: auto;
}


#menu li { font-size: 2.5em; transition: all 0.2s; }
#menu li:hover { font-size: 6em; }
#menu li:hover + li { font-size: 4em; }
#menu li:hover + li + li { font-size: 4em; }

#menu li.logoMenu img {
  height: 8vw;
  margin: 3vw 0 3vw 0;
}
#menu li a {
    color: #646078;
  padding: 0px 0;
  text-align: center;
  transition-duration: 1s;
  -moz-transition-duration: 1s;
  font-family: 'Bellefair', serif;
  z-index: 20;

}
#menu li a:hover {
  z-index: 10;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

@media all and (max-width: 568px){
  #menu{
    background-size: 150%;
  }
}

@media all and (max-width: 414px){
  #menu li{
    margin-bottom: 2.5vw;
  }
  #menu{
    background-size: 200%;
  }
}



