/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1737476037
Updated: 2025-01-21 10:13:57

*/

.elementor-sticky--effects {padding-top: 0rem!important; padding-bottom:0rem!important;
margin: 0px!important;
}

.display-medium-date {display:flex;}

.display-medium-date {
display: flex;
align-items: center;
}

#quote-container {
    font-size: 1em;
    color: #333;
    font-style: italic;
    padding: 10px 20px;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden; /* Prevent content overflow */
}

#quote {
    overflow: hidden;
    display: inline-block;
    width: 100%;
    animation: reveal 4s linear forwards;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words if necessary */
}

#author {
    color: #FC5015;
    font-size: 1em;
    margin-top: 0px;
    opacity: 0;
    animation: fade-in 4.5s ease forwards;
}

#mtitle .second-word {
    color: #FC5015;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #quote-container {
        font-size: 0.9em;
        padding: 10px 15px;
    }

    #author {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    #quote-container {
        font-size: 0.8em;
        padding: 10px;
    }

    #author {
        font-size: 0.8em;
    }
}

/* Animations */
@keyframes reveal {
    from {
        max-height: 0; /* Start with text hidden */
    }
    to {
        max-height: 100%; /* Expand to show all content */
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

