.preload_container {
    background-color:#fff;
    background: linear-gradient(135deg, #f3f3f3, #fff);
    position: absolute;
    overflow: hidden;
    height:100dvh;
    width:100%;
    z-index:1024;
    animation-duration: 1s;
    box-sizing: unset;
}

.preload_container::before {
  position: absolute;
  content: "";
  height: 90%;
  width: 90%;
  right: 5%;
  bottom: 5%;
  background-image: url(../img/pws/bg.png);
  background-size:cover;
  background-position: center;
  opacity:.025;
}

.preload_container .logo_container {
  padding:1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.preload_container .logo_container img {
    width:70px;
    height:auto;
    margin-right:1rem;
    animation-delay: .1s;
}

.preload_container .logo_container .title {
  animation-delay: 1.75s;
}

.preload_container .logo_container h1 {
  font-size:18px;
  margin-bottom:0;
  line-height: 1.5;
  font-family:RobotoFlex;
  font-weight:400;
}

.preload {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1024;
  background-color:transparent;
  bottom:0;
}

.preload::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  background-image: url(../img/pws/preloader.png);
  background-size:contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.preload img.plane {
  width: 36vw;
  height: auto;
  position: absolute;
  left: -250px;
  top: 50%;
  max-width: 360px;
  transition:all 1s ease-in-out;
}

.preload img.middle {
  left: 18vw;
  top: 30%;
}

.preload img.high {
  top: 10%;
  transition:all .5s ease-in-out;
}

.preload_removed::before {
    bottom: -100%;
    transition:all .5s ease-in-out;
}

@media only screen and (min-width: 700px) { 
  .preload img.plane {
      top: 15%;
      transition:all 1s ease-in-out;
  }
}

@media only screen and (min-width: 768px) {
  .preload_container .logo_container {
    padding:2rem;
  }
  .preload_container .logo_container img {
      width:150px;
  }
  .preload_container .logo_container img {
    margin-right:2rem;
  }
  .preload_container .logo_container h1 {
    font-size:26px;
  }
  .preload img.plane {
    width: 32vw;
    left: -600px;
    top: 60% !important;
    max-width: 400px;
    transition:all .8s ease-in-out;
  }
  .preload img.middle {
    left: 18vw;
    top: 25% !important;
  }
  .preload img.high {
    top: 5% !important;
    transition:all .5s ease-in-out;
  }
  .preload::before {
    max-width:70vw;
  }
}

@media only screen and (min-width: 1024px) {
  .preload::before {
    max-width:50vw;
  }
}


@media only screen and (min-width: 1300px) {
  .preload img.plane {
    top: 28%;
  }
}