
/* ID: 1048042 TUR: 301 */


        <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048042 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048042(x) {
                var el = $('#bls-1048042');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048042(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048042(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048042(true) });
                animasyon1048042(false);
            
                <!--// Kutular JS Yapısı Bitiş -->
    <!-- Kategorileme Yapısı -->
        <!-- Kategorileme Yapısı Bitiş -->

    <!-- Slayt JS Yapısı -->
            
            $('.vls-1048042-683ca131c3').on('init', function(e, slick) {

            (function($) {
                    $.fn.visible1048042 = function() {


                    var $t = $(this),
                        $w = $(window),
                        viewTop = $w.scrollTop(),
                        viewBottom = viewTop + $w.height(),
                        _top = $t.offset().top,
                        _bottom = _top + $t.height() - 50;
                    //  console.log(_top,viewTop,_bottom,viewBottom);
                    return (_top > viewTop && _top < viewBottom)
                };
            })(jQuery);


            function animasyon1048042(x) {

            var elx = $('.vls-1048042-683ca131c3');
            elx.find('.efektd').each(function() {
                if (!x) {

                    $(this).removeClass("animated");
                    $(this).removeClass($(this).data('efekt'));
                }
            });


            var el = $('#bls-1048042 .slick-slide[data-slick-index="0"]');

            el.find('.efektd').each(function() {
                if ( $(this).visible1048042(true)) {
                $(this).addClass("animated");
                $(this).addClass($(this).data('efekt'));
            }

            });

            el.find('.efektdx').each(function() {
            if ( $(this).visible1048042(true)) {
            $(this).addClass("animated");
            $(this).addClass($(this).data('efekt'));
            }

            });

            }

            $(window).scroll(function() { animasyon1048042(true) });
            animasyon1048042(false);
            });
        
        
            $(document).ready(function() {
                $('.ybirimlec-1048042').mouseParallax({ moveFactor: 0.0,  });
                $('.yikiimlec-1048042').mouseParallax({ moveFactor: 0.0,  });
                $('.ysekizimlec-1048042').mouseParallax({ moveFactor: 0.0,  });

            });
        

        
            $('.gridster .vls-1048042-683ca131c3').not('.slick-initialized').slick({
            slidesToShow: 1, 
            slidesToScroll: 1,
            infinite: true,
                dots: true,
                arrows: false,
                autoplay: false,
                cssEase: 'linear',
                fade: false,
                adaptiveHeight: false,
                                                autoplaySpeed:5000,
                speed:300,
                                responsive: [{
                        breakpoint: 990,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: false                        }
                    },
                    {
                        breakpoint: 767,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: false,
                            adaptiveHeight: true
                        }
                    }
                ]
            });

            
            $('.vls-1048042-683ca131c3').on('beforeChange', function(event, slick, currentSlide, nextSlide){

            var el = $('.vls-1048042-683ca131c3 [data-slick-index='+nextSlide+']');
            var elx = $('.vls-1048042-683ca131c3');
            elx.find('.animated').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });

            elx.find('.efektdx[data-efekt]').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });
            setTimeout(function() {
                el.find('.efektd[data-efekt]').each(function() {
                    $(this).addClass("animated");
                    $(this).addClass($(this).attr('data-efekt'));

                });
            }, 5);

            el.find('.efektdx[data-efekt]').each(function() {
            $(this).addClass("animated");
            $(this).addClass($(this).attr('data-efekt'));
            });

            });


            var slideWrapper01048042683ca131c3 = $('.vls-1048042-683ca131c3'),
            iframes = slideWrapper01048042683ca131c3.find('.embed-player'),
            lazyImages = slideWrapper01048042683ca131c3.find('.slide-image'),
            lazyCounter = 0;

            // POST commands to YouTube or Vimeo API
            function postMessageToPlayer(player, command) {
                if (player == null || command == null) return;
                player.contentWindow.postMessage(JSON.stringify(command), "*");
            }

            // When the slide is changing
            function playPauseVideo(slick, control) {
                var currentSlide, slideType, startTime, player, video;

                currentSlide = slick.find(".slick-current");
                slideType = currentSlide.attr("class").split(" ")[0];
                player = currentSlide.find("iframe").get(0);
                startTime = currentSlide.data("video-start");
                if (slideType === "vimeo") {
                    switch (control) {
                        case "play":
                            if ((startTime != null && startTime > 0) && !currentSlide.hasClass('started')) {
                                currentSlide.addClass('started');
                                postMessageToPlayer(player, {
                                    "method": "setCurrentTime",
                                    "value": startTime
                                });
                            }
                            postMessageToPlayer(player, {
                                "method": "play",
                                "value": 1
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "method": "pause",
                                "value": 1
                            });
                            break;
                    }
                } else if (slideType === "youtube") {
                    switch (control) {
                        case "play":
                            /*   postMessageToPlayer(player, {
                             "event": "command",
                             "func": "mute"
                           });*/
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "playVideo"
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "pauseVideo"
                            });
                            break;
                    }
                } else if (slideType === "video") {
                    video = currentSlide.children("video").get(0);
                    if (video != null) {
                        if (control === "play") {
                            video.play();
                        } else {
                            video.pause();
                        }
                    }
                }
            }

            // Resize player
            function resizePlayer(iframes, ratio) {
                if (!iframes[0]) return;
                var win = $(".main-slider"),
                    width = win.width(),
                    playerWidth,
                    height = win.height(),
                    playerHeight,
                    ratio = ratio || 16 / 9;

                iframes.each(function() {
                    var current = $(this);
                    if (width / ratio < height) {
                        playerWidth = Math.ceil(height * ratio);
                        current.width(playerWidth).height(height).css({
                            left: (width - playerWidth) / 2,
                            top: 0
                        });
                    } else {
                        playerHeight = Math.ceil(width / ratio);
                        current.width(width).height(playerHeight).css({
                            left: 0,
                            top: (height - playerHeight) / 2
                        });
                    }
                });
            }



            slideWrapper01048042683ca131c3.on("init", function(slick){
            slick = $(slick.currentTarget);
            setTimeout(function() {
                playPauseVideo(slick, "play");
            }, 1000);
            resizePlayer(iframes, 16 / 9);
            });
            slideWrapper01048042683ca131c3.on("beforeChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "pause");
            });
            slideWrapper01048042683ca131c3.on("afterChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "play");
            }); 
            slideWrapper01048042683ca131c3.on("lazyLoaded", function(event, slick, image, imageSource) {
            lazyCounter++;
            if (lazyCounter === lazyImages.length) {
                lazyImages.addClass('show');
                // slideWrapper0.slick("slickPlay");
            }
            });
        

        <!--// Slayt JS Yapısı Bitiş-->
