.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
	
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.logo {
    width: 260px;
    height: 260px;
	
}

.logo svg {
    width: 100%;
    height: 100%;
    animation: revealLogo 3.5s ease forwards;
	
}

/* Clip-path animation for bottom-to-top reveal */
@keyframes revealLogo {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
	    
    }
}

.content {
    display: none;
    padding: 20px;
    
    opacity: 0;
    transition: opacity 2.5s ease;
	
}

.content.visible {
    display: block;
    opacity: 1;
	
}

/* DESCARGANDO */


.pulse{
    width: 200px;
    height: 200px;
    background: #4777f4;
    border-radius: 50%;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    line-height: 100px;
    font-family: sans-serif;
    text-transform: uppercase;
    animation: animate-pulse 3s linear infinite;
    cursor: pointer
}
@keyframes animate-pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(71, 119, 244, 0.71),  0 0 0 0 rgba(255,109,74,0.7);
    }
    40%{
        box-shadow: 0 0 0 50px rgba(255,109,74,0.0),  0 0 0 0 rgba(255,109,74,0.7);
    }
    80%{
        box-shadow: 0 0 0 50px rgba(255,109,74,0.0),  0 0 0 30px rgba(255,109,74,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(255,109,74,0.0),  0 0 0 30px rgba(255,109,74,0);
    }
    
}

