.loaded {
    transition: 1s;
    opacity: 0;
    visibility: hidden;
  }

  #loading{
      position: fixed;
      display: table;
      width: 100vw;
      height: 100vh;
      background-color: #111;
      text-align: center;
      z-index: 9999;
  }
  #loading img{
    width: 200px;
    }
  #loading h1{
      margin: 0;
      color: #fff;
  }
  #loading h2{
      margin: 0;
      color: #fff;
  }

  .loading_content{
      /* transition: all 0.85s; */
      display: table-cell;
      vertical-align: middle;
  }


  .load_animation{
      transform: scale(1.1);
      transition: all 0.85s;
  }
  

  