

.loading {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 10px;
    left: 0;
    background: var(--bg-color);
    transition: 0.75s;
    z-index: 2000;
  }
  
  .loading-title {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;
    font-family: var(--primary-font);
  }
  .loading-title h2{
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--primary-font) !important;
  }
  .loading-progress {
    height: 11px;
    background: var(--primary-color);
    top: -11px;
    bottom: 0;
    width: 100%;
    position: absolute;
    transition: 0.35s;
  }
  @media only screen and (max-width: 360px){
    .loading-title h2{
      font-size: 2rem;
    }
  .loading-logo img{
      width: 5px;
    }
  }
  @media only screen and (min-width: 360px) and (max-width: 375px) and (orientation: portrait),
   only screen and (min-width: 376px) and (max-width: 480px){
    .loading-title h2{
        font-size: 3rem;
      }
    .loading-logo img{
        width: 5px;
      }
  }