.qanim-title {
    animation: showTitle 1s ease-in-out;
    animation-fill-mode: both;
    animation-delay: .2s;
}

.qanim-question {
    animation: showQuestion 1s ease-in-out;
    animation-fill-mode: both;
    animation-delay: .5s;
}

.qanim-call-button {
    animation: showCallButton 1s ease-in-out;
    animation-fill-mode: both;
    animation-delay: .7s;
}

@keyframes showTitle {
    from {
        transform: translateY(-5rem);
    }

    to {
        transform: translateY(0rem);
    }
}

@keyframes showQuestion {
    from {
        letter-spacing: 1rem;
        opacity: 0;
    }

    to {
        letter-spacing: 0;
        opacity: 1;
    }
}

@keyframes showCallButton {
    from {
        transform: scale(0.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}