body { 
  -webkit-animation: bugfix infinite 1s; animation: bugfix infinite 1s; z-index:1;
}

@keyframes bugfix { 
  from {padding:0;} 
  to {padding:0;} 
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
 .hamburger {
  padding: 32px 0; z-index:10!important;
  display: block; position:relative;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; float:right }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: white}

    header.smaller .hamburger { padding: 10px 0; }

.hamburger-box {
  width: 40px; z-index:10!important;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block; z-index:10!important;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * Spin
   */
   .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s; z-index:9999!important;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--spin .hamburger-inner::before { transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
    .hamburger--spin .hamburger-inner::after { transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg); z-index:9999!important;
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--spin.is-active .hamburger-inner::before {
      top: 0; z-index:9999!important;
      opacity: 0; 
      transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
    .hamburger--spin.is-active .hamburger-inner::after {
      bottom: 0; z-index:9999!important;
      transform: rotate(-90deg);  
      transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }


nav#ddfullscreenmenu{ /* Full screen nav menu */
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  -webkit-transform: scale(0.9);  /* initially scale down nav size */
  transform: scale(0.9);
  background: #82AF04; /* menu background color */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 20px;
	z-index: 100;
  opacity: 0;
  overflow: hidden;
  overflow-y: auto;
	text-align: center;
  -webkit-transition: visibility 0s 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  transition: visibility 0s 0.5s, opacity 0.5s, transform 0.5s;
}

nav#ddfullscreenmenu.openmenu{ /* open menu class */
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

#closex {display:none}


div#ulwrapper{
  position: relative;
  width: 90%; /* menu UL width */
  max-width:700px;
  margin: 5% auto;
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-perspective-origin: 50%;
  perspective-origin: 50%;
}

nav#ddfullscreenmenu ul{
  list-style: none;
  margin: 80px 0 0;
  padding: 5%;
  position: relative;
  max-width: 80vw;
  max-height: 100%;
  font-weight: 400; 
  line-height: 2em;
	-webkit-transition: all 0.5s .1s;
  font-family: 'Lato';
	transition: all 0.5s .1s;
}

nav#ddfullscreenmenu ul li{
  margin-bottom: 3px;
  position: relative;
  display: block;
  font-size:24px; text-align:center;
  border-bottom:1px solid rgba(255, 255, 255,0.2);
}

nav#ddfullscreenmenu ul li.header > a:after{ /* right arrow inside header LIs */
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 8px solid white;
  border-color: transparent transparent transparent white;
}

nav#ddfullscreenmenu ul.submenu{ /* style for non "first page" ULs */
  position: absolute;
  top: 0;
  left: 0;
	opacity: 0;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
}

nav#ddfullscreenmenu ul li a,
nav#ddfullscreenmenu ul li.breadcrumb{
    text-decoration: none;
    color: white; /* link color */ 
  padding: 5px 5px;
  display: block; line-height:1.15;
  cursor: pointer; font-weight: 400;
}

nav#ddfullscreenmenu ul li.breadcrumb{
  position: relative;
  color:rgba(255,255,255,0.15); margin-bottom:20px
}

nav#ddfullscreenmenu ul li.breadcrumb:after{ /* back arrow inside breadcrumb LI */
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid #fff;
  border-color: transparent #fff transparent transparent;
}

nav#ddfullscreenmenu ul li a:hover{
  background: none; color:rgba(255, 255, 255,0.6)
}

nav#ddfullscreenmenu ul li#menu-item-1900 {border-bottom:0px; margin-bottom:40px}

nav#ddfullscreenmenu ul.hidemenu{
  transform: rotateY(30deg) translateZ(-5px) !important;
  opacity: 0;
  pointer-events: none;
}

nav#ddfullscreenmenu ul.showmenu{
  transform: translate3d(0,0,0) !important;
  opacity: 1 !important;
  pointer-events: auto;
  width:80vw;
}

nav#ddfullscreenmenu ul .button {margin:0}

/* Larger than mobile */
  @media only screen and (min-width: 400px) {
      
  }

  /* Larger than phablet (also point when grid becomes active) */
  @media only screen and (min-width: 550px) {
	
    
  }

  /* Larger than tablet */
  @media only screen and (min-width: 750px) {
  	
nav#ddfullscreenmenu ul li { font-size:20px; }
.hamburger { padding: 35px 0; margin:0; display: inline-block;}
nav#ddfullscreenmenu div#closex{ /* Large x close button inside nav */
  top: 30px;
  right: 60px;
}

  }

  /* Larger than desktop */
  @media only screen and (min-width: 1000px) {


nav#ddfullscreenmenu ul li { font-size:24px; }

      

  
}

  /* Larger than Desktop HD */
  @media only screen and (min-width: 1200px) {

  nav#ddfullscreenmenu ul li { font-size:28px; }


      
  }
  
