@media screen and (min-width: 768px) { body:not(.legal-page) .brxe-section.brx-animated { animation-duration: 0.8s; animation-fill-mode: both; } body:not(.legal-page) .brxe-section.brx-animate { animation-name: fadeInUp; } body.legal-page .brxe-section.brx-animated, body.legal-page .brxe-section.brx-animate { animation: none !important; animation-name: none !important; animation-duration: 0s !important; animation-delay: 0s !important; opacity: 1 !important; transform: none !important; visibility: visible !important; } } @keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 30px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }