/* assets/css/custom.css */
/* Tailwind is used for most styles. Add custom overrides here. */

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mask-image-gradient {
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Hide hero slider navigation arrows */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    display: none !important;
}