
.cuerpo_1,
.cuerpo_2,
.cuerpo_3 {
    display: flex;
    padding-left: 0px;
/*    justify-content: center;*/
    align-items: center;
/*    min-height: 100vh;*/
    background: #0c0c0c;
    height: 167px;
    width: 278px;
}

.liquido_1,
.liquido_2,
.liquido_3 {
    position: relative;
    padding: 0px 0px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    width: -moz-available;
    height: 50px;
    overflow: hidden;
    /* text-align: center; */
}

.liquido_1 span,
.liquido_2 span,
.liquido_3 span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
/*    letter-spacing: 8px;*/
}

.liquid_1 {
    position: absolute;
    margin-left: 40px;
    top: -80px;
    width: 200px;
    height: 200px;
    background: #2196f3;
    box-shadow: inset 0 0 50px rgba(0,0,0,.5);
    transition: 0.5s;
}

.liquid_2 {
    position: absolute;
    margin-left: 40px;
    top: -80px;
    width: 200px;
    height: 200px;
    background: #28b463;
    box-shadow: inset 0 0 50px rgba(0,0,0,.5);
    transition: 0.5s;
}

.liquid_3 {
    position: absolute;
    margin-left: 40px;
    top: -80px;
    width: 200px;
    height: 200px;
    background:#ff0000;
    box-shadow: inset 0 0 50px rgba(0,0,0,.5);
    transition: 0.5s;
}

a:hover .liquid_1,
a:hover .liquid_2,
a:hover .liquid_3 {
    top: -120px;
}

/* aqui se genera el movimiento */
a .liquid_1:before,
a .liquid_2:before,
a .liquid_3:before,
a .liquid_1:after,
a .liquid_2:after,
a .liquid_3:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

a .liquid_1:before,
a .liquid_2:before,
a .liquid_3:before {
    border-radius: 45%;
    background: rgba(20,20,20,1);
    animation: animate 5s linear infinite;
}

a .liquid_1:after,
a .liquid_2:after,
a .liquid_3:after {
    border-radius: 40%;
    background: rgba(20,20,20,0.5);
    animation: animate 10s linear infinite;
}

@keyframes animate
{
    0%
    {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100%
    {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}






