Displaying Portfolio Filter by Category Order (alphabetically)

I am assuming that ‘country’ is a custom meta field. In that case, you need this (very much like one of the examples in the Codex):

$loop = new WP_Query( 
    array ( 
        'post_type' => 'europe', 
        'posts_per_page' => -1,
        'orderby' => 'meta_value', 
        'meta_key' => 'country' 
        'order' => 'asc'
    ) 
);