html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

body::-webkit-scrollbar{
    display:none;
}

html::-webkit-scrollbar{
    display:none;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-animate {
    opacity: 0;
    animation: heroFadeUp 0.85s ease-out forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; }
.hero-animate-delay-2 { animation-delay: 0.2s; }
.hero-animate-delay-3 { animation-delay: 0.3s; }
.hero-animate-delay-4 { animation-delay: 0.4s; }
.hero-animate-delay-5 { animation-delay: 0.55s; }
.hero-animate-delay-6 { animation-delay: 0.7s; }