/* 
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 */


span.word1,
span.word2 {
	position: relative;
	z-index: 9;
}
span.word1:after {
	background-image: url(https://invictus.autoclubgroup.it/wp-content/uploads/2025/06/accendiamo.png);
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 112%;
	height: 100%;
	content: "";
	position: absolute;
	z-index: -1;
	left: -24px;
}
span.word2:after {
	background-image: url(https://invictus.autoclubgroup.it/wp-content/uploads/2025/06/guidiamo.png);
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 112%;
    height: 100%;
    content: "";
    left: -18px;
    position: absolute;
    z-index: -1;
}
.marquee-content span {
	font-family: "Borel", Sans-serif;
	font-size: 50px;
    font-weight: 400;
    color: #0065A0;
    line-height: 1.1em;
    margin: 0 5px;
}

.marquee {
  display: flex;
  overflow: hidden;
  gap: 1rem;
  position: relative;
  user-select: none;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
margin: 26px 0;
}

.marquee-content.scroll {
  animation: scroll 10s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.green {
	color: var(--e-global-color-secondary)!important;
}
.footer .elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg {
	margin: 0!important;
}
form input {
    padding-left: 0 !important;
}
form input::placeholder {
    opacity: 1 !important;
}

@keyframes oscillateRotation {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}

.rotating img {
  animation: oscillateRotation 5s infinite ease-in-out;
  display: inline-block; 
}