/*loading*/

  .progress{
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    color:var(--Text);
    z-index:9999999999;
    text-align:center;
  }

  .progress-bar{
    position:absolute;
    left:0;
    bottom:0;
    width: 0;
    height: 0;
    border-style: none;
}

  .progress-text{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;

    background: var(--Main);
    font-weight: bold;
    text-align: center;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: darken;

  }

  .progress-logo{
    width: 14vw;
    max-width: 220px;
    height: auto;
  }

  .progress-percent{
    font-size: 20px;
    color: var(--White);
  }

  .progress-complete .progress-bar{
    border-top-color:#000;
  }




@media screen and (max-width:480px) {

}
/*loading end*/