/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/*Texto con scroll lateral infinio*/
.marquee-section {
    position: relative;
    min-height: 40px;
}

.marquee-section, .marquee-section * {
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
}

.marquee-div {
	font-family: var(--e-global-typography-2482e0c-font-family), Sans-serif;
	color: white;
	font-weight: var(--e-global-typography-2482e0c-font-weight);
	font-size: var(--e-global-typography-2482e0c-font-size);
	letter-spacing: 1px;
	line-height: 40px;
    position: absolute;
    animation: move-right-to-left linear 25.5s infinite;
}

/* use this one to move from left to right direction */
@keyframes move-left-to-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* use this one to move from right to left direction */
@keyframes move-right-to-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px){
	.marquee-div {
		font-size: 32px;
	}
}
	
@media (max-width: 500px){
	.marquee-div {
		font-size: 24px;
	}
}