/*! responsive-nav.js 1.0.39 by @viljamis */

.nav-collapse ul {
  margin: 0;
  width: 100%;
  display: block;
  list-style: none;
  margin: auto;
  overflow-x: scroll;
  white-space: nowrap;
}

.nav-collapse li {
  display: inline;
  white-space: nowrap;
}

.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;
  height: 100%;
}

.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;
}

@media screen and (min-width: 675px) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
    width: 401px;
  }
  .nav-toggle {
    display: none;
  }
}

@charset "UTF-8";

/* ------------------------------------------
  RESET
--------------------------------------------- */

div, h1, h2, h3, h4, h5, h6,
blockquote, pre, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section,
summary, hgroup {
  margin: 0;
  padding: 0;
  border: 0;
}

a:active,
a:hover {
  outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }


/* ------------------------------------------
  BASE DEMO STYLES
--------------------------------------------- */

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #37302a;
  background: #fff;
  font-family: "Avenir Light", Helvetica, Arial, sans-serif;
}

section {
  border-bottom: 1px solid #999;
  float: left;
  width: 100%;
  height: 800px;
}


/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */

.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: auto;
  float: right;
  white-space:nowrap;
}

.nav-collapse li {
  float: left;
  border-left: 1px #ffffff solid;
  display: inline-block;
}

.nav-collapse li:hover {
  background: #000000;
}

.nav-collapse a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  border-bottom: 1px solid white;
  padding: 0.7em 1em;
  float: left;
  font-weight: bold;
  font-size: 17px;
}

.nav-collapse a:hover {
  text-decoration: none;
}

@media screen and (min-width: 675px) {
  .nav-collapse a {
    margin: 0;
    float: left;
    text-align: center;
    border-bottom: 0;
    height: 50px;
    padding-top: 10px;
  }
  .nav-collapse ul ul a {
    display: none;
  }
}

.nav-collapse ul ul a {
  background: rgba(255, 102, 0, 1);
  padding-left: 2em;
}

@media screen and (max-width: 674px) {
  .nav-collapse.opened {
    width: 100%;
  }
  .nav-collapse li {
    width: 100%;
    border-left: none;
    text-align: left;
  }
  .nav-collapse li:hover {
    background: #000000;
  }
  .nav-collapse ul {
    padding-left: 0px;
    width: 100%;
  }
  .js .nav-collapse-0.opened {
    margin-top: 0px;
  }
}

/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

@font-face {
  font-weight: normal;
  font-style: normal;
}

.nav-toggle {
  -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: 70px;
  height: 50px;
  float: right;
  background-color: rgba(255, 102, 0, 1);
}

.nav-toggle:before {
  color: #ffffff; /* Edit this to change the icon color */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 45px;
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  line-height: 45px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle.active::before {
  font-size: 24px;
  content:"x";
  color: #FFFFFF;
}


@media screen and (max-width: 674px) {
  .nav-toggle {
    width: 10%;
    padding-right: 15px;
  }
  .nav-toggle:before {
    font-size: 45px;
    line-height: 45px;
  }
  #logo-section {
    width: 85%;
  }
  #s {
    width: 75%;
    padding: 2px 0 0 10px; 
  }
}

@media screen and (max-width: 415px) {
  .nav-toggle:before {
    padding: 0 0 0 0;
  }
}

