/************************************************/
/*				  PRELOAD CUSTOM				*/
/************************************************/


.preloader-custom{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100svh;
	background-color: var(--e-global-color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 1s ease-out;
	transform-origin: bottom;
	transition-delay: 0.5s;
	z-index: 999999;
}

body.elementor-editor-active .preloader-custom{
	display: none
}



.preloader-box{
	position: relative;
}


.preloader-custom img.preloader-title{
	width: 12vw;
	min-width: 200px;
	aspect-ratio: 10/3;
	transition: 
		opacity 0.4s ease-out,
		transform 2s ease-out;
	animation: logoFadeIn 0.4s ease-out;
}
@keyframes logoFadeIn{
	from{opacity: 0}
	to{opacity: 1}
}



@media (max-width: 576px){
	
	.preloader-custom img.preloader-title{
		min-width: 200px
	}
	
}



.preloader-custom.animation-end{
	transform: scaleY(0);
}

.preloader-custom.animation-end img.preloader-title{
	opacity: 0;
	transform: translateY(-80px)
}


