@keyframes fadeInSubtle { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } main .brx-animate-fadeIn { animation-name: fadeInSubtle !important; } .brx-animated.animate-stagger { animation: none !important; } .brx-animated.animate-stagger>div { animation: fadeInSubtle 1s both; } .brx-animated.animate-stagger>div:nth-child(2) { animation-delay: .2s; } .brx-animated.animate-stagger>div:nth-child(3) { animation-delay: .4s; } .brx-animated.animate-stagger>div:nth-child(4) { animation-delay: .6s; } .brx-animated.animate-stagger>div:nth-child(5) { animation-delay: .8s; } .brx-animated.animate-stagger>div:nth-child(6) { animation-delay: 1s; } .section-nav { text-align: center; } @media (max-width: 991px) { .section-nav { display: none; } } .section-nav .page-list { list-style: none; padding-left: 0; margin-left: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; } .section-nav .page-list>li { flex: 0 0 110px; } .section-nav .page-list a { display: block; padding: .3em .5em; color: var(--muted); border-top: 3px solid transparent; } .section-nav .page-list a[aria-current="page"] { color: var(--black); border-top: 3px solid var(--action); font-weight: bold; } .section-nav .page-list a:focus-visible, .section-nav .page-list a:active, .section-nav .page-list a:hover, .section-nav .page-list a.active { color: var(--black); border-color: var(--base-ultra-light); }