.header {
    position: absolute;
    width: 100%;
    z-index: 3;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
    padding: 20px 60px 0;
    animation: logo 1.5s ease;
}
 @keyframes logo {
    from {
      transform: translateY(300px) scale(0.3);
    }
    50% {
      transform: translateY(150px)  scale(0.7);
    }
    100% {
      transform: translateY(0px)  scale(1);
    }
  }
#menu-toggle span {
    display: block;
    background: #ffffff;
}
#menu-toggle {
  width: 45px;
  height: 21px;
  position: relative;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu-toggle #hamburger {
  position: absolute;
  height: 21px;
  width: 45px;
}
#menu-toggle #hamburger span {
  width: 45px;
  height: 1px;
  position: relative;
  top: 0px;
  margin: 0px auto;
  margin-bottom: 9px;
}
#menu-toggle #hamburger span:nth-child(1) {
  transition-delay: .5s;
}
#menu-toggle #hamburger span:nth-child(2) {
  transition-delay: .625s;
}
#menu-toggle #hamburger span:nth-child(3) {
  transition-delay: .75s;
}
.menu {
    width: 100%;
    background: url(/Files/App_002/Images/bgmenu.jpg) top center no-repeat;
    height: 100vh;
    position: fixed;
    right: 0px;
    z-index: 99999;
    transition: 0.7s ease transform;
    transform: translateX(-200vw);
    transition-delay: 0.5s;
    overflow: auto;
    top: 0px;
    left: 0px;
    margin: 0 auto;
}
.menu-open {
    transform: translateX(0vw);z-index: 99999;
}
.menu:before {
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.54;
}
.menu:after {
    content: "";
    background: url(/Files/App_002/Images/bg.png) top center no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
}
.flex-menu {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
    padding: 20px 60px 0;
    width: 100%;
    position: relative;
    z-index: 33333;
}
.boxright-menu {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 555555;
}
.menuFixed {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    overflow: auto;
    position: relative;
    z-index: 2;
    height: 100vh;
}
.big {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big::before, .big::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 40px;
    top: 18px;
    left: 5px;
    background: #fff;
}
.big::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.big::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.boxmenu {
    width: 100%;
    overflow: hidden;
    margin-top: -89px;
}
@media screen and (max-width: 1440px) and (max-height: 600px) {
.boxmenu {
    overflow: auto;
    padding-bottom: 60px;
}
}
@media screen and (max-width: 1440px) {
.boxmenu {
    margin-top: -115px;
}
.flex-menu {
    padding: 20px 60px 0;
}
}
@media screen and (max-width: 991px) {
.d-flex, .flex-menu {
    padding: 45px 30px 0;
}
.boxmenu {
    margin-top: 100px;
    overflow: auto;
}
}
@media screen and (max-width: 767px) {
.d-flex, .flex-menu {
    padding: 25px 15px 0;
}
}
@media screen and (max-width: 400px) {
.logo {
    width: 100px;
}
}
