.nav {
  display: block;
  margin-left: auto;
}
.menu {
  margin: 10px;
}
.menu a {
  display: block;
  padding: 5px 7px;
  box-shadow: none;
  text-transform: uppercase;
  color: var(--c-purple);
  font-weight: 500;
}
.menu-item {
  list-style: none;
  position: relative;
  margin: 0 5px;
}
.menu-item.active a{
  color: var(--main-txt-color);
}
.menu-item.hasSub {
  padding: 0 15px 0 0;
}

/* Submenu */
.submenu {
  padding: 5px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.submenu .menu-item a{
  color: #444;
}
.submenu .menu-item a:hover{
  color: #cc3300;
}
.submenu .menu-item.active a{
  color: #cc3300;
}
.hasSub::before{
  content: '';
  width: 7px;
  height: 7px;
  border-color: #ccc;
  border-bottom: 1px solid;
  border-left: 1px solid;
  transition: all 0.5s ease;
  cursor: pointer;
  transform: rotate(-45deg);
  position: absolute;
  right: 5px;
  top: 9px;
}
.hasSub.open::before{
  transform: rotate(135deg);  
}
.hasSub:hover::before{
  transform: rotate(45deg); 
  border-color: #ccc; 
}

/*********** general resp ***********/
@media (max-width: 1400px) {
html.noscroll {
  overflow: hidden;
}
body.noscroll {
  overflow: visible;
  height: 100%;
}
}
/*********** nav resp ***********/
@media (max-width: 1400px) {
.nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.99);
  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;
}
.open {
  opacity: 1;
  right: 0;
}
.nav__container {
  position: absolute;
  padding: 200px 20px 30px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
}

/*********** pulldown ***********/
#pulldown {
  text-align: center;
  color: #222;
  cursor: pointer;
  z-index: 999;
  transition: all 0.2s ease-in-out;
  margin-left: auto;
}
#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: 1400px) {
.pulldown__container {
  position: relative;
  z-index: 9999;
  background: var(--sub-bg-color);
}
}

/*********** general resp ***********/
@media (min-width: 1400px) {
.menu {
  display: flex;
  align-items: center;
  float: right;
}
.mobile {
  display: none;
}
}