/* ID: 1354558 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1354558 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1354558(x) {
                var el = $('#bls-1354558');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1354558(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1354558(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1354558(true) });
                animasyon1354558(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048062 TUR: 293 */


/* ID: 1048046 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048046 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048046(x) {
                var el = $('#bls-1048046');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048046(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048046(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048046(true) });
                animasyon1048046(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048047 TUR: 292 */    <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048047 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048047(x) {
                var el = $('#bls-1048047');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048047(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048047(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048047(true) });
                animasyon1048047(false);
            
                <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048057 TUR: 293 *//* ID: 1048191 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048191 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048191(x) {
                var el = $('#bls-1048191');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048191(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048191(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048191(true) });
                animasyon1048191(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048051 TUR: 301 */


        <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048051 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048051(x) {
                var el = $('#bls-1048051');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048051(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048051(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048051(true) });
                animasyon1048051(false);
            
                <!--// Kutular JS Yapısı Bitiş -->
    <!-- Kategorileme Yapısı -->
        <!-- Kategorileme Yapısı Bitiş -->

    <!-- Slayt JS Yapısı -->
            
            $('.vls-1048051-644cb928b8').on('init', function(e, slick) {

            (function($) {
                    $.fn.visible1048051 = function() {


                    var $t = $(this),
                        $w = $(window),
                        viewTop = $w.scrollTop(),
                        viewBottom = viewTop + $w.height(),
                        _top = $t.offset().top,
                        _bottom = _top + $t.height() - 50;
                    //  console.log(_top,viewTop,_bottom,viewBottom);
                    return (_top > viewTop && _top < viewBottom)
                };
            })(jQuery);


            function animasyon1048051(x) {

            var elx = $('.vls-1048051-644cb928b8');
            elx.find('.efektd').each(function() {
                if (!x) {

                    $(this).removeClass("animated");
                    $(this).removeClass($(this).data('efekt'));
                }
            });


            var el = $('#bls-1048051 .slick-slide[data-slick-index="0"]');

            el.find('.efektd').each(function() {
                if ( $(this).visible1048051(true)) {
                $(this).addClass("animated");
                $(this).addClass($(this).data('efekt'));
            }

            });

            el.find('.efektdx').each(function() {
            if ( $(this).visible1048051(true)) {
            $(this).addClass("animated");
            $(this).addClass($(this).data('efekt'));
            }

            });

            }

            $(window).scroll(function() { animasyon1048051(true) });
            animasyon1048051(false);
            });
        
        
            $(document).ready(function() {
                $('.ybirimlec-1048051').mouseParallax({ moveFactor: 0.0,  });
                $('.yikiimlec-1048051').mouseParallax({ moveFactor: 0.0,  });
                $('.ysekizimlec-1048051').mouseParallax({ moveFactor: 0.0,  });

            });
        

        
            $('.gridster .vls-1048051-644cb928b8').not('.slick-initialized').slick({
            slidesToShow: 4, 
            slidesToScroll: 1,
            infinite: true,
                dots: false,
                arrows: true,
                autoplay: true,
                cssEase: 'linear',
                fade: false,
                adaptiveHeight: false,
                                                autoplaySpeed:6000,
                speed:600,
                                responsive: [{
                        breakpoint: 990,
                        settings: {
                            slidesToShow: 3,
                            dots: false,
                            arrows: true                        }
                    },
                    {
                        breakpoint: 767,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: true,
                            adaptiveHeight: true
                        }
                    }
                ]
            });

            
            $('.vls-1048051-644cb928b8').on('beforeChange', function(event, slick, currentSlide, nextSlide){

            var el = $('.vls-1048051-644cb928b8 [data-slick-index='+nextSlide+']');
            var elx = $('.vls-1048051-644cb928b8');
            elx.find('.animated').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });

            elx.find('.efektdx[data-efekt]').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });
            setTimeout(function() {
                el.find('.efektd[data-efekt]').each(function() {
                    $(this).addClass("animated");
                    $(this).addClass($(this).attr('data-efekt'));

                });
            }, 5);

            el.find('.efektdx[data-efekt]').each(function() {
            $(this).addClass("animated");
            $(this).addClass($(this).attr('data-efekt'));
            });

            });


            var slideWrapper01048051644cb928b8 = $('.vls-1048051-644cb928b8'),
            iframes = slideWrapper01048051644cb928b8.find('.embed-player'),
            lazyImages = slideWrapper01048051644cb928b8.find('.slide-image'),
            lazyCounter = 0;

            // POST commands to YouTube or Vimeo API
            function postMessageToPlayer(player, command) {
                if (player == null || command == null) return;
                player.contentWindow.postMessage(JSON.stringify(command), "*");
            }

            // When the slide is changing
            function playPauseVideo(slick, control) {
                var currentSlide, slideType, startTime, player, video;

                currentSlide = slick.find(".slick-current");
                slideType = currentSlide.attr("class").split(" ")[0];
                player = currentSlide.find("iframe").get(0);
                startTime = currentSlide.data("video-start");
                if (slideType === "vimeo") {
                    switch (control) {
                        case "play":
                            if ((startTime != null && startTime > 0) && !currentSlide.hasClass('started')) {
                                currentSlide.addClass('started');
                                postMessageToPlayer(player, {
                                    "method": "setCurrentTime",
                                    "value": startTime
                                });
                            }
                            postMessageToPlayer(player, {
                                "method": "play",
                                "value": 1
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "method": "pause",
                                "value": 1
                            });
                            break;
                    }
                } else if (slideType === "youtube") {
                    switch (control) {
                        case "play":
                            /*   postMessageToPlayer(player, {
                             "event": "command",
                             "func": "mute"
                           });*/
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "playVideo"
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "pauseVideo"
                            });
                            break;
                    }
                } else if (slideType === "video") {
                    video = currentSlide.children("video").get(0);
                    if (video != null) {
                        if (control === "play") {
                            video.play();
                        } else {
                            video.pause();
                        }
                    }
                }
            }

            // Resize player
            function resizePlayer(iframes, ratio) {
                if (!iframes[0]) return;
                var win = $(".main-slider"),
                    width = win.width(),
                    playerWidth,
                    height = win.height(),
                    playerHeight,
                    ratio = ratio || 16 / 9;

                iframes.each(function() {
                    var current = $(this);
                    if (width / ratio < height) {
                        playerWidth = Math.ceil(height * ratio);
                        current.width(playerWidth).height(height).css({
                            left: (width - playerWidth) / 2,
                            top: 0
                        });
                    } else {
                        playerHeight = Math.ceil(width / ratio);
                        current.width(width).height(playerHeight).css({
                            left: 0,
                            top: (height - playerHeight) / 2
                        });
                    }
                });
            }



            slideWrapper01048051644cb928b8.on("init", function(slick){
            slick = $(slick.currentTarget);
            setTimeout(function() {
                playPauseVideo(slick, "play");
            }, 1000);
            resizePlayer(iframes, 16 / 9);
            });
            slideWrapper01048051644cb928b8.on("beforeChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "pause");
            });
            slideWrapper01048051644cb928b8.on("afterChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "play");
            }); 
            slideWrapper01048051644cb928b8.on("lazyLoaded", function(event, slick, image, imageSource) {
            lazyCounter++;
            if (lazyCounter === lazyImages.length) {
                lazyImages.addClass('show');
                // slideWrapper0.slick("slickPlay");
            }
            });
        

        <!--// Slayt JS Yapısı Bitiş-->
