/**
 * Theme Name:     Twenty Seventeen Child
 * Author:         Nounou
 * Template:       twentyseventeen
 * Text Domain:	   twenty-seventeen-child
 * Description:    Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
 */


.hidden-item{
	display: none;
}

.wpcf7-form label{
	font-family: "Montserrat", sans-serif !important;
	text-transform: uppercase !important;
}

.elementor-12 .elementor-element.elementor-element-2f9250d .eael-adv-accordion .eael-accordion-list:first-child .eael-accordion-header .eael-accordion-tab-title{
	font-style: oblique !important;
	font-family: "The_Seasons" !important;
}

.jj-num {
	font-size: 16px;
	color: black;
	font-family: "Montserrat", sans-serif;
    font-style: normal;
}


.visually-hidden{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}



/** MARQUEE **/
.home-marquee{
  overflow: hidden;
  --gap: 3rem;
  --duration: 50s;
}

.home-marquee__track{
  display: flex;
  width: max-content;
  gap: var(--gap);
  white-space: nowrap;
  align-items: center;
  will-change: transform;
  animation: homeMarquee var(--duration) linear infinite;
}

.home-marquee__track > *{
  flex: 0 0 auto;
}

@keyframes homeMarquee{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

.home-marquee:active .home-marquee__track{
  animation-play-state: paused;
}

