
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* preloader */
#loading-screen {
    width: 100%;
    height: 100%;
    background: black;
    backdrop-filter: blur(10px); 
    padding: 40px 0px; 
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: "Manrope", sans-serif;
    overflow: hidden;
    transition: opacity 5s ease-in-out, transform 2s ease-in-out;
  }
  .loader-hide {
    opacity: 0;
    transform: translateY(-100%); 
}
.main-show {
    opacity: 1;
    transform: translateY(0);
}
  .Loader-logo{
    position: absolute;
    top: 15px;
    left: 40px;
  }
  #percent{
    position: absolute;
    bottom: 0px;
    right: 40px;
    font-size: clamp(5rem, 3.4892rem + 6.1982vw, 9.3rem);
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: white;
    transition: opacity 1s ease;
  }
  
  .loading-text {
    font-family: "Manrope", sans-serif;
    text-align: left;
    
  }
  .loading-text P{
    font-size: clamp(1.125rem, 1.0701rem + 0.2252vw, 1.28125rem);
    color: rgba(255, 255, 255, 0.39);
  }
  
  .animate-prgh {
    text-align: left;
    color: rgb(255, 255, 255);
    font-size: clamp(1.7rem, 1.4409rem + 1.0631vw, 2.4375rem);
    width: clamp(20rem, 11.765vw + 17.132rem, 31.25rem);
    font-weight: normal;
}
.animateword{
    opacity: 0.3; 
    animation: prghfadeIn .2s forwards;
}
@media (max-width: 430px) {
  .animate-prgh {
    position: absolute;
    top: 120px;
    left: 10px;
  }
}
@media (max-width: 430px) {
.loading-text P {
  margin-top: 40px;
  position: absolute;
  bottom: 100px;
  left: 20px;
}
}
@media (max-width: 1600px) {
  .animate-prgh {
    position: absolute;
    bottom: 122px;
    left: 30px;
  }
}
@media (max-width: 1600px) {
.loading-text P {
  margin-top: 20px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
}

@keyframes prghfadeIn {
    to {
        opacity: 1; 
    }
}

  #main-content {
    /* padding: 20px; */
    /* text-align: center; */
    transition: opacity 3s ease;
  }
  /* preloader */