/* ID: 1048197 TUR: 293 *//* ID: 1048192 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048192 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048192(x) {
                var el = $('#bls-1048192');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048192(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048192(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048192(true) });
                animasyon1048192(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048193 TUR: 301 */


        <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048193 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048193(x) {
                var el = $('#bls-1048193');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048193(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048193(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048193(true) });
                animasyon1048193(false);
            
                <!--// Kutular JS Yapısı Bitiş -->
    <!-- Kategorileme Yapısı -->
        <!-- Kategorileme Yapısı Bitiş -->

    <!-- Slayt JS Yapısı -->
            
            $('.vls-1048193-644cb92f60').on('init', function(e, slick) {

            (function($) {
                    $.fn.visible1048193 = function() {


                    var $t = $(this),
                        $w = $(window),
                        viewTop = $w.scrollTop(),
                        viewBottom = viewTop + $w.height(),
                        _top = $t.offset().top,
                        _bottom = _top + $t.height() - 50;
                    //  console.log(_top,viewTop,_bottom,viewBottom);
                    return (_top > viewTop && _top < viewBottom)
                };
            })(jQuery);


            function animasyon1048193(x) {

            var elx = $('.vls-1048193-644cb92f60');
            elx.find('.efektd').each(function() {
                if (!x) {

                    $(this).removeClass("animated");
                    $(this).removeClass($(this).data('efekt'));
                }
            });


            var el = $('#bls-1048193 .slick-slide[data-slick-index="0"]');

            el.find('.efektd').each(function() {
                if ( $(this).visible1048193(true)) {
                $(this).addClass("animated");
                $(this).addClass($(this).data('efekt'));
            }

            });

            el.find('.efektdx').each(function() {
            if ( $(this).visible1048193(true)) {
            $(this).addClass("animated");
            $(this).addClass($(this).data('efekt'));
            }

            });

            }

            $(window).scroll(function() { animasyon1048193(true) });
            animasyon1048193(false);
            });
        
        
            $(document).ready(function() {
                $('.ybirimlec-1048193').mouseParallax({ moveFactor: 0.0,  });
                $('.yikiimlec-1048193').mouseParallax({ moveFactor: 0.0,  });
                $('.ysekizimlec-1048193').mouseParallax({ moveFactor: 0.0,  });

            });
        

        
            $('.gridster .vls-1048193-644cb92f60').not('.slick-initialized').slick({
            slidesToShow: 4, 
            slidesToScroll: 1,
            infinite: true,
                dots: false,
                arrows: true,
                autoplay: true,
                cssEase: 'linear',
                fade: false,
                adaptiveHeight: false,
                                                autoplaySpeed:6000,
                speed:600,
                                responsive: [{
                        breakpoint: 990,
                        settings: {
                            slidesToShow: 3,
                            dots: false,
                            arrows: true                        }
                    },
                    {
                        breakpoint: 767,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: true,
                            adaptiveHeight: true
                        }
                    }
                ]
            });

            
            $('.vls-1048193-644cb92f60').on('beforeChange', function(event, slick, currentSlide, nextSlide){

            var el = $('.vls-1048193-644cb92f60 [data-slick-index='+nextSlide+']');
            var elx = $('.vls-1048193-644cb92f60');
            elx.find('.animated').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });

            elx.find('.efektdx[data-efekt]').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });
            setTimeout(function() {
                el.find('.efektd[data-efekt]').each(function() {
                    $(this).addClass("animated");
                    $(this).addClass($(this).attr('data-efekt'));

                });
            }, 5);

            el.find('.efektdx[data-efekt]').each(function() {
            $(this).addClass("animated");
            $(this).addClass($(this).attr('data-efekt'));
            });

            });


            var slideWrapper01048193644cb92f60 = $('.vls-1048193-644cb92f60'),
            iframes = slideWrapper01048193644cb92f60.find('.embed-player'),
            lazyImages = slideWrapper01048193644cb92f60.find('.slide-image'),
            lazyCounter = 0;

            // POST commands to YouTube or Vimeo API
            function postMessageToPlayer(player, command) {
                if (player == null || command == null) return;
                player.contentWindow.postMessage(JSON.stringify(command), "*");
            }

            // When the slide is changing
            function playPauseVideo(slick, control) {
                var currentSlide, slideType, startTime, player, video;

                currentSlide = slick.find(".slick-current");
                slideType = currentSlide.attr("class").split(" ")[0];
                player = currentSlide.find("iframe").get(0);
                startTime = currentSlide.data("video-start");
                if (slideType === "vimeo") {
                    switch (control) {
                        case "play":
                            if ((startTime != null && startTime > 0) && !currentSlide.hasClass('started')) {
                                currentSlide.addClass('started');
                                postMessageToPlayer(player, {
                                    "method": "setCurrentTime",
                                    "value": startTime
                                });
                            }
                            postMessageToPlayer(player, {
                                "method": "play",
                                "value": 1
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "method": "pause",
                                "value": 1
                            });
                            break;
                    }
                } else if (slideType === "youtube") {
                    switch (control) {
                        case "play":
                            /*   postMessageToPlayer(player, {
                             "event": "command",
                             "func": "mute"
                           });*/
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "playVideo"
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "pauseVideo"
                            });
                            break;
                    }
                } else if (slideType === "video") {
                    video = currentSlide.children("video").get(0);
                    if (video != null) {
                        if (control === "play") {
                            video.play();
                        } else {
                            video.pause();
                        }
                    }
                }
            }

            // Resize player
            function resizePlayer(iframes, ratio) {
                if (!iframes[0]) return;
                var win = $(".main-slider"),
                    width = win.width(),
                    playerWidth,
                    height = win.height(),
                    playerHeight,
                    ratio = ratio || 16 / 9;

                iframes.each(function() {
                    var current = $(this);
                    if (width / ratio < height) {
                        playerWidth = Math.ceil(height * ratio);
                        current.width(playerWidth).height(height).css({
                            left: (width - playerWidth) / 2,
                            top: 0
                        });
                    } else {
                        playerHeight = Math.ceil(width / ratio);
                        current.width(width).height(playerHeight).css({
                            left: 0,
                            top: (height - playerHeight) / 2
                        });
                    }
                });
            }



            slideWrapper01048193644cb92f60.on("init", function(slick){
            slick = $(slick.currentTarget);
            setTimeout(function() {
                playPauseVideo(slick, "play");
            }, 1000);
            resizePlayer(iframes, 16 / 9);
            });
            slideWrapper01048193644cb92f60.on("beforeChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "pause");
            });
            slideWrapper01048193644cb92f60.on("afterChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "play");
            }); 
            slideWrapper01048193644cb92f60.on("lazyLoaded", function(event, slick, image, imageSource) {
            lazyCounter++;
            if (lazyCounter === lazyImages.length) {
                lazyImages.addClass('show');
                // slideWrapper0.slick("slickPlay");
            }
            });
        

        <!--// Slayt JS Yapısı Bitiş-->
