Add a padding to the second div equal to the height of the second div.
.content {
padding-top: 50px;
background: #ccc;
width: 100%;
height: 5000px;
}
When you say scrolling under the back panel, it seems that you want the content to start under the back panel. So add some indentation to the second div to account for the presence of a fixed div.
source
share