@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
    font-family: Heading;
    src:  url(/assets/fonts/Gallient.ttf);
  }
@font-face {
    font-family: gm;
    src: url(/assets/fonts/Graphik-Medium-Web.ttf);
  }
@font-face {
    font-family: gr;
    src: url(/assets/fonts/Graphik-Regular-Web.ttf);
  }
@font-face {
    font-family: gsb;
    src: url(/assets/fonts/Graphik-Semibold-Web.ttf);
  }
    @font-face {
    font-family: neu;
    src: url(/assets/fonts/NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(/assets/fonts/NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(/assets/fonts/NeueHaasDisplayRoman.ttf);
}
  
  * {
      margin: 0;
      padding: 0;

      box-sizing: border-box;
  }
  
  html, body {
      width: 100%;
      height: 100%;
  }
  :root {
    /* black family */
    --black:#000;
    --offblack:#0C0C0C;
    /* white family */
    --white:#ffffff;
   --offwhite:#E7E5E6;
   /* purple family */
   --offpurple:#B084D3;
   /* yellow family */
   --offyellow:#D3FF4E;
   /* yellow family */
   --lightbg:#FAF8F3;
   --darkbg:#EDECE7;
   /* para gray family*/
   --ParaGray:#A1A2A3;
   --mtext:#707070;
    --mdgwt:#999999;
    
  }
#main{
    width: 100%;

}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;

  z-index: 999999999999999999999999999; /* Ensure it's higher than all other elements */
}



.zoom {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 13vw;
  -webkit-text-stroke-width: 0.09vh;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #ffffff;
  outline: none;
  transform: rotate(-7deg) translate(-50%, -50%);
  opacity: 0.89;
  font-weight: 200;
  font-family: gsb;
}

.loader h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-7deg) translate(-50%, -50%);
  /* outline: 1px solid #fff; */
  font-family:gr;
  font-size: 5vw;
  padding: 2vw;
  color: #ffffff;
}

.Loading {
  bottom: -65%;
  left: 50%;
  transform: rotate(-7deg) translate(-50%, 0%);
  position: relative;
  display: inline-block;
  width: 50%;
  height: 10px;
  background: #ffffff;
  /* box-shadow: inset 0 0 5px rgba(0, 0, 0, .2); */
  border-radius: 4px;
  overflow: hidden;
}

.Loading:after {
    content: "";
    position: absolute;
    bottom: 10%;
    /* width: 100%; */
    height: 100%;
    border-radius: 4px;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, .2); */
    animation: load 3s;
  }
  

@keyframes load {
  0% {
    width: 0;
    background: linear-gradient(to top right, #833ab4, #B084D3);
  }

  25% {
    width: 25%;
    background: linear-gradient(to top right, #833ab4, #B084D3);
  }

  50% {
    width: 50%;
    background: linear-gradient(to top right, #833ab4, #B084D3);

    /* background: #ffa8b6; */
  }

  75% {
    width: 75%;
    background: linear-gradient(to top right, #833ab4, #B084D3);
    /* background: rgb(250, 195, 8); */
  }

  100% {
    width: 100%;
    /* background: #d0bdf4; */
    /* background: #ffa8b6; */

    background: linear-gradient(to top right, #833ab4, #B084D3);
  }
}

@keyframes pulse {
  0% {
    background: #000;
  }

  25% {
    background: #000;
  }

  50% {
    background: #000;
  }

  75% {
    background: #000;
  }

  100% {
    background: #000;
  }
}
@media (max-width:768px) {
  .zoom {
    font-size: 10.5vh;
    transform: rotate(-10deg) translate(-46%, -50%);
  }
  .loader h1 {
    transform: rotate(-10deg) translate(-50%, -50%);
    font-size: 6.5vh;
  }
  .Loading {
    bottom: -60%;
    transform: rotate(-10deg) translate(-50%, 0%);
    width: 70%;
  }    
}
#loaderpage1{
  width: 100%;
  height: 200vh;
  background-color: #a74c79;
}