/* CSS Document */
    .fade-slide-text {
        display: inline-block;
        font-weight: bold;
        white-space: pre-wrap;
    }

    .character, .word {
        display: inline-block;
        opacity: 0;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .ltr .character {
        transform: translateX(40px);
    }

    .rtl .word {
        transform: translateX(-40px);
    }

    .visible {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
