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

    <!-- Kutular JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1209943 = 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 animasyon1209943(x) {
                var el = $('#bls-1209943');

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

                });

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

                });
                }

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


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

            (function($) {
                    $.fn.visible1209943 = 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 animasyon1209943(x) {

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

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


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

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

            });

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

            });

            }

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

            });
        

        
            $('.vls-1209943-').slick({

            slidesToShow: 1, 
            slidesToScroll: 1,
            infinite: true,
                dots: false,
                arrows: false,
                autoplay: false,
                cssEase: 'linear',
                fade: true,
                adaptiveHeight: false,
                centerMode: true,                                autoplaySpeed:4000,
                speed:000,
                                responsive: [{
                        breakpoint: 990,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: false,
                            autoplaySpeed:4000,
                            speed:000,
                        }
                    },
                    {
                        breakpoint: 767,
                        settings: {
                            slidesToShow: 1,
                            dots: false,
                            arrows: false,
                            adaptiveHeight: true,
                            autoplaySpeed:4000,
                            speed:000
                        }
                    }
                ]
            });

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

            var el = $('.vls-1209943- [data-slick-index='+nextSlide+']');
            var elx = $('.vls-1209943-');
            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 slideWrapper01209943 = $('.vls-1209943-'),
            iframes = slideWrapper01209943.find('.embed-player'),
        Images = slideWrapper01209943.find('.slide-image'),
        Counter = 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
                        });
                    }
                });
            }



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

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



/* ID: 1209945 TUR: 293 */


/* ID: 1209944 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1209944 = 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 animasyon1209944(x) {
                var el = $('#bls-1209944');

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

                });

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

                });
                }

                $(window).scroll(function() { animasyon1209944(true) });
                animasyon1209944(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: 1209947 TUR: 293 *//* ID: 1209946 TUR: 292 */    <!-- Banner JS Yapısı -->
                        
                (function($) {
                        $.fn.visible1209946 = 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 animasyon1209946(x) {
                var el = $('#bls-1209946');

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

                });

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

                });
                }

                $(window).scroll(function() { animasyon1209946(true) });
                animasyon1209946(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: 1209948 TUR: 310 */    
        <!-- Banner JS Yapısı -->
                <!--// Banner JS Yapısı Bitiş -->

        <!-- Kutular JS Yapısı -->
                                    
                    (function($) {
                            $.fn.visible1209948 = 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 animasyon1209948(x) {
                    var el = $('#bls-1209948');

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

                    });

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

                    });
                    }

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


        <!-- Slayt JS Yapısı -->
                <!--// Slayt JS Yapısı Bitiş-->
        <!-- Kategorileme Yapısı -->
                    
                $(document).ready(function() {
                    $(".filterStyl [data-fancybox='g-images-1209948']").fancybox();
                    $("body").on("click",".vls-1209948 .filters li",function(){
                    $(".vls-1209948 .filters li").removeClass("filterStyl");
                    $(this).addClass("filterStyl");

                    var mclass = $("label", this).attr("for");


                    $(".vls-1209948 .posts .post").removeClass("filterStyl").hide();				
                    $(".vls-1209948 .baslik").removeClass("titlestyl");	
                    $(".vls-1209948 .altbaslik").removeClass("titlestyl");

                    setTimeout(function() {
                        if (mclass == "All") {
                            $(".vls-1209948 .posts .post").show().addClass("filterStyl");	

                        } else {
                            $(".vls-1209948 .posts .post").removeClass("filterStyl");	
                            $(".vls-1209948 .resimgsbl[data-category="+mclass+"]").show().addClass("filterStyl");		
                            $(".vls-1209948 .baslik[data-category="+mclass+"]").addClass("titlestyl");	
                            $(".vls-1209948 .altbaslik[data-category="+mclass+"]").addClass("titlestyl");	
                        }
                        $(".filterStyl [data-fancybox='g-images-1209948']").fancybox();	


                        $(".vls-1209948 .posts .post:not(.filterStyl)").hide();	
                    }, 50)
                });

                setTimeout(function() {
                
                }, 500)
                });
            
                <!-- Kategorileme Yapısı Bitiş -->
/* ID: 1209949 TUR: 293 *//* ID: 1209950 TUR: 293 *//* ID: 1209951 TUR: 244 */
	(function($) {
		$.fn.visible1209951 = 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) || (_bottom>viewTop && _bottom<viewBottom)))
		};
	})(jQuery);


	function animasyon1209951() {
		var el = $('#bls-1209951');

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



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

                            $(window).enllax();

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

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

                            $(window).enllax();

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

                    
    
          /* ID: 1126170 TUR: 300 */
    
    	
		(function($) {
				$.fn.notvisible1126170 = function() {

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

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

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

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

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

			};
		})(jQuery);

		var k11126170, k21126170;

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

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

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

			el.addClass('efekt_basladi');


			clearTimeout(k11126170);
			clearTimeout(k21126170);

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

			k21126170 = 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));


			k31126170 = setTimeout(function() {
						}, (100+1000+1000));
		}
		}
		if (el.notvisible1126170()) 
		{
					}
		}
		$(window).scroll(function() { animasyon1126170() });
		animasyon1126170();
	
	<!-- parallax -->
	
		(function($) {

			$(window).enllax();

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

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

                            $(window).enllax();

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

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

                            $(window).enllax();

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

                    
    
  



setTimeout(function(){
  
  },3000);
/* CACHED: 2025-11-14 19:55:11 *//* CACHE */