@charset "UTF-8";
/* CSS Document */
 .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .delay-1 { animation-delay: 2.5s; }
        .delay-2 { animation-delay: 3s; }
        .delay-3 { animation-delay: 3.5s; }