/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 11 2024 | 13:58:35 */
/* Outer container to hide overflow */
.sliding-text.uk-grid {
    position: relative;
    overflow: hidden; /* Ensure sliding text stays within bounds */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Inner sliding text styling */
.sliding-text.uk-panel {
    display: inline-block; /* Ensure the text stays inline for scrolling */
    animation: infinite-slide 50s linear infinite; /* Adjust duration as needed */
    padding-left: 100%; /* Start the animation off-screen */
}

/* Animation keyframes */
@keyframes infinite-slide {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.sliding-text{
	font-family:ivyora-display;
	line-height:2.2;
}