#head-logo {
    position: fixed;
    top:18px;
    z-index: 200;
    left: 5%;
    color: #000000;
}


.menu-open {
  /* disbale scroll background*/
  overflow: hidden;
}

#menu-link {
  position: fixed;
  top:18px;

  height: 50px;
  width: 50px;
/*  -webkit-box-shadow: 0px 0 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.3);*/
    z-index: 200;
     border-radius: 50%;
     right: 5%;
     background-color: #202020;

}

#menu-link.is-clicked{
    background-color: #F7C723;
    color: #202020;
}

#menu-link:hover{
     /*background-color: #FFF;*/
}

#menu-link .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #383838;
  font-weight: 600;
  display: none;
}
#menu-link .menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #FFFFFF;

  /* these are the upper and lower lines in the menu menu */


}
#menu-link:hover .menu-icon{
    background-color: #F7C723;
} 
#menu-link .menu-icon::before, #menu-link .menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;

  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* apply transition to transform property */
  -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s;
}
#menu-link .menu-icon::before {
  /*bottom: 5px;*/
    -webkit-transform: translateY(-6px) rotate(0deg);
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -o-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}
#menu-link .menu-icon::after {
  /*top: 5px;*/
    -webkit-transform: translateY(6px) rotate(0deg);
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -o-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}
#menu-link.is-clicked .menu-icon {
     background-color: rgba(255, 255, 255, 0);
}
#menu-link.is-clicked .menu-icon::before, #menu-link.is-clicked .menu-icon::after {
  background-color: #FFFFFF;
    -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s;
}
#menu-link.is-clicked .menu-icon::before {
  /*bottom: 0;*/
  background-color: #202020;
   -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
#menu-link.is-clicked .menu-icon::after {
  /*top: 0;*/
  background-color: #202020;
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

/*end*/



.overlay {
    position: fixed;
    background: #000000;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s,visibility .35s,width .35s ease-in-out;
    transition: opacity .35s,visibility .35s,width .35s ease-in-out;
    overflow: hidden;
    z-index: 100;
}

.overlay.open {
    opacity: .9;
    visibility: visible;
    width: 100%;
    overflow: hidden;
}

.overlay nav {
    position: relative;
    height: 60%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 32px;
    font-weight: 400;
    text-align: center;
}

.overlay nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay nav ul li {
    display: block;
    height: 20%;
    height: -webkit-calc(100% / 5);
    height: calc(100% / 5);
    min-height: 32px;
    position: relative;
    /*opacity: 0;*/
}


.overlay nav ul li a {
    display: block;
    position: relative;
    color: #FFF;
    overflow: hidden;
}

.overlay nav ul li a:hover {
    text-decoration: none;
}

.overlay nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    transform: translateX(-105%);
    height: 3px;
    width: 100%;
    background: #F7C723;
    -webkit-transition: .35s ease;
    transition: .35s ease;
}

.overlay nav ul li a:hover:after {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
