.nav {
  display: block;
}
.menu {
  margin: 10px;
}
.menu a {
  display: block;
  padding: 5px 10px;
  box-shadow: none;
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: .25s;
}
.menu-item {
  list-style: none;
  position: relative;
  margin: 0 5px;
}
.fixed .menu-item.active,
.fixed .menu-item.active a{
  color: #000;
}
.menu-item.active:after,
.menu-item::after {
  content: '';
  width: 0;
  height: 2px;
  background: #fff;
  display: block;
  margin-left: 10px;
  transition: all .2s ease;
}
.menu-item.active:after,
.menu-item:hover:after{
  width: 44px;
}
.menu-item.active:hover:after{
  width: 0;
}
.fixed .menu-item.active:after,
.fixed .menu-item::after {
  background: #000;
}
.menu-item.hasSub {
  padding: 0 15px 0 0;
}

/*********** general resp ***********/
@media (max-width: 900px) {
  html.noscroll {
    overflow: hidden;
  }
  body.noscroll {
    overflow: visible;
    height: 100%;
  }
}
/*********** nav resp ***********/
@media (max-width: 900px) {
  .nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--c-blue);
    opacity: 0;
    transition: opacity .3s ease;
    text-align: center;
  }
  .menu {
    margin: 0 0 80px;
  }
  .menu-item {
    font-size: 22px;
    font-weight: 300;
  }
  .menu-item a {
    padding: 10px 0;
    text-decoration: none;    
    font-size: 28px;
  }
  .open {
    opacity: 1;
    right: 0;
  }
  .nav__container {
    position: absolute;
    padding: 80px 20px 30px;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .open .menu-item.active:after, .open .menu-item::after {
    margin: 0 auto;
  }
  .mobile {
    color: #fff;
  }
}

/*********** pulldown ***********/
#pulldown {
  text-align: center;
  color: #222;
  cursor: pointer;
  z-index: 999;
  transition: all 0.2s ease-in-out;
  margin-left: auto;
  background: rgba(255, 255, 255, .7);
  margin-right: 30px;
}
#pulldown div {
  margin: auto;
  padding: 20px 14px;
  transition: all 0.2s ease-in-out;
}
#pulldown span {
  display: block;
  height: 2px;
  width: 36px;
  margin: auto;
  margin-top: 5px;
  background: #222;
  transition: all 0.2s ease-in-out;
}
#pulldown span:first-child {
  margin-top: 0;
}
#pulldown .open span {
  background: #333;
  position: relative;
}
#pulldown .open span:first-child {
  transform: rotate(45deg);
  top: 7px;
}
#pulldown .open span:nth-child(2) {
  opacity: 0;
}
#pulldown .open span:last-child {
  transform: rotate(-45deg);
  top: -8px;
}

/*********** pulldown resp ***********/
@media (max-width: 900px) {
  .pulldown__container {
    position: relative;
    z-index: 9999;
    background: var(--sub-bg-color);
  }
}

/*********** general resp ***********/
@media (min-width: 900px) {
  .menu {
    display: flex;
    align-items: center;
    float: right;
  }
  .mobile {
    display: none;
  }
}

