/*html {
  box-sizing: border-box;
  background: #1a1a1a;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir, "helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
}
nav {
  background: #212121;
  height: 70px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
nav #brand {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
nav #nav {
  position: relative;
  display: flex;
  height: 100%;
}
nav #nav li {
  padding: 0px 30px;
  cursor: pointer;
  line-height: 70px;
  transition: all 0.3s ease-out;
}
nav #nav li:hover {
  background: #333;
}
nav #nav li a {
  color: #fff;
}
@media (max-width: 768px) {
  nav #nav {
   /*display: none;*/
 /* }
}*/

#hamburger {
  font-size: 11px;
  position: absolute;
  right: 30px;
  top: 34px;
  z-index: 999;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}
#hamburger .line {
  height: 1px;
  background: #D9D9D9;
  margin: -3px auto;
  backface-visibility: hidden;
}
#hamburger.active #one {
  transform: rotate(45deg) translateX(16px) translateY(17px);
}
#hamburger.active #two {
  opacity: 0;
}
#hamburger.active #three {
  transform: rotate(-45deg) translateX(13px) translateY(-16px);
}

.mobile-menu {
  z-index: 1;
  position: relative;
  top: 224px;
  background: #000000;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  display: table;
}
.mobile-menu .mobile-menu__items {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
  padding-left: 0;
}
.mobile-menu .mobile-menu__items li {
  display: block;
  text-align: center;
  padding: 15px 0;
  text-align: center;
  font-size: 30px;
  min-height: 50px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.mobile-menu .mobile-menu__items li:hover {
  color: #fff;
  /* background: #212121; */
}
.mobile-menu .mobile-menu__items li:hover a {
  transition: all 0.3s ease-out;
  color: #fff;
}
.mobile-menu .mobile-menu__items li a {
  color: #D9D9D9;
}
.mobile-menu.active {
  visibility: visible;
  opacity: 0.99;
}

@media (max-width: 1010px) {
  #hamburger {
    visibility: visible;
    opacity: 1;
  }
  #navigation {
    float: none;
    visibility: hidden;
  }
  #nav li {
    float: none;
    margin-left: 0;
  }
}

@media (min-width: 1010px) {
  .mobile-menu {
    visibility: hidden !important;
  }
  #navigation {
    visibility: visible;
  }
}