.test-containersChilds {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 4%;
    /* height: 100vh; */    
    opacity: 0;
    transition: all .8s ease-in-out;
}
.translate-origin {
    transform: translate(0, 0);
}
.translate-right {
    transform: translate(100%, 0);
}
.translate-left {
    transform: translate(-100%, 0);
}

@media (max-width: 768px) {
    .test-containersChilds {
        top: 10%;
    }
}