window.addEventListener("scroll", () => {
     if (scrollY > 100) {
       document.querySelector(".cat-breeds-left").style.cssText = "position: fixed; top:10px";
     }else{
      document.querySelector(".cat-breeds-left").style.cssText = "position: static; top:initial";
     }
    })
body üstüne script tagı içine ekleyiniz, önce dosyanızın yedeğini almayı unutmayın