$(document).ready(function(){
$('.more-text-btn').click(function(e){
e.preventDefault();
var activeBtn=$('.more-text-btn').hasClass('active-more');
if(activeBtn){
$(this).parents('.main-descr__content').addClass('full');
$(this).html('сховати');
}else{
$(this).parents('.main-descr__content').removeClass('full');
$(this).html('читати далі');
}
$(this).toggleClass('active-more');
});
});