Milestone
Milestone is a leading provider of innovative histology solutions in six different fields: Frozen Section, Cytology, Sample Handling, Tissue Processing, Macro Digital and Reagents. All products aim to help patients and to create a better laboratory environment for the medical staff of both the anatomical pathology and surgical rooms.
function resizeCTA(){
jQuery(".em_ctab__cta_main_container").each(function(){
var containerHeight = jQuery(this).outerHeight(); var containerWidth = jQuery(this).width();
var content = jQuery(this).find('.em_ctab__cta_content p'); var button = jQuery(this).find('.em_ctab__cta_button');
button.css('top', (containerHeight/2 - button.outerHeight()/2) );
var marginRight = button.outerWidth() + 25;
content.css('margin-right', marginRight);
});
}
jQuery( window ).resize(function() { resizeCTA(); });
jQuery(document).ready(function(){ resizeCTA(); });