.from-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0px);
}

@media (max-width: 800px) {
    .from-bottom {
        transform: translateY(50px);
    }
}