/* Scrolling animation ( aka Parallax & Entrance )
---------------------------------------------------- */
:root {
	--trx-effects-parallax-x-anchor: center;
	--trx-effects-parallax-y-anchor: center;
}

.sc_parallax {
	-webkit-transform-origin: var(--trx-effects-parallax-y-anchor) var(--trx-effects-parallax-x-anchor);
	-ms-transform-origin: var(--trx-effects-parallax-y-anchor) var(--trx-effects-parallax-x-anchor);
	transform-origin: var(--trx-effects-parallax-y-anchor) var(--trx-effects-parallax-x-anchor);
}
.elementor-editor-active .sc_parallax {
	overflow: visible !important;
}
.sc_parallax:not(.trx_effects_parallax_layers_inited),
.sc_parallax:not(.trx_effects_parallax_blocks_inited),
.sc_parallax_mouse:not(.trx_effects_parallax_layers_inited),
.sc_parallax_mouse:not(.trx_effects_parallax_blocks_inited) {
	opacity: 0;
}
.trx_effects_parallax_blocks_need_start:not(.trx_effects_parallax_blocks_on_start) {
	opacity: 0;
}

/* To avoid conflict animation with parallax */
.sc_parallax.animated {
	-webkit-animation-fill-mode: unset;
	animation-fill-mode: unset;
}

/* Parallax Flow: Sticky */
.sc_parallax_sticky,
.sc_parallax_sticky.e-con,
.sc_parallax_sticky.elementor-section,
.sc_parallax_sticky.elementor-column {
	position: sticky;
}

.elementor-image.sc_parallax_wrap,
.elementor-image.sc_parallax_wrap > .wp-caption {
	overflow: hidden;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
  
.post_featured.sc_parallax_wrap > img {
	-webkit-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
  
.post_featured.sc_parallax_wrap:not(.parallax_inited) > img {
	opacity: 0;
}
  
/* Wrap chars and words */
.sc_parallax_text_block {
	display: inline-block;
	vertical-align: top;
}
  
.sc_parallax_word_wrap {
	white-space: nowrap;
}

@media screen and (min-width: 768px) {
	.sc_parallax_text_nowrap_on {
		white-space: nowrap;
	}
}
  