.hero-section-container{opacity:0;transform:translateY(20px);transition:opacity 1s ease,transform 1s ease}.hero-section-container.animate{opacity:1;transform:translateY(0)}.animated-shapes{position:absolute;top:0;left:0;width:100%;height:100%}.animated-shapes:before{content:"";position:absolute;width:36px;height:36px;background-color:red;border-radius:50%;animation:moveAround 3s linear infinite}.animated-shapes:after{content:"";position:absolute;width:54px;height:54px;background-color:#ffd000;border-radius:50%;animation:moveAround 4s linear infinite alternate}@keyframes moveAround{0%{transform:translate(0)}25%{transform:translate(50px,50px)}50%{transform:translateY(100px)}75%{transform:translate(-50px,50px)}to{transform:translate(0)}}