Если забыть про осла, то можно на одном CSS
<style>
.top-banner {
height: 50px;
position: relative;
background-color: gray;
}
.header-laptop {
background-color: yellowgreen;
height: 80px;
width: 100%;
position: sticky;
top: 0;
}
main {
background-color: tan;
width: 100%;
height: 300px;
}
</style>
<body>
<header class="page-header">
<!-- top-banner -->
<section class="top-banner is-active">
<span class="top-banner__description">some text</span>
</section>
<!-- header laptop -->
</header>
<section class="header-laptop">
<h1>Этот блок должен быть stiky</h1>
</section>
<main></main>
</body>