/* ID: 1413656 TUR: 293 *//* ID: 1413652 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1413652 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1413652(x) {
                var el = $('#bls-1413652');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1413652(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1413652(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1413652(true) });
                animasyon1413652(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1413653 TUR: 301 */


        <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1413653 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1413653(x) {
                var el = $('#bls-1413653');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1413653(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1413653(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1413653(true) });
                animasyon1413653(false);
            
                <!--// Kutular JS Yapısı Bitiş -->
    <!-- Kategorileme Yapısı -->
        <!-- Kategorileme Yapısı Bitiş -->

    <!-- Slayt JS Yapısı -->
            
            $('.vls-1413653-').on('init', function(e, slick) {

            (function($) {
                    $.fn.visible1413653 = function() {


                    var $t = $(this),
                        $w = $(window),
                        viewTop = $w.scrollTop(),
                        viewBottom = viewTop + $w.height(),
                        _top = $t.offset().top,
                        _bottom = _top + $t.height() - 50;
                    //  console.log(_top,viewTop,_bottom,viewBottom);
                    return (_top > viewTop && _top < viewBottom)
                };
            })(jQuery);


            function animasyon1413653(x) {

            var elx = $('.vls-1413653-');
            elx.find('.efektd').each(function() {
                if (!x) {

                    $(this).removeClass("animated");
                    $(this).removeClass($(this).data('efekt'));
                }
            });


            var el = $('#bls-1413653 .slick-slide[data-slick-index="0"]');

            el.find('.efektd').each(function() {
                if ( $(this).visible1413653(true)) {
                $(this).addClass("animated");
                $(this).addClass($(this).data('efekt'));
            }

            });

            el.find('.efektdx').each(function() {
            if ( $(this).visible1413653(true)) {
            $(this).addClass("animated");
            $(this).addClass($(this).data('efekt'));
            }

            });

            }

            $(window).scroll(function() { animasyon1413653(true) });
            animasyon1413653(false);
            });
        
        
            $(document).ready(function() {
                $('.ybirimlec-1413653').mouseParallax({ moveFactor: 0.0,  });
                $('.yikiimlec-1413653').mouseParallax({ moveFactor: 0.0,  });
                $('.ysekizimlec-1413653').mouseParallax({ moveFactor: 0.0,  });

            });
        

        
            $('.gridster .vls-1413653-').not('.slick-initialized').slick({
            slidesToShow: 4, 
            slidesToScroll: 1,
            infinite: true,
                dots: false,
                arrows: true,
                autoplay: true,
                cssEase: 'linear',
                fade: false,
                adaptiveHeight: false,
                                                autoplaySpeed:6000,
                speed:600,
                                responsive: [{
                        breakpoint: 990,
                        settings: {
                            slidesToShow: 3,
                            dots: false,
                            arrows: true                        }
                    },
                    {
                        breakpoint: 767,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: true,
                            adaptiveHeight: true
                        }
                    }
                ]
            });

            
            $('.vls-1413653-').on('beforeChange', function(event, slick, currentSlide, nextSlide){

            var el = $('.vls-1413653- [data-slick-index='+nextSlide+']');
            var elx = $('.vls-1413653-');
            elx.find('.animated').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });

            elx.find('.efektdx[data-efekt]').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });
            setTimeout(function() {
                el.find('.efektd[data-efekt]').each(function() {
                    $(this).addClass("animated");
                    $(this).addClass($(this).attr('data-efekt'));

                });
            }, 5);

            el.find('.efektdx[data-efekt]').each(function() {
            $(this).addClass("animated");
            $(this).addClass($(this).attr('data-efekt'));
            });

            });


            var slideWrapper01413653 = $('.vls-1413653-'),
            iframes = slideWrapper01413653.find('.embed-player'),
            lazyImages = slideWrapper01413653.find('.slide-image'),
            lazyCounter = 0;

            // POST commands to YouTube or Vimeo API
            function postMessageToPlayer(player, command) {
                if (player == null || command == null) return;
                player.contentWindow.postMessage(JSON.stringify(command), "*");
            }

            // When the slide is changing
            function playPauseVideo(slick, control) {
                var currentSlide, slideType, startTime, player, video;

                currentSlide = slick.find(".slick-current");
                slideType = currentSlide.attr("class").split(" ")[0];
                player = currentSlide.find("iframe").get(0);
                startTime = currentSlide.data("video-start");
                if (slideType === "vimeo") {
                    switch (control) {
                        case "play":
                            if ((startTime != null && startTime > 0) && !currentSlide.hasClass('started')) {
                                currentSlide.addClass('started');
                                postMessageToPlayer(player, {
                                    "method": "setCurrentTime",
                                    "value": startTime
                                });
                            }
                            postMessageToPlayer(player, {
                                "method": "play",
                                "value": 1
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "method": "pause",
                                "value": 1
                            });
                            break;
                    }
                } else if (slideType === "youtube") {
                    switch (control) {
                        case "play":
                            /*   postMessageToPlayer(player, {
                             "event": "command",
                             "func": "mute"
                           });*/
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "playVideo"
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "pauseVideo"
                            });
                            break;
                    }
                } else if (slideType === "video") {
                    video = currentSlide.children("video").get(0);
                    if (video != null) {
                        if (control === "play") {
                            video.play();
                        } else {
                            video.pause();
                        }
                    }
                }
            }

            // Resize player
            function resizePlayer(iframes, ratio) {
                if (!iframes[0]) return;
                var win = $(".main-slider"),
                    width = win.width(),
                    playerWidth,
                    height = win.height(),
                    playerHeight,
                    ratio = ratio || 16 / 9;

                iframes.each(function() {
                    var current = $(this);
                    if (width / ratio < height) {
                        playerWidth = Math.ceil(height * ratio);
                        current.width(playerWidth).height(height).css({
                            left: (width - playerWidth) / 2,
                            top: 0
                        });
                    } else {
                        playerHeight = Math.ceil(width / ratio);
                        current.width(width).height(playerHeight).css({
                            left: 0,
                            top: (height - playerHeight) / 2
                        });
                    }
                });
            }



            slideWrapper01413653.on("init", function(slick){
            slick = $(slick.currentTarget);
            setTimeout(function() {
                playPauseVideo(slick, "play");
            }, 1000);
            resizePlayer(iframes, 16 / 9);
            });
            slideWrapper01413653.on("beforeChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "pause");
            });
            slideWrapper01413653.on("afterChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "play");
            }); 
            slideWrapper01413653.on("lazyLoaded", function(event, slick, image, imageSource) {
            lazyCounter++;
            if (lazyCounter === lazyImages.length) {
                lazyImages.addClass('show');
                // slideWrapper0.slick("slickPlay");
            }
            });
        

        <!--// Slayt JS Yapısı Bitiş-->
