.top_rightTop {background-color:rgba(0,0,0,.9);height: 100%;width: 100%;padding: 0;margin: 0;}
.navRight {position: relative;width: 100%;height:100%;display: inline-block;border: none;}
.bottom_list{width:80%;margin:0px auto;height: 100vh;display: flex;display: -webkit-flex; flex-direction: column; justify-content:space-around;align-items: center;}
.btn-nav {
  background: transparent;
  border: none;
  width: 40px;
  margin:21px auto;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
 
}

.btn-nav span{border-radius: 10px;}
.btn-nav:focus { outline: 0;}

.icon-bar {display: block; margin: 6px 0;height: 5px;background-color: #FFFFFF;}
.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-color: #fff;
}

.nav-content {
  position: fixed;
  left: 0;
  right: 0;
  background:rgba(0,0,0,.9);

  height: 100%;
  z-index: 999;
  overflow: hidden;
}

.nav-list {
  height: 100vh;
  list-style: none;
  padding: 0;
   /*position: relative;
 top: 12%;*overflow:hidden;*/
 display: flex;display: -webkit-flex; flex-direction: column; flex-wrap: wrap;justify-content: center;align-items: center;

}
.item-anchor:after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 3px;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor {
  color: #adadad;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  padding: 16px;
  display: block;
  overflow: hidden;
}
.item-anchor p.p1{font-size: 34px; padding-bottom:10px!important; }
.item-anchor:hover,
.item-anchor:focus {
  color: #DCA27A;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  height: 1px !important;
  width: 100%;
  background: #DCA27A;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
 padding-bottom:40px;
  text-align: center;
}

.animated {
  display: block;
}

.animated:hover .icon-bar,.animated:focus .icon-bar{ background-color: #fff;}



.animated:focus {cursor: pointer;z-index: 9999;}
.middle {
  margin: 0 auto;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.animated .icon-bar {
  z-index: 999999;
  background-color: #fff;
}

.animated .top,.animated2 .top  {
  -webkit-transform: translateY(10px) rotateZ(45deg);
  -moz-transform: translateY(10px) rotateZ(45deg);
  -ms-transform: translateY(10px) rotateZ(45deg);
  -o-transform: translateY(10px) rotateZ(45deg);
  transform: translateY(10px) rotateZ(45deg);
}

.animated .navbottom,.animated2 .navbottom {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -moz-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotateZ(-45deg);
  -o-transform: translateY(-11px) rotateZ(-45deg);
  transform: translateY(-11px) rotateZ(-45deg);
}

.animated .middle,.animated2 .middle {
  width: 0;
}

@keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.showNav {
  -webkit-animation: showNav 0.5s ease forwards;
  -moz-animation: showNav 0.5s ease forwards;
  -o-animation: showNav 0.5s ease forwards;
  animation: showNav 0.5s ease forwards;
}

@keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

.hideNav {
  -webkit-animation: hideNav 0.5s ease forwards;
  -moz-animation: hideNav 0.5s ease forwards;
  -o-animation: hideNav 0.5s ease forwards;
  animation: hideNav 0.5s ease forwards;
}

.hidden {
  display: none!important;
}