 @keyframes fadeInUP { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }  section.brxe-section { opacity: 0; animation: fadeInUP 1s ease-out forwards;  }  section.brxe-section:nth-of-type(1) { animation-delay: 0.1s; } section.brxe-section:nth-of-type(2) { animation-delay: 0.3s; } section.brxe-section:nth-of-type(3) { animation-delay: 0.5s; } section.brxe-section:nth-of-type(4) { animation-delay: 0.7s; } section.brxe-section:nth-of-type(5) { animation-delay: 0.9s; }