@-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%;
	z-index: 999;
}
.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 .7s cubic-bezier(.19,1,.22,1) .15s;
    transition: -webkit-transform .7s cubic-bezier(.19,1,.22,1) .15s;
    transition: transform .7s cubic-bezier(.19,1,.22,1) .15s;
    transition: transform .7s cubic-bezier(.19,1,.22,1) .15s,-webkit-transform .7s cubic-bezier(.19,1,.22,1) .15s;
}
.header_inner {
	display: block;
    position: relative;
    height: 100%;
    text-align: left;
    -webkit-transition: opacity .2s linear .1s;
    transition: opacity .2s linear .1s;
    /*max-width: 1400px;*/
    margin: 0 auto;
	padding: 0 30px;
}
.header_inner > div.row {
    max-width: 1400px;
    margin: 0 auto;
}
.navbar-brand {
	padding: 0;
	margin: 0;
}
.header-area .navbar-expand-lg .navbar-nav .nav-link, .header-area .nav-link{
	color: #fff;
	padding: 0;
	position: relative;
	text-transform: uppercase;
}
.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 {
	z-index: 5;
    position: relative;
    line-height: normal;
}
.menu-icon{
	width: 24px;
	margin-left: 20px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	position: relative;
	z-index: 6;
	cursor: pointer;
	margin-top: -2px;
}
.menu-icon:after, .menu-icon:before, .menu-icon div {
	display: block;
	background-color: #fff;
	content: '';
	margin: 4px;
  	height: 2px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.menu-items {
	position: fixed;
	top: 0px;
	background: #121212;
	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: 270px;
	right: 0;
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
}
.menu-items ul{
	padding:0;
	margin: 0;
}
.menu-navigation{
	padding: 100px 30px 30px;
}
.menu-items li{
	border-bottom: 1px solid rgba(255,255,255,0.05);
	margin-bottom: 12px;
}
.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;
}
.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));
}
.menu-icon.active:before {
	transform: translateY(6px) rotate(135deg);
}
.menu-icon.active div {
	transform: scale(0);
}
.menu-icon.active:after {
	transform: translateY(-6px) rotate(-135deg);
}
.panel-left{
	left: 0;
	width: 100%;
	z-index: 2;
	background-color: rgba(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 .nav-item{
		display:none;
	}
}
