.loading {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    transition: all 1s .5s;
    top: 0;
    left: 0;
    z-index: 9000;
    user-select: none;
    pointer-events: none;
}
body{
  margin: 0;
}

.loading .header {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    height: 15vh;
    padding: 0 5%;
  }

 .loading .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
 .loading .header .header-logo {
    position: relative;
    z-index: 1000;
  }
  .loading .header .header-logo-only {
    transition: all .35s;
  }
  .loading .header .header-logo-only svg {
    width: 50px;
    transition: all .5s;
  }

  .loading .header .header-logo-text {
    visibility: hidden;
    width: 0 !important;
    height: 0;
    transition: all .5s,height 0s;
  }
  .loading .header .header-logo-text svg {
    transform: translate(-100%, 0);
    width: 115px;
    transition: all .5s;
  }
  .loading .logo-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all .5s;
    width: unset;
  }
  .loading .menu_wrap {
    visibility: hidden;
    width: 0;
    height: 0;
    transition: all .5s;
  }

  @media only screen and (min-width: 480px) and (max-width: 767px), only screen and (max-width: 480px) {
    .loading .header {
      padding: 3% 5%;
      height: 10vh;
    }
  }
  .loading .header [mouse="button"] {
    width: 60px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media only screen and (min-width: 480px) and (max-width: 767px), only screen and (max-width: 480px) {
    .loading .header [mouse="button"] {
      height: 60px;
    }
  }

  .loader {
    margin: 0 auto;
}
.loading [menu-button] {
  width: 30px;
  height: 25px;
  display: grid;
  align-items: center;
  cursor: pointer;
  transition: all 0.15s;
  z-index: 1000;
  position: relative;
  mix-blend-mode: exclusion;
}
.loading [menu-button]:hover .menu-button-content:last-child, [menu-button]:hover .menu-button-content:first-child, [menu-button]:hover .menu-button-content:nth-child(2) {
  width: 65%;
}
.loading [menu-button] .menu-button-content {
  width: 35%;
  background-color: #fff;
  height: 1.9px;
  transition: 0.2s;
  top: 0px;
  pointer-events: none;
  display: flex;
  justify-self: center;
  mix-blend-mode: exclusion;
}
.loading [menu-button] .menu-button-content:nth-child(2) {
  width: 50%;
  transition: 0.1s;
}
.loading [menu-button] .menu-button-content:last-child {
  top: 0px;
  transform: rotate(0deg);
  transition: top .16s cubic-bezier(.33333,0,.66667,.33333) 0.4s, transform .1s cubic-bezier(0.22,0.61,0.36,1), width .4s;
}





.loaded .loader i {
  width: 0px;
}

.loaded .header .header-logo-text {
  visibility: visible;
  width: 115px !important;
  height: unset;
  overflow: hidden;
}

.loaded .header .header-logo-text svg {
  transform: translate(0, 0) !important;
}

.loaded .header {
  
  animation: loadedHeader .5s ease-in-out forwards
}

.loaded .menu_wrap {
  visibility: visible;
  width: unset;
  height: unset;
}
.loaded .logo-mobile {
  width: 100%;
}
.loading.loaded {
  height: 13.5vh;
}
.loaded .header .header-logo-only svg {
  width: 35px;
}

@keyframes loadedHeader {
  0% {
    margin-left: 25%;
    margin-right: 25%;
  }
  100% {
    margin-left: 0%;
    margin-right: 0%;
  }
}