@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .product-image img {
    	position: absolute;
    	top: 50%;
    	left: 50%;
    	transform: translate(-50%,-50%);
    	max-width: 80%;
    }

    .product-title {
    	position: relative;
    }

    	.product-title h2 {
    		position: absolute;
	    	top: 50%;
	    	transform: translateY(-50%);
	    	width: calc(100% - 60px);
    	}

}