.scale15 {
    scale: 1.5;
}

.MoverArribaAbajo {
    animation: MoveUpDown 4s ease infinite;
}

@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pingOnce {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-pingOnce {
    animation: pingOnce 1.5s ease-in-out infinite;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.out-top {
    animation: rotate 20s linear infinite;
    transform-origin: 13px 25px;
}

.in-top {
    animation: rotate 10s linear infinite;
    transform-origin: 13px 25px;
}

.out-bottom {
    animation: rotate 25s linear infinite;
    transform-origin: 84px 93px;
}

.in-bottom {
    animation: rotate 15s linear infinite;
    transform-origin: 84px 93px;
}

.svgBottom {
    width: 100%;
    height: 500px;
}


.links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    font-family: sans-serif;
}

.imagenServicio {
    transition: all 0.4s;
}

.imagenServicioOculta {
    transform: translateX(-10%);
    opacity: 0;
}

.servicioabsolute {
    top: 0;
}

#servicioNombre, #servicioDetalles, #servicioTexto {
    transition: all 0.4s;
}
