Section has height of browser window.
<script>
jQuery(document).ready(function($){
var wh = $( window ).height();
if( wh < 768 ){
$('#page_block_below_fold').css({'height': 768});
$('#page_block_below_fold').css({'height': 768});
}else{
$('#page_block_below_fold .border-holder').css({'height': wh});
$('#page_block_below_fold .border-holder').css({'height': wh});
}
});
// end the .ready
</script>