/*! responsive-nav.js 1.0.39 by @viljamis */
 .nav-toggle {
    display: none;
  }
  button {
    display: none;
  }
@media only screen and (max-width: 480px) {
  .nav-collapse ul {
    margin: 0;
    padding: 0;
    width: 100%; 
    display: block;
    list-style: none;
  }

  .nav-collapse li {
    width: 100%;
    display: block;
  }

  .js .nav-collapse {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: block;
    overflow: hidden;
    zoom: 1;
  }

  .nav-collapse.opened {
    max-height: 9999px;
    z-index: 9999;
  }

  .nav-toggle {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
  }

  .js .nav-collapse {
    position: relative;
    width: 100%;
    background: rgba(255,255,255,1);
    right: inherit;
    top: inherit;
      transition: all .2s linear 0.1s;

  }
  .js .nav-collapse.closed {
    max-height: 0;
  }
  .nav-toggle {
    display: inline-block;
    width: 100%;
    width: 70px;
    height: 55px;
    position: absolute;
    top: 32px;
  }

  .nav-toggle {
    position: absolute !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    text-indent: -999px;
    position: relative;
    overflow: hidden;
    width: 45px;
    height: 45px;
    float: right;
    right: 4px;
    z-index: 99999999;
    transition: all 250ms ease-in-out;

  }

  .nav-toggle:before {
    color: #000; /* Edit this to change the icon color */
    font-family: "responsivenav", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-size: 38px;
    text-transform: none;
    position: absolute;
    content: "≡";
    text-indent: 0;
    text-align: center;
    line-height: 50px;
    speak: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 1px;
    transition: all 250ms ease-in-out;
  }
  
  .fixed .nav-toggle::before{
    color: #fff;
  }

  .nav-toggle:hover:after {
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    bottom: 0px;
  }

  .nav-toggle.active::before {
    font-size: 24px;
    content: "—";
    color: #000;

  }
  .fixed .nav-toggle.active::before{
    color: #fff;
  }
  .nav-toggle.active:before{
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  .nav-collapse,
  .nav-collapse * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .nav-collapse,
  .nav-collapse ul {
    list-style: none;
    width: 100%;
  }

  .nav-collapse li {
    width: 100%;
  }

}

@font-face {
  font-family: "responsivenav";
  src:url("../icons/responsivenav.eot");
  src:url("../icons/responsivenav.eot?#iefix") format("embedded-opentype"),
    url("../icons/responsivenav.ttf") format("truetype"),
    url("../icons/responsivenav.woff") format("woff"),
    url("../icons/responsivenav.svg#responsivenav") format("svg");
  font-weight: normal;
  font-style: normal;
}