// 100% высота блока на главной
$(window).resize(function(){
var height = $(window).height();
$('.class-name').css({'height':height});
}).resize();
.rightblock {
min-height: calc(100vh - 40px);
padding: 20px 25px;
box-sizing: padding-box;
}