$(document).ready(function() {//Expertise Options     var expertiseOptions = ["Data & AI", "Intelligent edge", "Modern apps", "Modern infrastructure", "Modern workplace", "Ciberseguridad"];       $('#list-1 li').each(function(index, element) {        var itemText = $(element).text();        if (expertiseOptions.indexOf(itemText) === -1) {          $(element).remove(); // Hide the item if it is not in the optionsToRemove array        }      });//Year optionsvar yearOptions = ["All years","2025",  "2024", "2023", "2022", "2021", "2020", "2019", "2018"];    $('#contenthub-year-drop li').each(function(index, element) {        var itemText = $(element).find('a').text(); // Find the text within <a> tag        if (yearOptions.indexOf(itemText) === -1) {            $(element).remove(); // Hide the item if it is not in the yearOptions array        }    });    });