body {
    overflow: hidden;
    touch-action: none; /* VERY IMPORTANT */
  }
   .font-monst{
     font-family: "Montserrat", sans-serif;
   }
  /* SECTION BASE */
  .section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
  }
   
  /* FIRST SECTION SAFE DEFAULT */
  .section:first-child {
    transform: translateY(0);
  }
   
  /* TEXT ANIMATION BASE */
  .animate-text {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
  }
   
  /* ACTIVE TEXT */
  .section.active .animate-text {
    opacity: 1;
    transform: translateY(0);
  }
   
  .section.active .delay-1 { transition-delay: 0.2s; }
  .section.active .delay-2 { transition-delay: 0.4s; }
   

  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .custome-leading{
    line-height: 60px !important;
  }

  @media (min-width:100px) and (max-width:700px) {
  .custome-leading{
    line-height: 40px !important;
  }
  .download-logo{
    width: 100% !important;
  }
  
}

.download-logo{
      width: 60%;
}


.dflex {
  display: flex !important;
  gap: 20px;
}
