/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: block;
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  right: 0.8rem;
  margin: 0;
  overflow: visible; 
}
.hamburger:hover {
    opacity: 0.7; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 2px; 
}
@media screen and (max-width: 35.438em) {
.hamburger-box {
    width: 40px;
    height: 35px !important;
    }
.hamburger-inner:before {
    top: -8px;
}
.hamburger-inner:after {
    bottom: -8px;
}
.hamburger {
    padding: 0px 0px 0px !important;
    height: 40px;
    width: 40px;
    margin: -3px auto 0;
    top: 5px;
    }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 3px;
    background-color: #000 ;
}


}
@media screen and (min-width: 35.439em) and (max-width: 47.000em) {
.hamburger-box {
    width: 40px;
    height: 30px ;
    }
.hamburger-inner:before {
    top: -9px;
}
.hamburger-inner:after {
    bottom: -9px;
}

}
@media screen and (min-width: 47.01em) {
.hamburger {
  display: none;
  }

}
  
@media screen and (min-width: 56.875em) {
  .hamburger {
  display: none;
  }

  
}


.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
