body.fixed {
  position: fixed;
  top:0px;
  left: 0px;
  right:0px;
  bottom: 0px;
  background-color: #000;
}


.top_margin {
  margin-top: 0px;
}
.header_bar {
  display: flex;
}

.dheader {
  position: fixed;
  top:0px;
  left:0px;
  right:0px;
  height: 70px;
  overflow: visible;

  z-index: 999999;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.menu {
  border-top: 0px;
  display: block;
  overflow: hidden;
  height: 70px;
  padding: 0px 40px;
}
@media only screen and (max-width: 1024px) {
  .menu { 
    padding: 0px 20px;
  }
}

.logo {
  margin: 0 auto;
}

.logo > a {
  margin:23px 0px 20px;
  display: inline-block;
}

.logo > a > img {
  width: auto;
  height: 26px;
}
.left_bar {
  width: 15%;
}
@media only screen and (max-width: 1024px) {
  .left_bar {
    width: 50%;
  }
}
.menu_block{
  width:0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background-color: transparent;
  -webkit-backdrop-filter: blur(18px);
  -o-backdrop-filter: blur(18px);
  -moz-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);

}


.menu_block.active{
  width: 100%;
}

.menu_tabs {
  position: absolute;
  top:0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  max-width: 500px;
  text-align: center;
  z-index: 999999;
  overflow-y: auto;
  z-index: 1000000;
  background-color: #000;
}

.menu_links{
  opacity: 0;
  display: block;
  margin-top: 60px;
 
  -webkit-transition: all .8s;
  -moz-transition: all .8s;
  transition: all .8s;
}
.menu_links.active {
  opacity: 1;
  margin-top: 120px;
}

.menu_links > a{
  display: block;
  color:#000 !important;
  padding: 15px 25px !important;
  text-decoration: none !important;
  outline: none !important;
  font-size: 22px;
  margin: 15px 55px;
  font-weight: 800;
  white-space: nowrap;

  -webkit-transition: all .55s;
  -moz-transition: all .55s;
  transition: all .55s;
}
.menu_links.active > a{
  color:#fff !important;
}
.menu_links > a:hover {
  background:#fff !important;
  color:#000 !important;
}

.menu_links > a:last-child {
  border: 2px solid #fff !important;
  margin-top: 35px;
}
.menu_links > a:last-child:hover {
  border: 2px solid #fff !important;
  background-color: #fff !important;
  color: #000 !important;
}

.m_btn {
  color: #000 !important;
  padding: 22px 2px 22px;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}

.m_btn > img {
  width: 29px;
  height: auto;
}

.m_btn_close {
  color: #f3f3f3 !important;
  padding: 20px;
  display: block;
  margin: 20px;
}
.m_btn_close > img{
  width: 62px;
  height: auto;
}

.right_bar {
  width: 85%;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .right_bar {
    width: 50%;
  }
}
.right_bar > a {
  font-size: 14px !important;
  color: #fff !important;
  padding: 10px 10px;
  display: inline-block;
  margin: 14px 10px;
  text-decoration: none !important;
  outline: none !important;
  font-weight: 700;
  text-shadow:0.3px 0.3px rgba(0,0,0,0.15);
}
.right_bar > a:last-child {
  border: 2px solid #fff;
}

.right_bar > a:last-child:hover {
  background-color: #fff !important;
  color:#000 !important;
}
@media only screen and (max-width: 1024px) {
  .right_bar > a {
    display: none;
  }
  .m_btn {
    display: inline-block;
  }
}