can someone help me how can I make with pure javascript make a scroll go down to a particular div on initial state
You might use element.scrollIntoView method:
const mydiv = document.getElementById("mydiv");
mydiv.scrollIntoView({
behavior: "smooth",
block: "start",
inline: "nearest"
});
<div id="mydiv">
My div
</div>