/* ID: 1413657 TUR: 293 *//* ID: 1413654 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1413654 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1413654(x) {
                var el = $('#bls-1413654');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1413654(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1413654(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1413654(true) });
                animasyon1413654(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1413655 TUR: 301 */


        <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1413655 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1413655(x) {
                var el = $('#bls-1413655');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1413655(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1413655(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1413655(true) });
                animasyon1413655(false);
            
                <!--// Kutular JS Yapısı Bitiş -->
    <!-- Kategorileme Yapısı -->
        <!-- Kategorileme Yapısı Bitiş -->

    <!-- Slayt JS Yapısı -->
            
            $('.vls-1413655-').on('init', function(e, slick) {

            (function($) {
                    $.fn.visible1413655 = function() {


                    var $t = $(this),
                        $w = $(window),
                        viewTop = $w.scrollTop(),
                        viewBottom = viewTop + $w.height(),
                        _top = $t.offset().top,
                        _bottom = _top + $t.height() - 50;
                    //  console.log(_top,viewTop,_bottom,viewBottom);
                    return (_top > viewTop && _top < viewBottom)
                };
            })(jQuery);


            function animasyon1413655(x) {

            var elx = $('.vls-1413655-');
            elx.find('.efektd').each(function() {
                if (!x) {

                    $(this).removeClass("animated");
                    $(this).removeClass($(this).data('efekt'));
                }
            });


            var el = $('#bls-1413655 .slick-slide[data-slick-index="0"]');

            el.find('.efektd').each(function() {
                if ( $(this).visible1413655(true)) {
                $(this).addClass("animated");
                $(this).addClass($(this).data('efekt'));
            }

            });

            el.find('.efektdx').each(function() {
            if ( $(this).visible1413655(true)) {
            $(this).addClass("animated");
            $(this).addClass($(this).data('efekt'));
            }

            });

            }

            $(window).scroll(function() { animasyon1413655(true) });
            animasyon1413655(false);
            });
        
        
            $(document).ready(function() {
                $('.ybirimlec-1413655').mouseParallax({ moveFactor: 0.0,  });
                $('.yikiimlec-1413655').mouseParallax({ moveFactor: 0.0,  });
                $('.ysekizimlec-1413655').mouseParallax({ moveFactor: 0.0,  });

            });
        

        
            $('.gridster .vls-1413655-').not('.slick-initialized').slick({
            slidesToShow: 4, 
            slidesToScroll: 1,
            infinite: true,
                dots: false,
                arrows: true,
                autoplay: true,
                cssEase: 'linear',
                fade: false,
                adaptiveHeight: false,
                                                autoplaySpeed:6000,
                speed:600,
                                responsive: [{
                        breakpoint: 990,
                        settings: {
                            slidesToShow: 3,
                            dots: false,
                            arrows: true                        }
                    },
                    {
                        breakpoint: 767,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: true,
                            adaptiveHeight: true
                        }
                    }
                ]
            });

            
            $('.vls-1413655-').on('beforeChange', function(event, slick, currentSlide, nextSlide){

            var el = $('.vls-1413655- [data-slick-index='+nextSlide+']');
            var elx = $('.vls-1413655-');
            elx.find('.animated').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });

            elx.find('.efektdx[data-efekt]').each(function() {
                $(this).removeClass("animated");
                $(this).removeClass($(this).attr('data-efekt'));
            });
            setTimeout(function() {
                el.find('.efektd[data-efekt]').each(function() {
                    $(this).addClass("animated");
                    $(this).addClass($(this).attr('data-efekt'));

                });
            }, 5);

            el.find('.efektdx[data-efekt]').each(function() {
            $(this).addClass("animated");
            $(this).addClass($(this).attr('data-efekt'));
            });

            });


            var slideWrapper01413655 = $('.vls-1413655-'),
            iframes = slideWrapper01413655.find('.embed-player'),
            lazyImages = slideWrapper01413655.find('.slide-image'),
            lazyCounter = 0;

            // POST commands to YouTube or Vimeo API
            function postMessageToPlayer(player, command) {
                if (player == null || command == null) return;
                player.contentWindow.postMessage(JSON.stringify(command), "*");
            }

            // When the slide is changing
            function playPauseVideo(slick, control) {
                var currentSlide, slideType, startTime, player, video;

                currentSlide = slick.find(".slick-current");
                slideType = currentSlide.attr("class").split(" ")[0];
                player = currentSlide.find("iframe").get(0);
                startTime = currentSlide.data("video-start");
                if (slideType === "vimeo") {
                    switch (control) {
                        case "play":
                            if ((startTime != null && startTime > 0) && !currentSlide.hasClass('started')) {
                                currentSlide.addClass('started');
                                postMessageToPlayer(player, {
                                    "method": "setCurrentTime",
                                    "value": startTime
                                });
                            }
                            postMessageToPlayer(player, {
                                "method": "play",
                                "value": 1
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "method": "pause",
                                "value": 1
                            });
                            break;
                    }
                } else if (slideType === "youtube") {
                    switch (control) {
                        case "play":
                            /*   postMessageToPlayer(player, {
                             "event": "command",
                             "func": "mute"
                           });*/
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "playVideo"
                            });
                            break;
                        case "pause":
                            postMessageToPlayer(player, {
                                "event": "command",
                                "func": "pauseVideo"
                            });
                            break;
                    }
                } else if (slideType === "video") {
                    video = currentSlide.children("video").get(0);
                    if (video != null) {
                        if (control === "play") {
                            video.play();
                        } else {
                            video.pause();
                        }
                    }
                }
            }

            // Resize player
            function resizePlayer(iframes, ratio) {
                if (!iframes[0]) return;
                var win = $(".main-slider"),
                    width = win.width(),
                    playerWidth,
                    height = win.height(),
                    playerHeight,
                    ratio = ratio || 16 / 9;

                iframes.each(function() {
                    var current = $(this);
                    if (width / ratio < height) {
                        playerWidth = Math.ceil(height * ratio);
                        current.width(playerWidth).height(height).css({
                            left: (width - playerWidth) / 2,
                            top: 0
                        });
                    } else {
                        playerHeight = Math.ceil(width / ratio);
                        current.width(width).height(playerHeight).css({
                            left: 0,
                            top: (height - playerHeight) / 2
                        });
                    }
                });
            }



            slideWrapper01413655.on("init", function(slick){
            slick = $(slick.currentTarget);
            setTimeout(function() {
                playPauseVideo(slick, "play");
            }, 1000);
            resizePlayer(iframes, 16 / 9);
            });
            slideWrapper01413655.on("beforeChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "pause");
            });
            slideWrapper01413655.on("afterChange", function(event, slick) {
            slick = $(slick.$slider);
            playPauseVideo(slick, "play");
            }); 
            slideWrapper01413655.on("lazyLoaded", function(event, slick, image, imageSource) {
            lazyCounter++;
            if (lazyCounter === lazyImages.length) {
                lazyImages.addClass('show');
                // slideWrapper0.slick("slickPlay");
            }
            });
        

        <!--// Slayt JS Yapısı Bitiş-->
