.animations-start-line{
    position: fixed;
    bottom: 50px;
    left: 0px;
    right: 0px;
    z-index: 2000;
}

.anim{
    position: relative;
    top: 100px;
    opacity: 0;
}

.anim-text{
    white-space: nowrap;
    overflow: hidden;
}

.anim-text span{
    transition: all 0.53s ease 0.05s;
    -webkit-transition: all 0.53s ease 0.05s;
    -o-transition: all 0.53s ease 0.05s;
    display: inline-block;
    min-width: 6.75px;
    opacity: 1;
    -webkit-transform: translate3d(0px, 50px, 1px);
    transform: translate3d(0px, 50px, 1px);
}

.anim-text.action span{
    -webkit-transform: translate3d(0, 0, 1px);
    transform: translate3d(0, 0, 1px);
}

.anim-action{
    top: 0px;
    opacity: 1;
}

@media only screen and (max-width: 768px){
    
    .anim-text{
        white-space: break-spaces;
    }
    
    
}