*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.nav-container {
  max-width: 200px;
  margin: 0 auto;
  position: relative;
  font-family: "Open Sans", sans-serif;
}

.nav-list {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  top: auto;
  left: 0;
  cursor: pointer;
}
.nav-list::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
}
.nav-list::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.nav-list.is-open {
  padding-bottom: 2px;
  transition: all 0.6s ease;
}

.nav-list__item {
  display: none;
  position: relative;
  margin: 0;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
  background-color: #19222a;
  text-transform: none;
  font-weight: normal;
  list-style: none;
}
.nav-list__item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.nav-list__item:first-of-type {
  margin-top: 10px;
}
.nav-list__item:hover {
  background-color: #080D11;
}

.nav-list__item__text {
  padding: 0px;
}

@media screen and (min-width: 1025px) {
  .nav-container {
    margin: auto;
    position: relative;
  }
}/*# sourceMappingURL=lang.css.map */