@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: 9;
  height: 100px;
}
.header_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  background-color: #000;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1)
    0.15s;
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s,
    -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}
.header_inner {
  display: block;
  position: relative;
  height: 100%;
  text-align: left;
  -webkit-transition: opacity 0.2s linear 0.1s;
  transition: opacity 0.2s linear 0.1s;
  /*max-width: 1400px;*/
  margin: 0 auto;
  padding: 0 3rem;
}
.header_inner > div.row {
  max-width: 1400px;
  margin: 0 auto;
}
.navbar-brand {
  padding: 0;
  margin: 2rem 2rem 2rem 0;
}
.navbar-nav {
  margin-top: 1.2rem;
}
.is-hidden .header_inner {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.header-area .navbar-expand-lg .navbar-nav .nav-link,
.header-area .nav-link {
  color: #fff;
  padding: 0;
  position: relative;
  margin: 0 1.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.header-area .nav-link:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.header-area .nav-link:hover:before {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.header-area .nav-link:hover {
  color: #fff;
}
.header-area .nav_menu_right_part {
  position: absolute;
  top: auto;
  right: 50px;
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  display: block;
}
.menu-icon {
  width: 16px;
  margin-left: 30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: relative;
  z-index: 6;
  cursor: pointer;
}
.menu-icon:after,
.menu-icon:before,
.menu-icon div {
  display: block;
  background-color: #fff;
  content: "";
  height: 2px;
  margin: 2px 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.menu-items {
  position: fixed;
  top: 0px;
  background: #000;
  width: 0;
  height: 100vh;
  right: 0;
  z-index: 3;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
.menu-items.active {
  width: 25rem;
  right: 0;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
.menu-items ul {
  text-align: right;
  padding: 0;
  margin: 0;
}
.menu-navigation {
  padding: 8rem 5rem 3rem;
}
.menu-items li {
  border-bottom: 1px solid #252525;
  margin-bottom: 1.2rem;
}
.menu-items a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 5px;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  font-size: 1.5rem;
}
.menu-items a:hover {
  color: #8b939b;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.menu-items.active li {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.menu-items.active li {
  -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
  -o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
  animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
.nav_menu_right_part.active .menu-icon:before {
  transform: translateY(4px) rotate(135deg);
}
.nav_menu_right_part.active .menu-icon div {
  transform: scale(0);
}
.nav_menu_right_part.active .menu-icon:after {
  transform: translateY(-4px) rotate(-135deg);
}
.panel-left {
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  height: 100vh;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.panel-left-show {
  visibility: inherit;
  opacity: 1;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.hide_menu {
  visibility: hidden;
  cursor: none;
}
@media (max-width: 991.98px) {
  .header-area .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-nav {
    display: none;
  }
  .header-area .nav_menu_right_part a {
    visibility: hidden;
    cursor: none;
  }
}
@media (max-width: 575.98px) {
  .header-area .nav_menu_right_part {
    right: 3rem;
  }
  .menu-navigation {
    padding: 6rem 3rem;
  }
}
