
    var ancho = $(window).width();
    
    if (ancho <= 780){
    
        $('.loader').remove();
    
    }





/******************************************************/


    var ancho = $(window).width();
    if (ancho < 1900){

        var elements = $('.modal-overlay, .modal');

        $('#suma').click(function(){
            $('#suma2').children('.modal-overlay, .modal').addClass('active');
        });

        $('#extra').click(function(){
            $('#extra2').children('.modal-overlay, .modal').addClass('active');
        });

        $('#valores').click(function(){
            $('#valores2').children('.modal-overlay, .modal').addClass('active');
        });

        $('#talento').click(function(){
            $('#talento2').children('.modal-overlay, .modal').addClass('active');
        });

        $('#solucionadores').click(function(){
            $('#solucionadores2').children('.modal-overlay, .modal').addClass('active');
        });

        $('.close-modal').click(function(){
            elements.removeClass('active');
        });