@charset "UTF-8";
/**
 * RESPONSIVE NAV JS
 * http://jsfiddle.net/csswizardry/ev598/
 * http://jsfiddle.net/shanomurphy/zp376/
 * =================
*/
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
.linea-nav{
  width: 100vw;
  position: absolute;
  top: 2.2rem;
  left: 0;
  z-index: 99;
}
.responsive-nav {
  position: absolute;
  width: 100vw;
  /* max-width: 20em; */
  padding-top: 1rem;
  overflow: hidden;
}
@media (min-width: 50em) {
  .responsive-nav {
    /* max-width: 100%; */
    text-align: center;
    margin-bottom: 1em;
    /* height: 66px; */
  }
}
@media (min-width: 50em) {
  .responsive-nav .slider {
    position: absolute;
    bottom: 0;
    width: 16.665%;
    height: 3px;
    transition: all 0.3s ease-in-out;
  }
}

@media (min-width: 50em) {
  [class*=-dark] .responsive-nav {
    background-color: #282828;
  }
}

@media (min-width: 50em) {
  [class*=-light] .responsive-nav {
    background-color: #e2e47c;
  }
}

@media (min-width: 50em) {
  [class*=-dark] .slider {
    background-color: #fb4934;
  }
}

@media (min-width: 50em) {
  [class*=-light] .slider {
    background-color: #b8bb26;
  }
}

.responsive-nav--open {
  overflow: visible;
}

.responsive-nav__list {
  float: right;
  list-style: none;
  margin: 4rem 1rem 0rem 0rem;
  padding: 0;
  background-color: #ffb547;
  /* border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; */
  width: auto;
  position: relative;
  z-index: 999;
}
.responsive-nav--open .responsive-nav__list{
  margin: 2rem auto;
}
@media (max-width: 50em) {
  .js .responsive-nav__list {
    position: absolute;
    width: 100%;
  }
}
@media (min-width: 50em) {
  .responsive-nav__list {
    /* background: none; */
  }
}
/*
.responsive-nav__item {
  border-top: 1px solid #fc7666;
} */
@media (min-width: 50em) {
  .responsive-nav__item {
    /* float: right; */
    display: inline-block;
    border: 0 solid transparent;
    border-top-width: 3px;
    border-bottom-width: 0;
    width: auto;
    padding: .5rem 3rem;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transition: border 3s linear 0.5s;
  }
}

[class*=-dark] .responsive-nav__item:hover {
  border-color: #fb4934;
}

[class*=-light] .responsive-nav__item:hover {
  border-color: #b8bb26;
}

@media (min-width: 50em) {
  .responsive-nav__item.active {
    position: relative;
  }
}
@media (min-width: 50em) {
  [class*=-dark] .responsive-nav__item.active {
    border-color: #fb4934;
  }
}

@media (min-width: 50em) {
  [class*=-light] .responsive-nav__item.active {
    border-color: #b8bb26;
  }
}

.responsive-nav__toggle, .responsive-nav__link {
  color: #000;
  display: block;
  text-transform: uppercase;
  font-size: .8rem;
  white-space: nowrap;
  padding-right: 14px;
  padding-left: 14px;
  line-height: 44px;
  text-align: center;
}

@media (min-width: 50em) {
  .responsive-nav__link {
    padding: 0;
    transition: color 0.75s linear 0.25s;
  }
  .responsive-nav__link:hover {
    color: #fdf4c1;
  }
}

@media (min-width: 50em) {
  [class*=-dark] .responsive-nav__link {
    color: #fb5f4d;
    border-bottom: 3px solid #32302f;
  }
}

@media (min-width: 50em) {
  [class*=-light] .responsive-nav__link {
    color: #87580f;
    border-bottom: 3px solid #f2e5bc;
  }
}

@media (min-width: 50em) {
  .responsive-nav__item.active .responsive-nav__link {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 50em) {
  [class*=-dark] .responsive-nav__item.active .responsive-nav__link {
    color: #fdf4c1;
    background-color: #1d2021;
  }
}

@media (min-width: 50em) {
  [class*=-light] .responsive-nav__item.active .responsive-nav__link {
    color: #282828;
    background-color: #f9f5d7;
  }
}

.responsive-nav__toggle {
  display: inline-block;
  background: #ffb547;
  /* min-width: 44px; */
  border-radius: 3px;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
  float: right;
  margin-right: 1rem;
}
.responsive-nav--open .responsive-nav__toggle{
  margin: 0;
}
.responsive-nav__toggle:before {
  content: "☰";
  font-size: 16px;
  line-height: 1;
}
.responsive-nav__toggle:hover {
  text-decoration: none;
}
.responsive-nav--open .responsive-nav__toggle {
  width: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  text-align: right;
}
.responsive-nav--open .responsive-nav__toggle:before {
  content: "✕";
}
@media (min-width: 50em) {
  .responsive-nav__toggle {
    display: none;
  }
}

html[class*=-dark],
[class*=-dark] body {
  background-color: #1d2021;
}

html[class*=-light],
[class*=-light] body {
  background-color: #f9f5d7;
}

body {
  margin: 0;
  /* padding: 0 2.5em; */
  /* font: 100%/1.375 AvenirNext-Regular, Corbel, "Lucida Grande", "Trebuchet Ms", sans-serif; */
  background: inherit;
  min-height: 100%;
  box-sizing: border-box;
}

[class*=-dark] body {
  background-image: linear-gradient(to bottom, #282828, #282828 68px, transparent 68px, transparent);
}

[class*=-light] body {
  background-image: linear-gradient(to bottom, #e2e47c, #e2e47c 68px, transparent 68px, transparent);
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

a {
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}

button {
  text-transform: none;
}

/* button {
  -webkit-appearance: none;
  overflow: visible;
  border-radius: 4px;
  background-clip: padding-box;
  background-image: linear-gradient(to bottom, white, #ddd);
  border: 1px solid;
  border-color: #ddd #bbb #999;
  cursor: pointer;
  color: #333;
  display: inline-block;
  outline: 0;
  overflow: visible;
  margin: 18em 0 0.5em;
  padding: 1em 2em;
  text-shadow: white 0 1px 1px;
  text-decoration: none;
  vertical-align: top;
  width: auto;
  font-size: 16px;
  line-height: 1.3;
} */

button:focus {
  /* box-shadow: #06f 0 0 5px 0; */
  z-index: 1;
}

button:hover {
  background-image: linear-gradient(to bottom, white, #eee 1px, #ccc);
  text-decoration: none;
}

button:active {
  background-image: linear-gradient(to bottom, #ddd, #eee);
  box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  border-color: #999 #bbb #ddd;
}

button::-moz-focus-inner, input::-moz-focus-inner, button::-webkit-focus-inner, input::-webkit-focus-inner {
  border: 0;
  padding: 0;
}
.logo-nav{
  display:inline-block;
  float: left;
  margin: 2rem 0 0 5rem;
  position: relative;
  z-index: 999;
}
.logo-nav img{
  max-width: 9rem;
}