/* ID: 1048196 TUR: 293 *//* ID: 1048198 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048198 = function() {

                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048198(x) {
                var el = $('#bls-1048198');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048198(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048198(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048198(true) });
                animasyon1048198(false);
            
                <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
        <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048050 TUR: 292 */    <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048050 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048050(x) {
                var el = $('#bls-1048050');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048050(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048050(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048050(true) });
                animasyon1048050(false);
            
                <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048060 TUR: 292 */    <!-- Banner JS Yapısı -->
        <!--// Banner JS Yapısı Bitiş -->

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1048060 = function() {
                        var $t = $(this),
                            $w = $(window),
                            viewTop = $w.scrollTop(),
                            viewBottom = viewTop + $w.height(),
                            _top = $t.offset().top,
                            _bottom = _top + $t.height() - 50;
                        return (_top > viewTop && _top < viewBottom)
                    };
                })(jQuery);


                function animasyon1048060(x) {
                var el = $('#bls-1048060');

                el.find('.efektd').each(function() {
                    if ( $(this).visible1048060(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });

                el.find('.efektdx').each(function() {
                    if ( $(this).visible1048060(true)) {
                    $(this).addClass("animated");
                    $(this).addClass($(this).data('efekt'));
                }

                });
                }

                $(window).scroll(function() { animasyon1048060(true) });
                animasyon1048060(false);
            
                <!--// Kutular JS Yapısı Bitiş -->


    <!-- Slayt JS Yapısı -->
        <!--// Slayt JS Yapısı Bitiş-->



/* ID: 1048063 TUR: 293 */

        /* ID: 1048037 TUR: 298 */
    
                                        <!-- parallax -->
                    
                        (function($) {

                            $(window).enllax();

                        })(jQuery);
                    
                    <!-- parallax bitiş -->

                    
    
          /* ID: 1048038 TUR: 300 */
    
    	
		(function($) {
				$.fn.notvisible1048038 = function() {

				var $t = $(this),
					$w = $(window),
					viewTop = $w.scrollTop(),
					viewBottom = viewTop + $w.height(),
					_top          = 17,
					_bottom = _top + $t.height() - 250;

				return (((_top < viewTop || _top > viewBottom) && (_bottom < viewTop || _bottom > viewBottom)))
			};
		})(jQuery);

		(function($) {
				$.fn.visible1048038 = function() {

				var $t = $(this),
					$w = $(window),
					viewTop = $w.scrollTop(),
					viewBottom = viewTop + $w.height(),
					_top          = 17,
					_bottom = _top + $t.height() - 250;

				return (((_top > viewTop && _top < viewBottom) || viewTop == 0 || (_bottom > viewTop && _bottom < viewBottom)))

			};
		})(jQuery);

		var k11048038, k21048038, k31048038;

		function animasyon1048038() {
		var el = $('#ta-bls-1048038 .efekt-1048038');

		var rf = 'transform:' + $('#ta-bls-1048038 .efekt-1048038').css('transform')+';';

		if (el.visible1048038(true)) {
		if (!el.hasClass("efekt_basladi")) {

			el.addClass('efekt_basladi');


			clearTimeout(k11048038);
			clearTimeout(k21048038);

			k11048038 = setTimeout(function() {
			el.removeClass('animate__animated animate__Kapat').attr('style', el.attr('style')+el.data('giris')).addClass('efekt_basladi2 animate__animated animate__Kapat');
			}, 0);

			k21048038 = setTimeout(function() {
			el.removeClass('animate__animated animate__Kapat animate__Kapat').addClass('efekt_basladi2 animate__animated animate__Kapat').attr('style', el.attr('style')+el.data('ekranda'));
			}, (0+1000));


			k31048038 = setTimeout(function() {
						}, (100+1000+1000));
		}
		}
		if (el.notvisible1048038()) 
		{
					}
		}
		$(window).scroll(function() { animasyon1048038() });
		animasyon1048038();
	
	<!-- parallax -->
	
		(function($) {

			$(window).enllax();

		})(jQuery);
	
	<!-- parallax bitiş -->

		
    
          /* ID: 1048039 TUR: 298 */
    
                                        <!-- parallax -->
                    
                        (function($) {

                            $(window).enllax();

                        })(jQuery);
                    
                    <!-- parallax bitiş -->

                    
    
          /* ID: 1048043 TUR: 298 */
    
                                        <!-- parallax -->
                    
                        (function($) {

                            $(window).enllax();

                        })(jQuery);
                    
                    <!-- parallax bitiş -->

                    
    
          /* ID: 1048044 TUR: 298 */
    
                                        <!-- parallax -->
                    
                        (function($) {

                            $(window).enllax();

                        })(jQuery);
                    
                    <!-- parallax bitiş -->

                    
    
          /* ID: 1048045 TUR: 299 */
    
    					<!-- parallax -->
			
				(function($) {

					$(window).enllax();

				})(jQuery);
			
			<!-- parallax bitiş -->

						
    
          /* ID: 1048049 TUR: 298 */
    
                                        <!-- parallax -->
                    
                        (function($) {

                            $(window).enllax();

                        })(jQuery);
                    
                    <!-- parallax bitiş -->

                    
    
  



setTimeout(function(){
      (function(i,s,o,g,r,a,m){ i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

    ga('create', 'UA-169208338-1', 'auto');
    ga('send', 'pageview');
  
  },3000);
/* CACHED: 2026-06-12 18:57:06 *//* CACHE */