$('.gallery').each(function(index, el) {
var $carousel = $(el);
var $arrows = $carousel.parents('.proposal_item-content').children('.fa');
$carousel.slick({
prevArrow: $arrows.filter('.fa-chevron-circle-left'),
nextArrow: $arrows.filter('.fa-chevron-circle-right'),
// ... остальные настройки
});
});