$(window).ready(function(){
if ($(window).width() >= 992) {
$('.services-box').height($('.services-box').width()/2.5);
}
});
$(window).resize(function(){
if ($(window).width() >= 992) {
$('.services-box').height($('.services-box').width()/2.5);
}
});