<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">define(['jquery'], function($){
    var pcon = $('.page_con');
    
    $(window).resize(function(){
        if(pcon.find('.img_1 img').width() &gt; pcon.width()){
            pcon.find('.img_1 img').css({
                'width': '100%'
            });
        }

        try {
            var team_li_min = 99999;
            setTimeout(function () {
                $(".team_li li").each(function () {
                    $(this).find(".img").css({ "height": "auto" });
                });
                $(".team_li li").each(function () {
                    if ($(this).find(".img").innerHeight() &lt; team_li_min) {
                        team_li_min = $(this).find(".img").innerHeight();
                    }
                });
                if (team_li_min &lt; 10)
                {
                    team_li_min = 200;
                }
                $(".team_li li").each(function () {
                    $(this).find(".img").css({ "height": team_li_min + "px" });
                });
            }, 1000);
        }
        catch (e) { }

    }).resize();
    
    var img3JS =$('.page_con .img_3_js');
    img3JS.each(function(){
        var self = $(this)
        self.find('div:nth-child(3n)').prev('div').addClass('cenr');
    });

    try {
        var team_li_min = 99999;
        setTimeout(function () {
            $(".team_li li").each(function () {
                $(this).find(".img").css({ "height": "auto" });
            });
            $(".team_li li").each(function () {
                if ($(this).find(".img").innerHeight() &lt; team_li_min) {
                    team_li_min = $(this).find(".img").innerHeight();
                }
            });
            if (team_li_min &lt; 10) {
                team_li_min = 200;
            }
            $(".team_li li").each(function () {
                $(this).find(".img").css({ "height": team_li_min + "px" });
            });
        }, 1000);
    }
    catch (e) { }


});</pre></body></html>