$(function() {
let btnsOpen = $('.button-open__models');
let selectBlock = $('.card1');
btnsOpen.on('click', function(e){
e.preventDefault;
$(this).parent().parent().append(selectBlock);
selectBlock.fadeIn({
duration: 400,
easing: 'linear'
});
});
});