 @media (prefers-reduced-motion: no-preference) { @keyframes xt-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }  .xt-section-hero .xt-container-base > * { animation: xt-rise .7s cubic-bezier(.16, 1, .3, 1) both; } .xt-section-hero .xt-container-base > :nth-child(1) { animation-delay: .10s; } .xt-section-hero .xt-container-base > :nth-child(2) { animation-delay: .18s; } .xt-section-hero .xt-container-base > :nth-child(3) { animation-delay: .26s; } .xt-section-hero .xt-container-base > :nth-child(4) { animation-delay: .34s; } .xt-section-hero .xt-container-base > :nth-child(5) { animation-delay: .42s; }  html.xt-fx [data-xt-reveal] { opacity: 0; transform: translateY(14px); } html.xt-fx [data-xt-reveal].xt-in { animation: xt-rise .7s cubic-bezier(.16, 1, .3, 1) both; animation-delay: var(--xt-d, 0ms); } } @media print { html.xt-fx [data-xt-reveal] { opacity: 1 !important; transform: none !important; } }