#gatitoSVG{
    /* border-style: groove; */
    fill: #FFC400;
    width: 100%;
}
#gatitoGroup #cola{
    transform: translate(-2px,1px) rotate(0deg);
    transform-origin: 65% 74%;
    animation: mueveCola 8s ease-in-out infinite;
}
@keyframes mueveCola {
    0% {
        transform: rotate(0);
    }
    10% {
        transform: rotate(-12deg);
    }
    20% {
        transform: rotate(0);
    }
    35% {
        transform: rotate(-16deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(50deg);
    }
    100%{
  	    transform: rotate(0);
    }
}
#gatitoGroup #bigoLT{
    transform: rotate(0deg);
    transform-origin: 46% 58%;
    animation: mueveBig1 1.3s cubic-bezier(0.55, 0.09, 0.68, 0.53) infinite;
}
@keyframes mueveBig1 {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(4deg);
    }
    100%{
  	    transform: rotate(0);
    }
}
.splashDiv{
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: #00274C;
    z-index: 100000;
    padding: 8%;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}
.titSplash{
    text-align: center;
    width: 100%;
}
.titSplash h3{
    letter-spacing: -.05em;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: #FFC400;
    margin-top: 0;
    font-size: 12vw;

}
.subSplash{
    text-align: center;
    margin-top: 2rem;
}
.subSplash p{
    margin: 0;
    display: block;
    color: #efefef;
    font-size: 2vw;
}
.progressSplash {
    background-color: rgb(229,233,235);
    height: 1.3rem;
    position: relative;
    width: 100%;
}
.progress-bar-red {
    background-size: 23em 0.25em;
    height: 100%;
    position: relative;
    background-color: #9F2647;
    animation: cssload-width 4s cubic-bezier(0.39, 0.13, 0.15, 0.84) 1;
}
@keyframes cssload-width {
    0% { width: 0; }
    100% { width: 100%; }
}

@media screen and (min-width: 768px){
    .splashDiv{
        padding: 20%;
    }
    .titSplash h3{
        font-size: xxx-large;
    }
}
