#text1.enter,
#text2.enter,
#text3.enter,
#text4.enter,
#cta.enter {
    animation-name: fadeInSlide;
    animation-duration: .5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInSlide {
    0% {
        transform: translateX(-3px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

#text_bub1.enter,
#text_bub2.enter,
#text_disc.enter,
#text_bub3.enter,
#text_bub4.enter {
    animation-name: fadeIn;
    animation-duration: .5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#text1_container.exit,
#text_bub1.enter.exit,
#text_bub2.enter.exit,
#text_disc.enter.exit,
#text_bub3.enter.exit,
#text_bub_container.shift.shift2.exit 
 {
    animation-name: fadeOut;
    animation-duration: .5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#text2_container.shift {
    animation-name: slideUp;
    animation-duration: .8s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-52px);
    }
}

#text2_container.shift.exit
 {
    animation-name: fadeOut2;
    animation-duration: .5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeOut2 {
    0% {
        transform: translateY(-52px);
        opacity: 1;
    }

    100% {
        transform: translateY(-52px);
        opacity: 0;
    }
}

#text_bub_container.shift {
    animation-name: slideUp2;
    animation-duration: .8s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes slideUp2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-14px);
    }
}

#text_bub_container.shift.shift2 {
    animation-name: slideDown;
    animation-duration: .8s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0px);
    }
}