/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */


/**/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
	--fontPrimary: "Poppins", sans-serif;
	--colorBlueDark: #1c1e3c;
	--colorYellowDark: #b6cc0c;
	--colorWhite: #fff;
	--colorDark: #000;
}

.text-blue {
	color: var(--colorBlueDark);
}

.contenedor-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.wrapper-marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.texto-marquee {
  white-space: nowrap;
  color: var(--colorWhite);
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--fontPrimary);
  text-transform: uppercase;
  padding-right: 2rem;
}

.contenedor-marquee:hover .wrapper-marquee {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1023px) {
	.texto-marquee {
		font-size: 1.3rem;
	}
}
