/* Author: Viktor Artemyev <mail@artemyev.me>
*/

$(document).ready(function() {

var minheight = $(window).height();
var minwidth = $(window).width();

if (minwidth > 1350) {
  offset = (minheight-617)/1.5;
  $(".content").css({"margin-top":"+="+offset+"px"});
}

});








