
#loading{
  position: fixed;
  flex-direction: column;
  top:0px;
  left:0px;
  width:100%;
  height:100vh;
  background: #ffffff;
  z-index:9999;

    
}
.loading_frame{
    width:100%;
    height:100%;
    display:flex;
}
#loading .logo {
    width: 100px;
    margin: 0 14px 0;
}
.loading_title{
  color: #000000;
  font-size:1.5rem;
}
.loading_title_section{
  margin: auto;
  /* position: absolute; */
  z-index: 777;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
}
#progress {
  /* margin: 20px; */
  width: 100vw;
  left: 0px;
  height: 8px;
  /* margin: auto; */
  position: relative;
  z-index: 999;
  position: fixed;
  top: 3vh;
}
.footer_wave {
  position: fixed;
  left: 0;
  bottom: 0vh;
  width: 100%;
  height: 25vh;
  background: #03a4ff;
}
.parallax > use {
    animation: move-forever 12s linear infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
}
.parallax > use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
}
@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
.editorial {
    display: block;
    width: 100%;
    height: 140px;
    max-height: 73vh;
    margin: 0;
    position: absolute;
    top: -130px;
    /* opacity:0.7; */
}


.loading_end,.loading_end #progress{
	animation:animate 2s ease forwards;
}

.loading_end .progressbar-text{
	animation:animate 2s ease forwards;
}
.loading_end .footer_wave{
	animation:animate 2s ease forwards;
}
@keyframes animate{
	20% {
    top:-100vh;

  }
  21%{
    top:-100vh;
  }
  100% {
    top:-100vh;
    display: none;

  }
}
@media (max-width: 50em) {
    .editorial {
        height: 60px;
        top: -60px;
    }
}
