/* 
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: 160px;
}

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

.marquee {
    white-space: nowrap;
}

.marquee-div {
	font-family: var(--e-global-typography-98fd085-font-family), Sans-serif;
    font-size: var(--e-global-typography-98fd085-font-size);
    font-weight: var(--e-global-typography-98fd085-font-weight);
	letter-spacing: 1px;
	line-height: 160px;
    position: absolute;
    animation: move-right-to-left linear 20.5s infinite;
	color: #35444b;
}
.marquee-div-alt {
	font-family: var(--e-global-typography-98fd085-font-family), Sans-serif;
    font-size: var(--e-global-typography-98fd085-font-size);
    font-weight: var(--e-global-typography-98fd085-font-weight);
	letter-spacing: 1px;
	line-height: 160px;
    position: absolute;
    animation: move-left-to-right linear 20.5s infinite;
	color: #F3E85C;
}

/* 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, .marquee-div-alt{
		font-size: 60px;
		line-height: 65px;
	}
	.marquee-section {
   	 	min-height: 65px;
	}
	
}
	
@media (max-width: 500px){
	.marquee-div, .marquee-div-alt {
		font-size: 60px;
		line-height: 65px;
	}
	.marquee-section {
   	 	min-height: 65px;
	}
}

/**Ajuste palabras con fondo**/

span.palabra-destacada{
	background-color: #f3e85c;
    border: 20px;
    border-radius: 60px;
    padding: 0px 20px 10px;
    color: #35444b;
}