/*
jQuery(document).ready(function(){
var guardar_texto = jQuery(".porto-sicon-box.right-icon > .porto-sicon-body > .porto-sicon-description")[0].outerHTML;
var guardar_imagem = jQuery("#home > .custom-section-svg div:first-of-type > div")[0].outerHTML;
console.log( guardar_texto );
console.log( guardar_imagem );
jQuery(".porto-sicon-box.right-icon").on( "click" , function(){
if ( jQuery(".porto-sicon-box.right-icon > .porto-sicon-body > .porto-sicon-description").length > 0 ) {
jQuery(".porto-sicon-box.right-icon > .porto-sicon-body > .porto-sicon-description")[0].outerHTML = '';
jQuery("#home > .custom-section-svg div:first-of-type").addClass("esconder");
jQuery("#home > .custom-section-svg").addClass("esconder_fundo");
jQuery("#home > .custom-section-svg div:first-of-type > div").append( guardar_texto );
console.log( jQuery("#home > .custom-section-svg div:first-of-type > div")[0].outerHTML );
console.log( guardar_texto );
console.log( guardar_imagem );
}
else {
//var guardar_texto = jQuery(".porto-sicon-box.right-icon > .porto-sicon-body > .porto-sicon-description").outerHTML;
//jQuery(".porto-sicon-box.right-icon > .porto-sicon-body > .porto-sicon-description")[0].outerHTML = '';
jQuery("#home > .custom-section-svg div:first-of-type").removeClass("esconder");
jQuery("#home > .custom-section-svg").removeClass("esconder_fundo");
jQuery("#home > .custom-section-svg div:first-of-type > div > .porto-sicon-description")[0].outerHTML = '';
jQuery(".porto-sicon-box.right-icon > .porto-sicon-body").append( guardar_texto );
console.log( guardar_texto );
console.log( guardar_imagem );
}
});
});
*/