.botones-destacados{overflow: visible;}.filterDiv{display: none;}.show{display: block;}.btn.active {background-color: #78b92f !important;color: #032e1a;font-weight: 900;position: relative;}
.btn.active::after {content: »;background: url(https://www.uexternado.edu.co/wp-content/uploads/2022/11/abajo.svg) no-repeat;bottom: -30px;right: 44%;display: block;position: absolute;z-index: 3;width: 30px;height: 30px;background-size: 30px;}
.texto a:hover {background: none;}@media (max-width: 1000px){.btn.active::after {display:none;}}

filterSelection(«all»)
function filterSelection(c) {
var x, i;
x = document.getElementsByClassName(«filterDiv»);
if (c == «all») c = «»;
// Add the «show» class (display:block) to the filtered elements, and remove the «show» class from the elements that are not selected
for (i = 0; i -1) w3AddClass(x[i], «show»);
}
}

// Show filtered elements
function w3AddClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(» «);
arr2 = name.split(» «);
for (i = 0; i < arr2.length; i++) {
if (arr1.indexOf(arr2[i]) == -1) {
element.className += " " + arr2[i];
}
}
}

// Hide elements that are not selected
function w3RemoveClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i -1) {
arr1.splice(arr1.indexOf(arr2[i]), 1);
}
}
element.className = arr1.join(» «);
}

var btnContainer = document.getElementById(«myBtnContainer»);
var btns = document.getElementsByClassName(«btn»);
for (var i = 0; i < btns.length; i++) {
btns[i].addEventListener("click", function() {
var current = document.getElementsByClassName("active");
current[0].className = current[0].className.replace(" active", "");
this.className += " active";
});
}