0){w=u.left-t.collisionPosition.marginLeft+x+A+r-q;if(w>0||n(w)x&&(p<0||p0){z=t.top-s.collisionPosition.marginTop+w+C+q-o;if((t.top+w+C+q)>u&&(z>0||n(z)10&&r<11;s.innerHTML="";u.removeChild(s)})();if(e.uiBackCompat!==false){(function(p){var o=p.fn.position;p.fn.position=function(r){if(!r||!r.offset){return o.call(this,r)}var s=r.offset.split(" "),q=r.at.split(" ");if(s.length===1){s[1]=s[0]}if(/^\d/.test(s[0])){s[0]="+"+s[0]}if(/^\d/.test(s[1])){s[1]="+"+s[1]}if(q.length===1){if(/left|center|right/.test(q[0])){q[1]="center"}else{q[1]=q[0];q[0]="center"}}return o.call(this,p.extend(r,{at:q[0]+s[0]+" "+q[1]+s[1],offset:c}))}}(jQuery))}}(jQuery));
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/js/lightbox.js b/Web Development/Basic/Tourist Places/js/lightbox.js
new file mode 100644
index 000000000..c20580852
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/lightbox.js
@@ -0,0 +1,411 @@
+/**
+ * Lightbox v2.7.1
+ * by Lokesh Dhakar - http://lokeshdhakar.com/projects/lightbox2/
+ *
+ * @license http://creativecommons.org/licenses/by/2.5/
+ * - Free for use in both personal and commercial projects
+ * - Attribution requires leaving author name, author link, and the license info intact
+ */
+
+(function() {
+ // Use local alias
+ var $ = jQuery;
+
+ var LightboxOptions = (function() {
+ function LightboxOptions() {
+ this.fadeDuration = 500;
+ this.fitImagesInViewport = true;
+ this.resizeDuration = 700;
+ this.positionFromTop = 50;
+ this.showImageNumberLabel = true;
+ this.alwaysShowNavOnTouchDevices = false;
+ this.wrapAround = false;
+ }
+
+ // Change to localize to non-english language
+ LightboxOptions.prototype.albumLabel = function(curImageNum, albumSize) {
+ return "Image " + curImageNum + " of " + albumSize;
+ };
+
+ return LightboxOptions;
+ })();
+
+
+ var Lightbox = (function() {
+ function Lightbox(options) {
+ this.options = options;
+ this.album = [];
+ this.currentImageIndex = void 0;
+ this.init();
+ }
+
+ Lightbox.prototype.init = function() {
+ this.enable();
+ this.build();
+ };
+
+ // Loop through anchors and areamaps looking for either data-lightbox attributes or rel attributes
+ // that contain 'lightbox'. When these are clicked, start lightbox.
+ Lightbox.prototype.enable = function() {
+ var self = this;
+ $('body').on('click', 'a[rel^=lightbox], area[rel^=lightbox], a[data-lightbox], area[data-lightbox]', function(event) {
+ self.start($(event.currentTarget));
+ return false;
+ });
+ };
+
+ // Build html for the lightbox and the overlay.
+ // Attach event handlers to the new DOM elements. click click click
+ Lightbox.prototype.build = function() {
+ var self = this;
+ $("
").appendTo($('body'));
+
+ // Cache jQuery objects
+ this.$lightbox = $('#lightbox');
+ this.$overlay = $('#lightboxOverlay');
+ this.$outerContainer = this.$lightbox.find('.lb-outerContainer');
+ this.$container = this.$lightbox.find('.lb-container');
+
+ // Store css values for future lookup
+ this.containerTopPadding = parseInt(this.$container.css('padding-top'), 10);
+ this.containerRightPadding = parseInt(this.$container.css('padding-right'), 10);
+ this.containerBottomPadding = parseInt(this.$container.css('padding-bottom'), 10);
+ this.containerLeftPadding = parseInt(this.$container.css('padding-left'), 10);
+
+ // Attach event handlers to the newly minted DOM elements
+ this.$overlay.hide().on('click', function() {
+ self.end();
+ return false;
+ });
+
+ this.$lightbox.hide().on('click', function(event) {
+ if ($(event.target).attr('id') === 'lightbox') {
+ self.end();
+ }
+ return false;
+ });
+
+ this.$outerContainer.on('click', function(event) {
+ if ($(event.target).attr('id') === 'lightbox') {
+ self.end();
+ }
+ return false;
+ });
+
+ this.$lightbox.find('.lb-prev').on('click', function() {
+ if (self.currentImageIndex === 0) {
+ self.changeImage(self.album.length - 1);
+ } else {
+ self.changeImage(self.currentImageIndex - 1);
+ }
+ return false;
+ });
+
+ this.$lightbox.find('.lb-next').on('click', function() {
+ if (self.currentImageIndex === self.album.length - 1) {
+ self.changeImage(0);
+ } else {
+ self.changeImage(self.currentImageIndex + 1);
+ }
+ return false;
+ });
+
+ this.$lightbox.find('.lb-loader, .lb-close').on('click', function() {
+ self.end();
+ return false;
+ });
+ };
+
+ // Show overlay and lightbox. If the image is part of a set, add siblings to album array.
+ Lightbox.prototype.start = function($link) {
+ var self = this;
+ var $window = $(window);
+
+ $window.on('resize', $.proxy(this.sizeOverlay, this));
+
+ $('select, object, embed').css({
+ visibility: "hidden"
+ });
+
+ this.sizeOverlay();
+
+ this.album = [];
+ var imageNumber = 0;
+
+ function addToAlbum($link) {
+ self.album.push({
+ link: $link.attr('href'),
+ title: $link.attr('data-title') || $link.attr('title')
+ });
+ }
+
+ // Support both data-lightbox attribute and rel attribute implementations
+ var dataLightboxValue = $link.attr('data-lightbox');
+ var $links;
+
+ if (dataLightboxValue) {
+ $links = $($link.prop("tagName") + '[data-lightbox="' + dataLightboxValue + '"]');
+ for (var i = 0; i < $links.length; i = ++i) {
+ addToAlbum($($links[i]));
+ if ($links[i] === $link[0]) {
+ imageNumber = i;
+ }
+ }
+ } else {
+ if ($link.attr('rel') === 'lightbox') {
+ // If image is not part of a set
+ addToAlbum($link);
+ } else {
+ // If image is part of a set
+ $links = $($link.prop("tagName") + '[rel="' + $link.attr('rel') + '"]');
+ for (var j = 0; j < $links.length; j = ++j) {
+ addToAlbum($($links[j]));
+ if ($links[j] === $link[0]) {
+ imageNumber = j;
+ }
+ }
+ }
+ }
+
+ // Position Lightbox
+ var top = $window.scrollTop() + this.options.positionFromTop;
+ var left = $window.scrollLeft();
+ this.$lightbox.css({
+ top: top + 'px',
+ left: left + 'px'
+ }).fadeIn(this.options.fadeDuration);
+
+ this.changeImage(imageNumber);
+ };
+
+ // Hide most UI elements in preparation for the animated resizing of the lightbox.
+ Lightbox.prototype.changeImage = function(imageNumber) {
+ var self = this;
+
+ this.disableKeyboardNav();
+ var $image = this.$lightbox.find('.lb-image');
+
+ this.$overlay.fadeIn(this.options.fadeDuration);
+
+ $('.lb-loader').fadeIn('slow');
+ this.$lightbox.find('.lb-image, .lb-nav, .lb-prev, .lb-next, .lb-dataContainer, .lb-numbers, .lb-caption').hide();
+
+ this.$outerContainer.addClass('animating');
+
+ // When image to show is preloaded, we send the width and height to sizeContainer()
+ var preloader = new Image();
+ preloader.onload = function() {
+ var $preloader, imageHeight, imageWidth, maxImageHeight, maxImageWidth, windowHeight, windowWidth;
+ $image.attr('src', self.album[imageNumber].link);
+
+ $preloader = $(preloader);
+
+ $image.width(preloader.width);
+ $image.height(preloader.height);
+
+ if (self.options.fitImagesInViewport) {
+ // Fit image inside the viewport.
+ // Take into account the border around the image and an additional 10px gutter on each side.
+
+ windowWidth = $(window).width();
+ windowHeight = $(window).height();
+ maxImageWidth = windowWidth - self.containerLeftPadding - self.containerRightPadding - 20;
+ maxImageHeight = windowHeight - self.containerTopPadding - self.containerBottomPadding - 120;
+
+ // Is there a fitting issue?
+ if ((preloader.width > maxImageWidth) || (preloader.height > maxImageHeight)) {
+ if ((preloader.width / maxImageWidth) > (preloader.height / maxImageHeight)) {
+ imageWidth = maxImageWidth;
+ imageHeight = parseInt(preloader.height / (preloader.width / imageWidth), 10);
+ $image.width(imageWidth);
+ $image.height(imageHeight);
+ } else {
+ imageHeight = maxImageHeight;
+ imageWidth = parseInt(preloader.width / (preloader.height / imageHeight), 10);
+ $image.width(imageWidth);
+ $image.height(imageHeight);
+ }
+ }
+ }
+ self.sizeContainer($image.width(), $image.height());
+ };
+
+ preloader.src = this.album[imageNumber].link;
+ this.currentImageIndex = imageNumber;
+ };
+
+ // Stretch overlay to fit the viewport
+ Lightbox.prototype.sizeOverlay = function() {
+ this.$overlay
+ .width($(window).width())
+ .height($(document).height());
+ };
+
+ // Animate the size of the lightbox to fit the image we are showing
+ Lightbox.prototype.sizeContainer = function(imageWidth, imageHeight) {
+ var self = this;
+
+ var oldWidth = this.$outerContainer.outerWidth();
+ var oldHeight = this.$outerContainer.outerHeight();
+ var newWidth = imageWidth + this.containerLeftPadding + this.containerRightPadding;
+ var newHeight = imageHeight + this.containerTopPadding + this.containerBottomPadding;
+
+ function postResize() {
+ self.$lightbox.find('.lb-dataContainer').width(newWidth);
+ self.$lightbox.find('.lb-prevLink').height(newHeight);
+ self.$lightbox.find('.lb-nextLink').height(newHeight);
+ self.showImage();
+ }
+
+ if (oldWidth !== newWidth || oldHeight !== newHeight) {
+ this.$outerContainer.animate({
+ width: newWidth,
+ height: newHeight
+ }, this.options.resizeDuration, 'swing', function() {
+ postResize();
+ });
+ } else {
+ postResize();
+ }
+ };
+
+ // Display the image and it's details and begin preload neighboring images.
+ Lightbox.prototype.showImage = function() {
+ this.$lightbox.find('.lb-loader').hide();
+ this.$lightbox.find('.lb-image').fadeIn('slow');
+
+ this.updateNav();
+ this.updateDetails();
+ this.preloadNeighboringImages();
+ this.enableKeyboardNav();
+ };
+
+ // Display previous and next navigation if appropriate.
+ Lightbox.prototype.updateNav = function() {
+ // Check to see if the browser supports touch events. If so, we take the conservative approach
+ // and assume that mouse hover events are not supported and always show prev/next navigation
+ // arrows in image sets.
+ var alwaysShowNav = false;
+ try {
+ document.createEvent("TouchEvent");
+ alwaysShowNav = (this.options.alwaysShowNavOnTouchDevices)? true: false;
+ } catch (e) {}
+
+ this.$lightbox.find('.lb-nav').show();
+
+ if (this.album.length > 1) {
+ if (this.options.wrapAround) {
+ if (alwaysShowNav) {
+ this.$lightbox.find('.lb-prev, .lb-next').css('opacity', '1');
+ }
+ this.$lightbox.find('.lb-prev, .lb-next').show();
+ } else {
+ if (this.currentImageIndex > 0) {
+ this.$lightbox.find('.lb-prev').show();
+ if (alwaysShowNav) {
+ this.$lightbox.find('.lb-prev').css('opacity', '1');
+ }
+ }
+ if (this.currentImageIndex < this.album.length - 1) {
+ this.$lightbox.find('.lb-next').show();
+ if (alwaysShowNav) {
+ this.$lightbox.find('.lb-next').css('opacity', '1');
+ }
+ }
+ }
+ }
+ };
+
+ // Display caption, image number, and closing button.
+ Lightbox.prototype.updateDetails = function() {
+ var self = this;
+
+ // Enable anchor clicks in the injected caption html.
+ // Thanks Nate Wright for the fix. @https://github.com/NateWr
+ if (typeof this.album[this.currentImageIndex].title !== 'undefined' && this.album[this.currentImageIndex].title !== "") {
+ this.$lightbox.find('.lb-caption')
+ .html(this.album[this.currentImageIndex].title)
+ .fadeIn('fast')
+ .find('a').on('click', function(event){
+ location.href = $(this).attr('href');
+ });
+ }
+
+ if (this.album.length > 1 && this.options.showImageNumberLabel) {
+ this.$lightbox.find('.lb-number').text(this.options.albumLabel(this.currentImageIndex + 1, this.album.length)).fadeIn('fast');
+ } else {
+ this.$lightbox.find('.lb-number').hide();
+ }
+
+ this.$outerContainer.removeClass('animating');
+
+ this.$lightbox.find('.lb-dataContainer').fadeIn(this.options.resizeDuration, function() {
+ return self.sizeOverlay();
+ });
+ };
+
+ // Preload previous and next images in set.
+ Lightbox.prototype.preloadNeighboringImages = function() {
+ if (this.album.length > this.currentImageIndex + 1) {
+ var preloadNext = new Image();
+ preloadNext.src = this.album[this.currentImageIndex + 1].link;
+ }
+ if (this.currentImageIndex > 0) {
+ var preloadPrev = new Image();
+ preloadPrev.src = this.album[this.currentImageIndex - 1].link;
+ }
+ };
+
+ Lightbox.prototype.enableKeyboardNav = function() {
+ $(document).on('keyup.keyboard', $.proxy(this.keyboardAction, this));
+ };
+
+ Lightbox.prototype.disableKeyboardNav = function() {
+ $(document).off('.keyboard');
+ };
+
+ Lightbox.prototype.keyboardAction = function(event) {
+ var KEYCODE_ESC = 27;
+ var KEYCODE_LEFTARROW = 37;
+ var KEYCODE_RIGHTARROW = 39;
+
+ var keycode = event.keyCode;
+ var key = String.fromCharCode(keycode).toLowerCase();
+ if (keycode === KEYCODE_ESC || key.match(/x|o|c/)) {
+ this.end();
+ } else if (key === 'p' || keycode === KEYCODE_LEFTARROW) {
+ if (this.currentImageIndex !== 0) {
+ this.changeImage(this.currentImageIndex - 1);
+ } else if (this.options.wrapAround && this.album.length > 1) {
+ this.changeImage(this.album.length - 1);
+ }
+ } else if (key === 'n' || keycode === KEYCODE_RIGHTARROW) {
+ if (this.currentImageIndex !== this.album.length - 1) {
+ this.changeImage(this.currentImageIndex + 1);
+ } else if (this.options.wrapAround && this.album.length > 1) {
+ this.changeImage(0);
+ }
+ }
+ };
+
+ // Closing time. :-(
+ Lightbox.prototype.end = function() {
+ this.disableKeyboardNav();
+ $(window).off("resize", this.sizeOverlay);
+ this.$lightbox.fadeOut(this.options.fadeDuration);
+ this.$overlay.fadeOut(this.options.fadeDuration);
+ $('select, object, embed').css({
+ visibility: "visible"
+ });
+ };
+
+ return Lightbox;
+
+ })();
+
+ $(function() {
+ var options = new LightboxOptions();
+ var lightbox = new Lightbox(options);
+ });
+
+}).call(this);
diff --git a/Web Development/Basic/Tourist Places/js/main.js b/Web Development/Basic/Tourist Places/js/main.js
new file mode 100644
index 000000000..420af59f1
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/main.js
@@ -0,0 +1,269 @@
+(function($) {
+ "use strict";
+
+ //when dom is ready
+ $(document).ready(function() {
+
+
+ // on scroll Navbar Fixed and back to top show
+ $(window).on('scroll', function() {
+ if($(window).width() > 600){
+ if ($(window).scrollTop() > 600) {
+ $('#header').addClass('navbar-fixed-top');
+ $('#back-to-top').addClass('reveal');
+ } else {
+ $('#header').removeClass('navbar-fixed-top');
+ $('#back-to-top').removeClass('reveal');
+ }
+ }
+ });
+
+
+ // Start Back to Top
+ $('#back-to-top').on('click', function() {
+ $("html, body").animate({scrollTop: 0}, 1000);
+ return false;
+ });
+
+
+
+ // revolution slider start
+ $("#rev_slider_1").show().revolution({
+ sliderType: "standard",
+ sliderLayout: "fullwidth",
+ dottedOverlay: "none",
+ delay: 9000,
+ spinner: "spinner4",
+ navigation: {
+ keyboardNavigation: "off",
+ keyboard_direction: "horizontal",
+ mouseScrollNavigation: "off",
+ onHoverStop: "off",
+ touch: {
+ touchenabled: "on",
+ swipe_threshold: 75,
+ swipe_min_touches: 1,
+ swipe_direction: "horizontal",
+ drag_block_vertical: false
+ },
+ arrows: {
+ enable: true,
+ style: 'metis',
+ tmp: '',
+ rtl: false,
+ hide_onleave: true,
+ hide_onmobile: true,
+ hide_under: 0,
+ hide_over: 9999,
+ hide_delay: 200,
+ hide_delay_mobile: 1200,
+ left: {
+ container: 'slider',
+ h_align: 'left',
+ v_align: 'center',
+ h_offset: 20,
+ v_offset: 0
+ },
+ right: {
+ container: 'slider',
+ h_align: 'right',
+ v_align: 'center',
+ h_offset: 20,
+ v_offset: 0
+ }
+ },
+ },
+ responsiveLevels: [1240, 1024, 767, 480],
+ gridwidth: [1170, 1170, 767, 480],
+ gridheight: [700, 700, 600, 600],
+ lazyType: "none",
+ shadow: 0,
+ shuffle: "off",
+ autoHeight: "off",
+ });
+ // revolution slider end
+
+
+ // Start Portfolio Section
+ $(window).on('load', function() {
+
+ //Portfolio Start
+ var $container = $('.portfolio-box');
+ $container.isotope({
+ filter: '*',
+ animationOptions: {
+ duration: 750,
+ easing: 'linear',
+ queue: false
+ }
+ });
+ $('.filter a').on('click', function() {
+ $('.filter .active').removeClass('active');
+ $(this).addClass('active');
+ var selector = $(this).attr('data-filter');
+ $('.portfolio-box').isotope({
+ filter: selector,
+ animationOptions: {
+ duration: 750,
+ easing: 'linear',
+ queue: false
+ }
+ });
+ return false;
+ });
+ //Portfolio End
+ });
+
+
+ //Owl Carousel-- Team Member
+ $(".owl-scroll").owlCarousel({
+ pagination: true,
+ navigation: false,
+ items : 3,
+ itemsDesktop : [1000,3],
+ itemsDesktopSmall : [900,3],
+ itemsTablet: [767,2],
+ slideSpeed: 2500,
+ stopOnHover: true,
+ autoPlay: true,
+ singleItem: false,
+ navigationText: [' ', ' ']
+ });
+
+ //Owl Carousel-- Testimonial
+ $(".testimonial-carousel").owlCarousel({
+ pagination: false,
+ navigation: false,
+ items : 1,
+ itemsDesktop : [1000,1],
+ itemsDesktopSmall : [900,1],
+ itemsTablet: [767,1],
+ slideSpeed: 2500,
+ stopOnHover: true,
+ autoPlay: true,
+ singleItem: false,
+ navigationText: [' ', ' ']
+ });
+
+
+ // Start Animated Number
+ $('.animated-counter, .animated-counter-2').appear(function() {
+ $('.animated-number').countTo({
+ speed: 4000,
+ refreshInterval: 60,
+ formatter: function(value, options) {
+ return value.toFixed(options.decimals);
+ }
+ });
+ });
+
+
+ //Progress Bar
+ $('.progress-bar').each(function(){
+ var width = $(this).data('percentage');
+ $(this).css({'transition': 'width 3s'});
+ $(this).appear(function () {
+ $(this).css('width', width + '%');
+ $(this).find('.count').countTo({
+ from: 0,
+ to: width,
+ speed: 3000,
+ refreshInterval: 50,
+ });
+ });
+ });
+
+ // Start Easy Pie Chart
+ $('.progress-chart-feature').appear(function() {
+ $('.chart').easyPieChart({
+ animate: 2000,
+ barColor: '#32c5d2',
+ trackColor: '#f6f6f6',
+ scaleColor: '',
+ lineCap: 'round',
+ lineWidth: 10,
+ size: 130
+ });
+ });
+
+ //Tooltip
+ $('[data-toggle="tooltip"]').tooltip()
+
+ //video background
+ try {
+ jQuery(".player").mb_YTPlayer();
+ } catch (err) {}
+
+
+ //Start Modal Popup
+ $('.launch-modal').on('click', function(e){
+ e.preventDefault();
+ $( '#' + $(this).data('modal-id') ).modal();
+ });
+
+
+ //CountDown
+ $(".countdown").countdown({
+ date: "07 Aug 2090 00:01:00", //set your date and time. EX: 15 May 2014 12:00:00
+ format: "on"
+ });
+
+ //Video
+ $(document).ready(function(){
+ // Target your .container, .wrapper, .post, etc.
+ $(".video-container").fitVids();
+ });
+
+
+
+ // Styles Switcher
+ $(document).ready(function(){
+ $('.open-switcher').click(function(){
+ if($(this).hasClass('show-switcher')) {
+ $('.switcher-box').css({'left': 0});
+ $('.open-switcher').removeClass('show-switcher');
+ $('.open-switcher').addClass('hide-switcher');
+ }else if(jQuery(this).hasClass('hide-switcher')) {
+ $('.switcher-box').css({'left': '-212px'});
+ $('.open-switcher').removeClass('hide-switcher');
+ $('.open-switcher').addClass('show-switcher');
+ }
+ });
+ });
+
+
+ //Layout Switcher
+ $(".layout-style").change(function(){
+ if( $(this).val() == 1){
+ $("#container").removeClass("boxed-page"),
+ $(window).resize();
+ } else{
+ $("#container").addClass("boxed-page"),
+ $(window).resize();
+ }
+ });
+
+ //Background Switcher
+ $('.switcher-box .bg-list li a').click(function() {
+ var current = $('.switcher-box select[id=layout-style]').find('option:selected').val();
+ if(current == '2') {
+ var bg = $(this).css("backgroundImage");
+ $("body").css("backgroundImage",bg);
+ } else {
+ alert('Please select boxed layout');
+ }
+ });
+
+
+
+
+ });
+ //dom ready end
+
+
+
+
+
+
+
+})(jQuery);
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/js/map.js b/Web Development/Basic/Tourist Places/js/map.js
new file mode 100644
index 000000000..2420d283a
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/map.js
@@ -0,0 +1,112 @@
+function initMap() {
+
+ var map = new google.maps.Map(document.getElementById('map'), {
+ center: {lat: 40.674, lng: -73.945},
+ scrollwheel: false,
+ zoom: 12,
+ styles: [
+ {
+ elementType: 'geometry',
+ stylers: [{color: '#f5f5f5'}]
+ },
+ {
+ elementType: 'labels.icon',
+ stylers: [{visibility: 'off'}]
+ },
+ {
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#616161'}]
+ },
+ {
+ elementType: 'labels.text.stroke',
+ stylers: [{color: '#f5f5f5'}]
+ },
+ {
+ featureType: 'administrative.land_parcel',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#bdbdbd'}]
+ },
+ {
+ featureType: 'poi',
+ elementType: 'geometry',
+ stylers: [{color: '#eeeeee'}]
+ },
+ {
+ featureType: 'poi',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#757575'}]
+ },
+ {
+ featureType: 'poi.park',
+ elementType: 'geometry',
+ stylers: [{color: '#e5e5e5'}]
+ },
+ {
+ featureType: 'poi.park',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#9e9e9e'}]
+ },
+ {
+ featureType: 'road',
+ elementType: 'geometry',
+ stylers: [{color: '#ffffff'}]
+ },
+ {
+ featureType: 'road.arterial',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#757575'}]
+ },
+ {
+ featureType: 'road.highway',
+ elementType: 'geometry',
+ stylers: [{color: '#dadada'}]
+ },
+ {
+ featureType: 'road.highway',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#616161'}]
+ },
+ {
+ featureType: 'road.local',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#9e9e9e'}]
+ },
+ {
+ featureType: 'transit.line',
+ elementType: 'geometry',
+ stylers: [{color: '#e5e5e5'}]
+ },
+ {
+ featureType: 'transit.station',
+ elementType: 'geometry',
+ stylers: [{color: '#eeeeee'}]
+ },
+ {
+ featureType: 'water',
+ elementType: 'geometry',
+ stylers: [{color: '#c9c9c9'}]
+ },
+ {
+ featureType: 'water',
+ elementType: 'labels.text.fill',
+ stylers: [{color: '#9e9e9e'}]
+ }
+ ]
+ });
+
+ var marker = new google.maps.Marker({
+ position: new google.maps.LatLng(40.674, -73.945),
+ map: map,
+ title: 'Find us here!'
+ });
+
+ // var image = 'https://developers.google.com/maps/documentation/javascript/examples/full/images/beachflag.png';
+ // var beachMarker3 = new google.maps.Marker({
+ // position: {lat: 40.674, lng: -73.945},
+ // map: map,
+ // icon: image,
+ // title: 'You are here'
+ // });
+}
+
+
diff --git a/Web Development/Basic/Tourist Places/js/owl.carousel.js b/Web Development/Basic/Tourist Places/js/owl.carousel.js
new file mode 100644
index 000000000..785dae3a1
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/owl.carousel.js
@@ -0,0 +1,1512 @@
+/*
+ * jQuery OwlCarousel v1.3.3
+ *
+ * Copyright (c) 2013 Bartosz Wojciechowski
+ * http://www.owlgraphic.com/owlcarousel/
+ *
+ * Licensed under MIT
+ *
+ */
+
+/*JS Lint helpers: */
+/*global dragMove: false, dragEnd: false, $, jQuery, alert, window, document */
+/*jslint nomen: true, continue:true */
+
+if (typeof Object.create !== "function") {
+ Object.create = function (obj) {
+ function F() {}
+ F.prototype = obj;
+ return new F();
+ };
+}
+(function ($, window, document) {
+
+ var Carousel = {
+ init : function (options, el) {
+ var base = this;
+
+ base.$elem = $(el);
+ base.options = $.extend({}, $.fn.owlCarousel.options, base.$elem.data(), options);
+
+ base.userOptions = options;
+ base.loadContent();
+ },
+
+ loadContent : function () {
+ var base = this, url;
+
+ function getData(data) {
+ var i, content = "";
+ if (typeof base.options.jsonSuccess === "function") {
+ base.options.jsonSuccess.apply(this, [data]);
+ } else {
+ for (i in data.owl) {
+ if (data.owl.hasOwnProperty(i)) {
+ content += data.owl[i].item;
+ }
+ }
+ base.$elem.html(content);
+ }
+ base.logIn();
+ }
+
+ if (typeof base.options.beforeInit === "function") {
+ base.options.beforeInit.apply(this, [base.$elem]);
+ }
+
+ if (typeof base.options.jsonPath === "string") {
+ url = base.options.jsonPath;
+ $.getJSON(url, getData);
+ } else {
+ base.logIn();
+ }
+ },
+
+ logIn : function () {
+ var base = this;
+
+ base.$elem.data("owl-originalStyles", base.$elem.attr("style"));
+ base.$elem.data("owl-originalClasses", base.$elem.attr("class"));
+
+ base.$elem.css({opacity: 0});
+ base.orignalItems = base.options.items;
+ base.checkBrowser();
+ base.wrapperWidth = 0;
+ base.checkVisible = null;
+ base.setVars();
+ },
+
+ setVars : function () {
+ var base = this;
+ if (base.$elem.children().length === 0) {return false; }
+ base.baseClass();
+ base.eventTypes();
+ base.$userItems = base.$elem.children();
+ base.itemsAmount = base.$userItems.length;
+ base.wrapItems();
+ base.$owlItems = base.$elem.find(".owl-item");
+ base.$owlWrapper = base.$elem.find(".owl-wrapper");
+ base.playDirection = "next";
+ base.prevItem = 0;
+ base.prevArr = [0];
+ base.currentItem = 0;
+ base.customEvents();
+ base.onStartup();
+ },
+
+ onStartup : function () {
+ var base = this;
+ base.updateItems();
+ base.calculateAll();
+ base.buildControls();
+ base.updateControls();
+ base.response();
+ base.moveEvents();
+ base.stopOnHover();
+ base.owlStatus();
+
+ if (base.options.transitionStyle !== false) {
+ base.transitionTypes(base.options.transitionStyle);
+ }
+ if (base.options.autoPlay === true) {
+ base.options.autoPlay = 5000;
+ }
+ base.play();
+
+ base.$elem.find(".owl-wrapper").css("display", "block");
+
+ if (!base.$elem.is(":visible")) {
+ base.watchVisibility();
+ } else {
+ base.$elem.css("opacity", 1);
+ }
+ base.onstartup = false;
+ base.eachMoveUpdate();
+ if (typeof base.options.afterInit === "function") {
+ base.options.afterInit.apply(this, [base.$elem]);
+ }
+ },
+
+ eachMoveUpdate : function () {
+ var base = this;
+
+ if (base.options.lazyLoad === true) {
+ base.lazyLoad();
+ }
+ if (base.options.autoHeight === true) {
+ base.autoHeight();
+ }
+ base.onVisibleItems();
+
+ if (typeof base.options.afterAction === "function") {
+ base.options.afterAction.apply(this, [base.$elem]);
+ }
+ },
+
+ updateVars : function () {
+ var base = this;
+ if (typeof base.options.beforeUpdate === "function") {
+ base.options.beforeUpdate.apply(this, [base.$elem]);
+ }
+ base.watchVisibility();
+ base.updateItems();
+ base.calculateAll();
+ base.updatePosition();
+ base.updateControls();
+ base.eachMoveUpdate();
+ if (typeof base.options.afterUpdate === "function") {
+ base.options.afterUpdate.apply(this, [base.$elem]);
+ }
+ },
+
+ reload : function () {
+ var base = this;
+ window.setTimeout(function () {
+ base.updateVars();
+ }, 0);
+ },
+
+ watchVisibility : function () {
+ var base = this;
+
+ if (base.$elem.is(":visible") === false) {
+ base.$elem.css({opacity: 0});
+ window.clearInterval(base.autoPlayInterval);
+ window.clearInterval(base.checkVisible);
+ } else {
+ return false;
+ }
+ base.checkVisible = window.setInterval(function () {
+ if (base.$elem.is(":visible")) {
+ base.reload();
+ base.$elem.animate({opacity: 1}, 200);
+ window.clearInterval(base.checkVisible);
+ }
+ }, 500);
+ },
+
+ wrapItems : function () {
+ var base = this;
+ base.$userItems.wrapAll("").wrap("
");
+ base.$elem.find(".owl-wrapper").wrap("
");
+ base.wrapperOuter = base.$elem.find(".owl-wrapper-outer");
+ base.$elem.css("display", "block");
+ },
+
+ baseClass : function () {
+ var base = this,
+ hasBaseClass = base.$elem.hasClass(base.options.baseClass),
+ hasThemeClass = base.$elem.hasClass(base.options.theme);
+
+ if (!hasBaseClass) {
+ base.$elem.addClass(base.options.baseClass);
+ }
+
+ if (!hasThemeClass) {
+ base.$elem.addClass(base.options.theme);
+ }
+ },
+
+ updateItems : function () {
+ var base = this, width, i;
+
+ if (base.options.responsive === false) {
+ return false;
+ }
+ if (base.options.singleItem === true) {
+ base.options.items = base.orignalItems = 1;
+ base.options.itemsCustom = false;
+ base.options.itemsDesktop = false;
+ base.options.itemsDesktopSmall = false;
+ base.options.itemsTablet = false;
+ base.options.itemsTabletSmall = false;
+ base.options.itemsMobile = false;
+ return false;
+ }
+
+ width = $(base.options.responsiveBaseWidth).width();
+
+ if (width > (base.options.itemsDesktop[0] || base.orignalItems)) {
+ base.options.items = base.orignalItems;
+ }
+ if (base.options.itemsCustom !== false) {
+ //Reorder array by screen size
+ base.options.itemsCustom.sort(function (a, b) {return a[0] - b[0]; });
+
+ for (i = 0; i < base.options.itemsCustom.length; i += 1) {
+ if (base.options.itemsCustom[i][0] <= width) {
+ base.options.items = base.options.itemsCustom[i][1];
+ }
+ }
+
+ } else {
+
+ if (width <= base.options.itemsDesktop[0] && base.options.itemsDesktop !== false) {
+ base.options.items = base.options.itemsDesktop[1];
+ }
+
+ if (width <= base.options.itemsDesktopSmall[0] && base.options.itemsDesktopSmall !== false) {
+ base.options.items = base.options.itemsDesktopSmall[1];
+ }
+
+ if (width <= base.options.itemsTablet[0] && base.options.itemsTablet !== false) {
+ base.options.items = base.options.itemsTablet[1];
+ }
+
+ if (width <= base.options.itemsTabletSmall[0] && base.options.itemsTabletSmall !== false) {
+ base.options.items = base.options.itemsTabletSmall[1];
+ }
+
+ if (width <= base.options.itemsMobile[0] && base.options.itemsMobile !== false) {
+ base.options.items = base.options.itemsMobile[1];
+ }
+ }
+
+ //if number of items is less than declared
+ if (base.options.items > base.itemsAmount && base.options.itemsScaleUp === true) {
+ base.options.items = base.itemsAmount;
+ }
+ },
+
+ response : function () {
+ var base = this,
+ smallDelay,
+ lastWindowWidth;
+
+ if (base.options.responsive !== true) {
+ return false;
+ }
+ lastWindowWidth = $(window).width();
+
+ base.resizer = function () {
+ if ($(window).width() !== lastWindowWidth) {
+ if (base.options.autoPlay !== false) {
+ window.clearInterval(base.autoPlayInterval);
+ }
+ window.clearTimeout(smallDelay);
+ smallDelay = window.setTimeout(function () {
+ lastWindowWidth = $(window).width();
+ base.updateVars();
+ }, base.options.responsiveRefreshRate);
+ }
+ };
+ $(window).resize(base.resizer);
+ },
+
+ updatePosition : function () {
+ var base = this;
+ base.jumpTo(base.currentItem);
+ if (base.options.autoPlay !== false) {
+ base.checkAp();
+ }
+ },
+
+ appendItemsSizes : function () {
+ var base = this,
+ roundPages = 0,
+ lastItem = base.itemsAmount - base.options.items;
+
+ base.$owlItems.each(function (index) {
+ var $this = $(this);
+ $this
+ .css({"width": base.itemWidth})
+ .data("owl-item", Number(index));
+
+ if (index % base.options.items === 0 || index === lastItem) {
+ if (!(index > lastItem)) {
+ roundPages += 1;
+ }
+ }
+ $this.data("owl-roundPages", roundPages);
+ });
+ },
+
+ appendWrapperSizes : function () {
+ var base = this,
+ width = base.$owlItems.length * base.itemWidth;
+
+ base.$owlWrapper.css({
+ "width": width * 2,
+ "left": 0
+ });
+ base.appendItemsSizes();
+ },
+
+ calculateAll : function () {
+ var base = this;
+ base.calculateWidth();
+ base.appendWrapperSizes();
+ base.loops();
+ base.max();
+ },
+
+ calculateWidth : function () {
+ var base = this;
+ base.itemWidth = Math.round(base.$elem.width() / base.options.items);
+ },
+
+ max : function () {
+ var base = this,
+ maximum = ((base.itemsAmount * base.itemWidth) - base.options.items * base.itemWidth) * -1;
+ if (base.options.items > base.itemsAmount) {
+ base.maximumItem = 0;
+ maximum = 0;
+ base.maximumPixels = 0;
+ } else {
+ base.maximumItem = base.itemsAmount - base.options.items;
+ base.maximumPixels = maximum;
+ }
+ return maximum;
+ },
+
+ min : function () {
+ return 0;
+ },
+
+ loops : function () {
+ var base = this,
+ prev = 0,
+ elWidth = 0,
+ i,
+ item,
+ roundPageNum;
+
+ base.positionsInArray = [0];
+ base.pagesInArray = [];
+
+ for (i = 0; i < base.itemsAmount; i += 1) {
+ elWidth += base.itemWidth;
+ base.positionsInArray.push(-elWidth);
+
+ if (base.options.scrollPerPage === true) {
+ item = $(base.$owlItems[i]);
+ roundPageNum = item.data("owl-roundPages");
+ if (roundPageNum !== prev) {
+ base.pagesInArray[prev] = base.positionsInArray[i];
+ prev = roundPageNum;
+ }
+ }
+ }
+ },
+
+ buildControls : function () {
+ var base = this;
+ if (base.options.navigation === true || base.options.pagination === true) {
+ base.owlControls = $("
").toggleClass("clickable", !base.browser.isTouch).appendTo(base.$elem);
+ }
+ if (base.options.pagination === true) {
+ base.buildPagination();
+ }
+ if (base.options.navigation === true) {
+ base.buildButtons();
+ }
+ },
+
+ buildButtons : function () {
+ var base = this,
+ buttonsWrapper = $("
'),void 0!=i&&void 0!=j&&punchgs.TweenLite.set(f.find(".slot").last(),{rotationZ:j})}else{if(!d)var q=0-c.sloth;for(var y=0;y
'),void 0!=i&&void 0!=j&&punchgs.TweenLite.set(f.find(".slot").last(),{rotationZ:j})}}},e=function(a,b,c,d){function y(){jQuery.each(v,function(a,c){c[0]!=b&&c[8]!=b||(q=c[1],r=c[2],s=t),t+=1})}var e=a[0].opt,f=punchgs.Power1.easeIn,g=punchgs.Power1.easeOut,h=punchgs.Power1.easeInOut,i=punchgs.Power2.easeIn,j=punchgs.Power2.easeOut,k=punchgs.Power2.easeInOut,m=(punchgs.Power3.easeIn,punchgs.Power3.easeOut),n=punchgs.Power3.easeInOut,o=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],p=[16,17,18,19,20,21,22,23,24,25,27],q=0,r=1,s=0,t=0,v=(new Array,[["boxslide",0,1,10,0,"box",!1,null,0,g,g,500,6],["boxfade",1,0,10,0,"box",!1,null,1,h,h,700,5],["slotslide-horizontal",2,0,0,200,"horizontal",!0,!1,2,k,k,700,3],["slotslide-vertical",3,0,0,200,"vertical",!0,!1,3,k,k,700,3],["curtain-1",4,3,0,0,"horizontal",!0,!0,4,g,g,300,5],["curtain-2",5,3,0,0,"horizontal",!0,!0,5,g,g,300,5],["curtain-3",6,3,25,0,"horizontal",!0,!0,6,g,g,300,5],["slotzoom-horizontal",7,0,0,400,"horizontal",!0,!0,7,g,g,300,7],["slotzoom-vertical",8,0,0,0,"vertical",!0,!0,8,j,j,500,8],["slotfade-horizontal",9,0,0,1e3,"horizontal",!0,null,9,j,j,2e3,10],["slotfade-vertical",10,0,0,1e3,"vertical",!0,null,10,j,j,2e3,10],["fade",11,0,1,300,"horizontal",!0,null,11,k,k,1e3,1],["crossfade",11,1,1,300,"horizontal",!0,null,11,k,k,1e3,1],["fadethroughdark",11,2,1,300,"horizontal",!0,null,11,k,k,1e3,1],["fadethroughlight",11,3,1,300,"horizontal",!0,null,11,k,k,1e3,1],["fadethroughtransparent",11,4,1,300,"horizontal",!0,null,11,k,k,1e3,1],["slideleft",12,0,1,0,"horizontal",!0,!0,12,n,n,1e3,1],["slideup",13,0,1,0,"horizontal",!0,!0,13,n,n,1e3,1],["slidedown",14,0,1,0,"horizontal",!0,!0,14,n,n,1e3,1],["slideright",15,0,1,0,"horizontal",!0,!0,15,n,n,1e3,1],["slideoverleft",12,7,1,0,"horizontal",!0,!0,12,n,n,1e3,1],["slideoverup",13,7,1,0,"horizontal",!0,!0,13,n,n,1e3,1],["slideoverdown",14,7,1,0,"horizontal",!0,!0,14,n,n,1e3,1],["slideoverright",15,7,1,0,"horizontal",!0,!0,15,n,n,1e3,1],["slideremoveleft",12,8,1,0,"horizontal",!0,!0,12,n,n,1e3,1],["slideremoveup",13,8,1,0,"horizontal",!0,!0,13,n,n,1e3,1],["slideremovedown",14,8,1,0,"horizontal",!0,!0,14,n,n,1e3,1],["slideremoveright",15,8,1,0,"horizontal",!0,!0,15,n,n,1e3,1],["papercut",16,0,0,600,"",null,null,16,n,n,1e3,2],["3dcurtain-horizontal",17,0,20,100,"vertical",!1,!0,17,h,h,500,7],["3dcurtain-vertical",18,0,10,100,"horizontal",!1,!0,18,h,h,500,5],["cubic",19,0,20,600,"horizontal",!1,!0,19,n,n,500,1],["cube",19,0,20,600,"horizontal",!1,!0,20,n,n,500,1],["flyin",20,0,4,600,"vertical",!1,!0,21,m,n,500,1],["turnoff",21,0,1,500,"horizontal",!1,!0,22,n,n,500,1],["incube",22,0,20,200,"horizontal",!1,!0,23,k,k,500,1],["cubic-horizontal",23,0,20,500,"vertical",!1,!0,24,j,j,500,1],["cube-horizontal",23,0,20,500,"vertical",!1,!0,25,j,j,500,1],["incube-horizontal",24,0,20,500,"vertical",!1,!0,26,k,k,500,1],["turnoff-vertical",25,0,1,200,"horizontal",!1,!0,27,k,k,500,1],["fadefromright",12,1,1,0,"horizontal",!0,!0,28,k,k,1e3,1],["fadefromleft",15,1,1,0,"horizontal",!0,!0,29,k,k,1e3,1],["fadefromtop",14,1,1,0,"horizontal",!0,!0,30,k,k,1e3,1],["fadefrombottom",13,1,1,0,"horizontal",!0,!0,31,k,k,1e3,1],["fadetoleftfadefromright",12,2,1,0,"horizontal",!0,!0,32,k,k,1e3,1],["fadetorightfadefromleft",15,2,1,0,"horizontal",!0,!0,33,k,k,1e3,1],["fadetobottomfadefromtop",14,2,1,0,"horizontal",!0,!0,34,k,k,1e3,1],["fadetotopfadefrombottom",13,2,1,0,"horizontal",!0,!0,35,k,k,1e3,1],["parallaxtoright",15,3,1,0,"horizontal",!0,!0,36,k,i,1500,1],["parallaxtoleft",12,3,1,0,"horizontal",!0,!0,37,k,i,1500,1],["parallaxtotop",14,3,1,0,"horizontal",!0,!0,38,k,f,1500,1],["parallaxtobottom",13,3,1,0,"horizontal",!0,!0,39,k,f,1500,1],["scaledownfromright",12,4,1,0,"horizontal",!0,!0,40,k,i,1e3,1],["scaledownfromleft",15,4,1,0,"horizontal",!0,!0,41,k,i,1e3,1],["scaledownfromtop",14,4,1,0,"horizontal",!0,!0,42,k,i,1e3,1],["scaledownfrombottom",13,4,1,0,"horizontal",!0,!0,43,k,i,1e3,1],["zoomout",13,5,1,0,"horizontal",!0,!0,44,k,i,1e3,1],["zoomin",13,6,1,0,"horizontal",!0,!0,45,k,i,1e3,1],["slidingoverlayup",27,0,1,0,"horizontal",!0,!0,47,h,g,2e3,1],["slidingoverlaydown",28,0,1,0,"horizontal",!0,!0,48,h,g,2e3,1],["slidingoverlayright",30,0,1,0,"horizontal",!0,!0,49,h,g,2e3,1],["slidingoverlayleft",29,0,1,0,"horizontal",!0,!0,50,h,g,2e3,1],["parallaxcirclesup",31,0,1,0,"horizontal",!0,!0,51,k,f,1500,1],["parallaxcirclesdown",32,0,1,0,"horizontal",!0,!0,52,k,f,1500,1],["parallaxcirclesright",33,0,1,0,"horizontal",!0,!0,53,k,f,1500,1],["parallaxcirclesleft",34,0,1,0,"horizontal",!0,!0,54,k,f,1500,1],["notransition",26,0,1,0,"horizontal",!0,null,46,k,i,1e3,1],["parallaxright",15,3,1,0,"horizontal",!0,!0,55,k,i,1500,1],["parallaxleft",12,3,1,0,"horizontal",!0,!0,56,k,i,1500,1],["parallaxup",14,3,1,0,"horizontal",!0,!0,57,k,f,1500,1],["parallaxdown",13,3,1,0,"horizontal",!0,!0,58,k,f,1500,1],["grayscale",11,5,1,300,"horizontal",!0,null,11,k,k,1e3,1],["grayscalecross",11,6,1,300,"horizontal",!0,null,11,k,k,1e3,1],["brightness",11,7,1,300,"horizontal",!0,null,11,k,k,1e3,1],["brightnesscross",11,8,1,300,"horizontal",!0,null,11,k,k,1e3,1],["blurlight",11,9,1,300,"horizontal",!0,null,11,k,k,1e3,1],["blurlightcross",11,10,1,300,"horizontal",!0,null,11,k,k,1e3,1],["blurstrong",11,9,1,300,"horizontal",!0,null,11,k,k,1e3,1],["blurstrongcross",11,10,1,300,"horizontal",!0,null,11,k,k,1e3,1]]);e.duringslidechange=!0,e.testanims=!1,1==e.testanims&&(e.nexttesttransform=void 0===e.nexttesttransform?34:e.nexttesttransform+1,e.nexttesttransform=e.nexttesttransform>70?0:e.nexttesttransform,b=v[e.nexttesttransform][0],console.log(b+" "+e.nexttesttransform+" "+v[e.nexttesttransform][1]+" "+v[e.nexttesttransform][2])),jQuery.each(["parallaxcircles","slidingoverlay","slide","slideover","slideremove","parallax","parralaxto"],function(a,c){b==c+"horizontal"&&(b=1!=d?c+"left":c+"right"),b==c+"vertical"&&(b=1!=d?c+"up":c+"down")}),"random"==b&&(b=Math.round(Math.random()*v.length-1))>v.length-1&&(b=v.length-1),"random-static"==b&&(b=Math.round(Math.random()*o.length-1),b>o.length-1&&(b=o.length-1),b=o[b]),"random-premium"==b&&(b=Math.round(Math.random()*p.length-1),b>p.length-1&&(b=p.length-1),b=p[b]);var w=[12,13,14,15,16,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45];if(1==e.isJoomla&&void 0!=window.MooTools&&-1!=w.indexOf(b)){var x=Math.round(Math.random()*(p.length-2))+1;x>p.length-1&&(x=p.length-1),0==x&&(x=1),b=p[x]}y(),q>30&&(q=30),q<0&&(q=0);var z=new Object;return z.nexttrans=q,z.STA=v[s],z.specials=r,z},f=function(a,b){return void 0==b||jQuery.isNumeric(a)?a:void 0==a?a:a.split(",")[b]},g=function(a,b,c,g,h,i,j,k){function V(a,b,c,d,e){var f=a.find(".slot"),g=6,h=[2,1.2,.9,.7,.55,.42],j=a.width(),l=a.height();f.wrap('
');for(var n=0;n
l?h[a]*j:h[a]*l,m=i,n=m/2-j/2+0,o=i/2-l/2+0,p=0!=a?"50%":"0",q=l/2-i/2,r=33==c?j/2-m/2:34==c?j-m:j/2-m/2,s={scale:1,transformOrigo:"50% 50%",width:m+"px",height:i+"px",top:q+"px",left:r+"px",borderRadius:p},t={scale:1,top:l/2-i/2,left:j/2-m/2,ease:e},u=o,v=33==c?n:34==c?n+j/2:n,w={width:j,height:l,autoAlpha:1,top:u+"px",position:"absolute",left:v+"px"},x={top:o+"px",left:n+"px",ease:e},y=b,z=0;k.add(punchgs.TweenLite.fromTo(d,y,s,t),z),k.add(punchgs.TweenLite.fromTo(f,y,w,x),z),k.add(punchgs.TweenLite.fromTo(d,.001,{autoAlpha:0},{autoAlpha:1}),0)}})}var l=c[0].opt,m=h.index(),n=g.index(),o=nl.delay?l.delay:t,t+=q[4],l.slots=f(g.data("slotamount"),s),l.slots=void 0==l.slots||"default"==l.slots?q[12]:"random"==l.slots?Math.round(12*Math.random()+4):l.slots,l.slots=l.slots<1?"boxslide"==b?Math.round(6*Math.random()+3):"flyin"==b?Math.round(4*Math.random()+1):l.slots:l.slots,l.slots=(4==a||5==a||6==a)&&l.slots<3?3:l.slots,l.slots=0!=q[3]?Math.min(l.slots,q[3]):l.slots,l.slots=9==a?l.width/l.slots:10==a?l.height/l.slots:l.slots,l.rotate=f(g.data("rotate"),s),l.rotate=void 0==l.rotate||"default"==l.rotate?0:999==l.rotate||"random"==l.rotate?Math.round(360*Math.random()):l.rotate,l.rotate=l.ie||l.ie9?0:l.rotate,11!=a&&(null!=q[7]&&d(j,l,q[7],q[5]),null!=q[6]&&d(i,l,q[6],q[5])),k.add(punchgs.TweenLite.set(i.find(".defaultvid"),{y:0,x:0,top:0,left:0,scale:1}),0),k.add(punchgs.TweenLite.set(j.find(".defaultvid"),{y:0,x:0,top:0,left:0,scale:1}),0),k.add(punchgs.TweenLite.set(i.find(".defaultvid"),{y:"+0%",x:"+0%"}),0),k.add(punchgs.TweenLite.set(j.find(".defaultvid"),{y:"+0%",x:"+0%"}),0),k.add(punchgs.TweenLite.set(i,{autoAlpha:1,y:"+0%",x:"+0%"}),0),k.add(punchgs.TweenLite.set(j,{autoAlpha:1,y:"+0%",x:"+0%"}),0),k.add(punchgs.TweenLite.set(i.parent(),{backgroundColor:"transparent"}),0),k.add(punchgs.TweenLite.set(j.parent(),{backgroundColor:"transparent"}),0);var u=f(g.data("easein"),s),v=f(g.data("easeout"),s);if(u="default"===u?q[9]||punchgs.Power2.easeInOut:u||q[9]||punchgs.Power2.easeInOut,v="default"===v?q[10]||punchgs.Power2.easeInOut:v||q[10]||punchgs.Power2.easeInOut,0==a){var w=Math.ceil(l.height/l.sloth),x=0;i.find(".slotslide").each(function(a){var b=jQuery(this);x+=1,x==w&&(x=0),k.add(punchgs.TweenLite.from(b,t/600,{opacity:0,top:0-l.sloth,left:0-l.slotw,rotation:l.rotate,force3D:"auto",ease:u}),(15*a+30*x)/1500)})}if(1==a){var y,z=0;i.find(".slotslide").each(function(a){var b=jQuery(this),c=Math.random()*t+300,d=500*Math.random()+200;c+d>y&&(y=d+d,z=a),k.add(punchgs.TweenLite.from(b,c/1e3,{autoAlpha:0,force3D:"auto",rotation:l.rotate,ease:u}),d/1e3)})}if(2==a){var A=new punchgs.TimelineLite;j.find(".slotslide").each(function(){var a=jQuery(this);A.add(punchgs.TweenLite.to(a,t/1e3,{left:l.slotw,ease:u,force3D:"auto",rotation:0-l.rotate}),0),k.add(A,0)}),i.find(".slotslide").each(function(){var a=jQuery(this);A.add(punchgs.TweenLite.from(a,t/1e3,{left:0-l.slotw,ease:u,force3D:"auto",rotation:l.rotate}),0),k.add(A,0)})}if(3==a){var A=new punchgs.TimelineLite;j.find(".slotslide").each(function(){var a=jQuery(this);A.add(punchgs.TweenLite.to(a,t/1e3,{top:l.sloth,ease:u,rotation:l.rotate,force3D:"auto",transformPerspective:600}),0),k.add(A,0)}),i.find(".slotslide").each(function(){var a=jQuery(this);A.add(punchgs.TweenLite.from(a,t/1e3,{top:0-l.sloth,rotation:l.rotate,ease:v,force3D:"auto",transformPerspective:600}),0),k.add(A,0)})}if(4==a||5==a){setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100);var B=t/1e3,A=new punchgs.TimelineLite;j.find(".slotslide").each(function(b){var c=jQuery(this),d=b*B/l.slots;5==a&&(d=(l.slots-b-1)*B/l.slots/1.5),A.add(punchgs.TweenLite.to(c,3*B,{transformPerspective:600,force3D:"auto",top:0+l.height,opacity:.5,rotation:l.rotate,ease:u,delay:d}),0),k.add(A,0)}),i.find(".slotslide").each(function(b){var c=jQuery(this),d=b*B/l.slots;5==a&&(d=(l.slots-b-1)*B/l.slots/1.5),A.add(punchgs.TweenLite.from(c,3*B,{top:0-l.height,opacity:.5,rotation:l.rotate,force3D:"auto",ease:punchgs.eo,delay:d}),0),k.add(A,0)})}if(6==a){l.slots<2&&(l.slots=2),l.slots%2&&(l.slots=l.slots+1);var A=new punchgs.TimelineLite;setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100),j.find(".slotslide").each(function(a){var b=jQuery(this);if(a+1l.delay&&(t=l.delay);var A=new punchgs.TimelineLite;setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100),j.find(".slotslide").each(function(){var a=jQuery(this).find("div");A.add(punchgs.TweenLite.to(a,t/1e3,{left:0-l.slotw/2+"px",top:0-l.height/2+"px",width:2*l.slotw+"px",height:2*l.height+"px",opacity:0,rotation:l.rotate,force3D:"auto",ease:u}),0),k.add(A,0)}),i.find(".slotslide").each(function(a){var b=jQuery(this).find("div");A.add(punchgs.TweenLite.fromTo(b,t/1e3,{left:0,top:0,opacity:0,transformPerspective:600},{left:0-a*l.slotw+"px",ease:v,force3D:"auto",top:"0px",width:l.width,height:l.height,opacity:1,rotation:0,delay:.1}),0),k.add(A,0)})}if(8==a){t*=3,t>l.delay&&(t=l.delay);var A=new punchgs.TimelineLite;j.find(".slotslide").each(function(){var a=jQuery(this).find("div");A.add(punchgs.TweenLite.to(a,t/1e3,{left:0-l.width/2+"px",top:0-l.sloth/2+"px",width:2*l.width+"px",height:2*l.sloth+"px",force3D:"auto",ease:u,opacity:0,rotation:l.rotate}),0),k.add(A,0)}),i.find(".slotslide").each(function(a){var b=jQuery(this).find("div");A.add(punchgs.TweenLite.fromTo(b,t/1e3,{left:0,top:0,opacity:0,force3D:"auto"},{left:"0px",top:0-a*l.sloth+"px",width:i.find(".defaultimg").data("neww")+"px",height:i.find(".defaultimg").data("newh")+"px",opacity:1,ease:v,rotation:0}),0),k.add(A,0)})}if(9==a||10==a){var D=0;i.find(".slotslide").each(function(a){var b=jQuery(this);D++,k.add(punchgs.TweenLite.fromTo(b,t/2e3,{autoAlpha:0,force3D:"auto",transformPerspective:600},{autoAlpha:1,ease:u,delay:a*l.slots/100/2e3}),0)})}if(27==a||28==a||29==a||30==a){var E=i.find(".slot"),F=27==a||28==a?1:2,G=27==a||29==a?"-100%":"+100%",H=27==a||29==a?"+100%":"-100%",I=27==a||29==a?"-80%":"80%",J=27==a||29==a?"+80%":"-80%",K=27==a||29==a?"+10%":"-10%",L={overwrite:"all"},M={autoAlpha:0,zIndex:1,force3D:"auto",ease:u},N={position:"inherit",autoAlpha:0,overwrite:"all",zIndex:1},O={autoAlpha:1,force3D:"auto",ease:v},P={overwrite:"all",zIndex:2,opacity:1,autoAlpha:1},Q={autoAlpha:1,force3D:"auto",overwrite:"all",ease:u},R={overwrite:"all",zIndex:2,autoAlpha:1},S={autoAlpha:1,force3D:"auto",ease:u},T=1==F?"y":"x";L[T]="0px",M[T]=G,N[T]=K,O[T]="0%",P[T]=H,Q[T]=G,R[T]=I,S[T]=J,E.append(' '),k.add(punchgs.TweenLite.fromTo(j,t/1e3,L,M),0),k.add(punchgs.TweenLite.fromTo(i.find(".defaultimg"),t/2e3,N,O),t/2e3),k.add(punchgs.TweenLite.fromTo(E,t/1e3,P,Q),0),k.add(punchgs.TweenLite.fromTo(E.find(".slotslide div"),t/1e3,R,S),0)}if(31==a||32==a||33==a||34==a){t=6e3,u=punchgs.Power3.easeInOut;var U=t/1e3;mas=U-U/5,_nt=a,fy=31==_nt?"+100%":32==_nt?"-100%":"0%",fx=33==_nt?"+100%":34==_nt?"-100%":"0%",ty=31==_nt?"-100%":32==_nt?"+100%":"0%",tx=33==_nt?"-100%":34==_nt?"+100%":"0%",k.add(punchgs.TweenLite.fromTo(j,U-.2*U,{y:0,x:0},{y:ty,x:tx,ease:v}),.2*U),k.add(punchgs.TweenLite.fromTo(i,U,{y:fy,x:fx},{y:"0%",x:"0%",ease:u}),0),i.find(".slot").remove(),i.find(".defaultimg").clone().appendTo(i).addClass("slot"),V(i,U,_nt,"in",u)}if(11==a){r>12&&(r=0);var D=0,W=2==r?"#000000":3==r?"#ffffff":"transparent";switch(r){case 0:k.add(punchgs.TweenLite.fromTo(i,t/1e3,{autoAlpha:0},{autoAlpha:1,force3D:"auto",ease:u}),0);break;case 1:k.add(punchgs.TweenLite.fromTo(i,t/1e3,{autoAlpha:0},{autoAlpha:1,force3D:"auto",ease:u}),0),k.add(punchgs.TweenLite.fromTo(j,t/1e3,{autoAlpha:1},{autoAlpha:0,force3D:"auto",ease:u}),0);break;case 2:case 3:case 4:k.add(punchgs.TweenLite.set(j.parent(),{backgroundColor:W,force3D:"auto"}),0),k.add(punchgs.TweenLite.set(i.parent(),{backgroundColor:"transparent",force3D:"auto"}),0),k.add(punchgs.TweenLite.to(j,t/2e3,{autoAlpha:0,force3D:"auto",ease:u}),0),k.add(punchgs.TweenLite.fromTo(i,t/2e3,{autoAlpha:0},{autoAlpha:1,force3D:"auto",ease:u}),t/2e3);break;case 5:case 6:case 7:case 8:case 9:case 10:case 11:case 12:var X=jQuery.inArray(r,[9,10])>=0?5:jQuery.inArray(r,[11,12])>=0?10:0,Y=jQuery.inArray(r,[5,6,7,8])>=0?100:0,Z=jQuery.inArray(r,[7,8])>=0?300:0,$="blur("+X+"px) grayscale("+Y+"%) brightness("+Z+"%)",_="blur(0px) grayscale(0%) brightness(100%)";k.add(punchgs.TweenLite.fromTo(i,t/1e3,{autoAlpha:0,filter:$,"-webkit-filter":$},{autoAlpha:1,filter:_,"-webkit-filter":_,force3D:"auto",ease:u}),0),jQuery.inArray(r,[6,8,10])>=0&&k.add(punchgs.TweenLite.fromTo(j,t/1e3,{autoAlpha:1,filter:_,"-webkit-filter":_},{autoAlpha:0,force3D:"auto",ease:u,filter:$,"-webkit-filter":$}),0)}k.add(punchgs.TweenLite.set(i.find(".defaultimg"),{autoAlpha:1}),0),k.add(punchgs.TweenLite.set(j.find("defaultimg"),{autoAlpha:1}),0)}if(26==a){var D=0;t=0,k.add(punchgs.TweenLite.fromTo(i,t/1e3,{autoAlpha:0},{autoAlpha:1,force3D:"auto",ease:u}),0),k.add(punchgs.TweenLite.to(j,t/1e3,{autoAlpha:0,force3D:"auto",ease:u}),0),k.add(punchgs.TweenLite.set(i.find(".defaultimg"),{autoAlpha:1}),0),k.add(punchgs.TweenLite.set(j.find("defaultimg"),{autoAlpha:1}),0)}if(12==a||13==a||14==a||15==a){t=t,t>l.delay&&(t=l.delay),setTimeout(function(){punchgs.TweenLite.set(j.find(".defaultimg"),{autoAlpha:0})},100);var aa=l.width,ba=l.height,ca=i.find(".slotslide, .defaultvid"),da=0,ea=0,fa=1,ga=1,ha=1,ia=t/1e3,ja=ia;"fullwidth"!=l.sliderLayout&&"fullscreen"!=l.sliderLayout||(aa=ca.width(),ba=ca.height()),12==a?da=aa:15==a?da=0-aa:13==a?ea=ba:14==a&&(ea=0-ba),1==r&&(fa=0),2==r&&(fa=0),3==r&&(ia=t/1300),4!=r&&5!=r||(ga=.6),6==r&&(ga=1.4),5!=r&&6!=r||(ha=1.4,fa=0,aa=0,ba=0,da=0,ea=0),6==r&&(ha=.6);7==r&&(aa=0,ba=0);var la=i.find(".slotslide"),ma=j.find(".slotslide, .defaultvid");if(k.add(punchgs.TweenLite.set(h,{zIndex:15}),0),k.add(punchgs.TweenLite.set(g,{zIndex:20}),0),8==r?(k.add(punchgs.TweenLite.set(h,{zIndex:20}),0),k.add(punchgs.TweenLite.set(g,{zIndex:15}),0),k.add(punchgs.TweenLite.set(la,{left:0,top:0,scale:1,opacity:1,rotation:0,ease:u,force3D:"auto"}),0)):k.add(punchgs.TweenLite.from(la,ia,{left:da,top:ea,scale:ha,opacity:fa,rotation:l.rotate,ease:u,force3D:"auto"}),0),4!=r&&5!=r||(aa=0,ba=0),1!=r)switch(a){case 12:k.add(punchgs.TweenLite.to(ma,ja,{left:0-aa+"px",force3D:"auto",scale:ga,opacity:fa,rotation:l.rotate,ease:v}),0);break;case 15:k.add(punchgs.TweenLite.to(ma,ja,{left:aa+"px",force3D:"auto",scale:ga,opacity:fa,rotation:l.rotate,ease:v}),0);break;case 13:k.add(punchgs.TweenLite.to(ma,ja,{top:0-ba+"px",force3D:"auto",scale:ga,opacity:fa,rotation:l.rotate,ease:v}),0);break;case 14:k.add(punchgs.TweenLite.to(ma,ja,{top:ba+"px",force3D:"auto",scale:ga,opacity:fa,rotation:l.rotate,ease:v}),0)}}if(16==a){var A=new punchgs.TimelineLite;k.add(punchgs.TweenLite.set(h,{position:"absolute","z-index":20}),0),k.add(punchgs.TweenLite.set(g,{position:"absolute","z-index":15}),0),h.wrapInner('
'),h.find(".tp-half-one").clone(!0).appendTo(h).addClass("tp-half-two"),h.find(".tp-half-two").removeClass("tp-half-one");var aa=l.width,ba=l.height;"on"==l.autoHeight&&(ba=c.height()),h.find(".tp-half-one .defaultimg").wrap('
'),h.find(".tp-half-two .defaultimg").wrap('
'),h.find(".tp-half-two .defaultimg").css({position:"absolute",top:"-50%"}),h.find(".tp-half-two .tp-caption").wrapAll('
'),k.add(punchgs.TweenLite.set(h.find(".tp-half-two"),{width:aa,height:ba,overflow:"hidden",zIndex:15,position:"absolute",top:ba/2,left:"0px",transformPerspective:600,transformOrigin:"center bottom"}),0),k.add(punchgs.TweenLite.set(h.find(".tp-half-one"),{width:aa,height:ba/2,overflow:"visible",zIndex:10,position:"absolute",top:"0px",left:"0px",transformPerspective:600,transformOrigin:"center top"}),0);var oa=(h.find(".defaultimg"),Math.round(20*Math.random()-10)),pa=Math.round(20*Math.random()-10),qa=Math.round(20*Math.random()-10),ra=.4*Math.random()-.2,sa=.4*Math.random()-.2,ta=1*Math.random()+1,ua=1*Math.random()+1,va=.3*Math.random()+.3;k.add(punchgs.TweenLite.set(h.find(".tp-half-one"),{overflow:"hidden"}),0),k.add(punchgs.TweenLite.fromTo(h.find(".tp-half-one"),t/800,{width:aa,height:ba/2,position:"absolute",top:"0px",left:"0px",force3D:"auto",transformOrigin:"center top"},{scale:ta,rotation:oa,y:0-ba-ba/4,autoAlpha:0,ease:u}),0),k.add(punchgs.TweenLite.fromTo(h.find(".tp-half-two"),t/800,{width:aa,height:ba,overflow:"hidden",position:"absolute",top:ba/2,left:"0px",force3D:"auto",transformOrigin:"center bottom"},{scale:ua,rotation:pa,y:ba+ba/4,ease:u,autoAlpha:0,onComplete:function(){punchgs.TweenLite.set(h,{position:"absolute","z-index":15}),punchgs.TweenLite.set(g,{position:"absolute","z-index":20}),h.find(".tp-half-one").length>0&&(h.find(".tp-half-one .defaultimg").unwrap(),h.find(".tp-half-one .slotholder").unwrap()),h.find(".tp-half-two").remove()}}),0),A.add(punchgs.TweenLite.set(i.find(".defaultimg"),{autoAlpha:1}),0),null!=h.html()&&k.add(punchgs.TweenLite.fromTo(g,(t-200)/1e3,{scale:va,x:l.width/4*ra,y:ba/4*sa,rotation:qa,force3D:"auto",transformOrigin:"center center",ease:v},{autoAlpha:1,scale:1,x:0,y:0,rotation:0}),0),k.add(A,0)}if(17==a&&i.find(".slotslide").each(function(a){var b=jQuery(this);k.add(punchgs.TweenLite.fromTo(b,t/800,{opacity:0,rotationY:0,scale:.9,rotationX:-110,force3D:"auto",transformPerspective:600,transformOrigin:"center center"},{opacity:1,top:0,left:0,scale:1,rotation:0,rotationX:0,force3D:"auto",rotationY:0,ease:u,delay:.06*a}),0)}),18==a&&i.find(".slotslide").each(function(a){var b=jQuery(this);k.add(punchgs.TweenLite.fromTo(b,t/500,{autoAlpha:0,rotationY:110,scale:.9,rotationX:10,force3D:"auto",transformPerspective:600,transformOrigin:"center center"},{autoAlpha:1,top:0,left:0,scale:1,rotation:0,rotationX:0,force3D:"auto",rotationY:0,ease:u,delay:.06*a}),0)}),19==a||22==a){var A=new punchgs.TimelineLite;k.add(punchgs.TweenLite.set(h,{zIndex:20}),0),k.add(punchgs.TweenLite.set(g,{zIndex:20}),0),setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100);var wa=90,fa=1,xa="center center ";1==o&&(wa=-90),19==a?(xa=xa+"-"+l.height/2,fa=0):xa+=l.height/2,punchgs.TweenLite.set(c,{transformStyle:"flat",backfaceVisibility:"hidden",transformPerspective:600}),i.find(".slotslide").each(function(a){var b=jQuery(this);A.add(punchgs.TweenLite.fromTo(b,t/1e3,{transformStyle:"flat",backfaceVisibility:"hidden",left:0,rotationY:l.rotate,z:10,top:0,scale:1,force3D:"auto",transformPerspective:600,transformOrigin:xa,rotationX:wa},{left:0,rotationY:0,top:0,z:0,scale:1,force3D:"auto",rotationX:0,delay:50*a/1e3,ease:u}),0),A.add(punchgs.TweenLite.to(b,.1,{autoAlpha:1,delay:50*a/1e3}),0),k.add(A)}),j.find(".slotslide").each(function(a){var b=jQuery(this),c=-90;1==o&&(c=90),A.add(punchgs.TweenLite.fromTo(b,t/1e3,{transformStyle:"flat",backfaceVisibility:"hidden",autoAlpha:1,rotationY:0,top:0,z:0,scale:1,force3D:"auto",transformPerspective:600,transformOrigin:xa,rotationX:0},{autoAlpha:1,rotationY:l.rotate,top:0,z:10,scale:1,rotationX:c,delay:50*a/1e3,force3D:"auto",ease:v}),0),k.add(A)}),k.add(punchgs.TweenLite.set(h,{zIndex:18}),0)}if(20==a){if(setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100),1==o)var ya=-l.width,wa=80,xa="20% 70% -"+l.height/2;else var ya=l.width,wa=-80,xa="80% 70% -"+l.height/2;i.find(".slotslide").each(function(a){var b=jQuery(this),c=50*a/1e3;k.add(punchgs.TweenLite.fromTo(b,t/1e3,{left:ya,rotationX:40,z:-600,opacity:fa,top:0,scale:1,force3D:"auto",transformPerspective:600,transformOrigin:xa,transformStyle:"flat",rotationY:wa},{left:0,rotationX:0,opacity:1,top:0,z:0,scale:1,rotationY:0,delay:c,ease:u}),0)}),j.find(".slotslide").each(function(a){var b=jQuery(this),c=50*a/1e3;if(c=a>0?c+t/9e3:0,1!=o)var d=-l.width/2,e=30,f="20% 70% -"+l.height/2;else var d=l.width/2,e=-30,f="80% 70% -"+l.height/2;v=punchgs.Power2.easeInOut,k.add(punchgs.TweenLite.fromTo(b,t/1e3,{opacity:1,rotationX:0,top:0,z:0,scale:1,left:0,force3D:"auto",transformPerspective:600,transformOrigin:f,transformStyle:"flat",rotationY:0},{opacity:1,rotationX:20,top:0,z:-600,left:d,force3D:"auto",rotationY:e,delay:c,ease:v}),0)})}if(21==a||25==a){setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100);var wa=90,ya=-l.width,za=-wa;if(1==o)if(25==a){var xa="center top 0";wa=l.rotate}else{var xa="left center 0";za=l.rotate}else if(ya=l.width,wa=-90,25==a){var xa="center bottom 0";za=-wa,wa=l.rotate}else{var xa="right center 0";za=l.rotate}i.find(".slotslide").each(function(a){var b=jQuery(this),c=t/1.5/3;k.add(punchgs.TweenLite.fromTo(b,2*c/1e3,{left:0,transformStyle:"flat",rotationX:za,z:0,autoAlpha:0,top:0,scale:1,force3D:"auto",transformPerspective:1200,transformOrigin:xa,rotationY:wa},{left:0,rotationX:0,top:0,z:0,autoAlpha:1,scale:1,rotationY:0,force3D:"auto",delay:c/1e3,ease:u}),0)}),1!=o?(ya=-l.width,wa=90,25==a?(xa="center top 0",za=-wa,wa=l.rotate):(xa="left center 0",za=l.rotate)):(ya=l.width,wa=-90,25==a?(xa="center bottom 0",za=-wa,wa=l.rotate):(xa="right center 0",za=l.rotate)),j.find(".slotslide").each(function(a){var b=jQuery(this);k.add(punchgs.TweenLite.fromTo(b,t/1e3,{left:0,transformStyle:"flat",rotationX:0,z:0,autoAlpha:1,top:0,scale:1,force3D:"auto",transformPerspective:1200,transformOrigin:xa,rotationY:0},{left:0,rotationX:za,top:0,z:0,autoAlpha:1,force3D:"auto",scale:1,rotationY:wa,ease:v}),0)})}if(23==a||24==a){setTimeout(function(){j.find(".defaultimg").css({opacity:0})},100);var wa=-90,fa=1,Aa=0;if(1==o&&(wa=90),23==a){var xa="center center -"+l.width/2;fa=0}else var xa="center center "+l.width/2;punchgs.TweenLite.set(c,{transformStyle:"preserve-3d",backfaceVisibility:"hidden",perspective:2500}),i.find(".slotslide").each(function(a){var b=jQuery(this);k.add(punchgs.TweenLite.fromTo(b,t/1e3,{left:Aa,rotationX:l.rotate,force3D:"auto",opacity:fa,top:0,scale:1,transformPerspective:1200,transformOrigin:xa,rotationY:wa},{left:0,rotationX:0,autoAlpha:1,top:0,z:0,scale:1,rotationY:0,delay:50*a/500,ease:u}),0)}),wa=90,1==o&&(wa=-90),j.find(".slotslide").each(function(b){var c=jQuery(this);k.add(punchgs.TweenLite.fromTo(c,t/1e3,{left:0,rotationX:0,top:0,z:0,scale:1,force3D:"auto",transformStyle:"flat",transformPerspective:1200,transformOrigin:xa,rotationY:0},{left:Aa,rotationX:l.rotate,top:0,scale:1,rotationY:wa,delay:50*b/500,ease:v}),0),23==a&&k.add(punchgs.TweenLite.fromTo(c,t/2e3,{autoAlpha:1},{autoAlpha:0,delay:50*b/500+t/3e3,ease:v}),0)})}return k}}(jQuery);
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/js/rev_slider/extensions/revolution.extension.video.min.js b/Web Development/Basic/Tourist Places/js/rev_slider/extensions/revolution.extension.video.min.js
new file mode 100644
index 000000000..78b340fa3
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/rev_slider/extensions/revolution.extension.video.min.js
@@ -0,0 +1,7 @@
+/********************************************
+ * REVOLUTION 5.4.6 EXTENSION - VIDEO FUNCTIONS
+ * @version: 2.1.7 (15.05.2017)
+ * @requires jquery.themepunch.revolution.js
+ * @author ThemePunch
+*********************************************/
+!function(e){"use strict";function t(e){return void 0==e?-1:jQuery.isNumeric(e)?e:e.split(":").length>1?60*parseInt(e.split(":")[0],0)+parseInt(e.split(":")[1],0):e}var a=jQuery.fn.revolution,i=a.is_mobile(),o=(a.is_android(),{alias:"Video Min JS",name:"revolution.extensions.video.min.js",min_core:"5.4.6",version:"2.1.7"});jQuery.extend(!0,a,{preLoadAudio:function(e,t){if("stop"===a.compare_version(o).check)return!1;e.find(".tp-audiolayer").each(function(){var e=jQuery(this),i={};0===e.find("audio").length&&(i.src=void 0!=e.data("videomp4")?e.data("videomp4"):"",i.pre=e.data("videopreload")||"",void 0===e.attr("id")&&e.attr("audio-layer-"+Math.round(199999*Math.random())),i.id=e.attr("id"),i.status="prepared",i.start=jQuery.now(),i.waittime=1e3*e.data("videopreloadwait")||5e3,"auto"!=i.pre&&"canplaythrough"!=i.pre&&"canplay"!=i.pre&&"progress"!=i.pre||(void 0===t.audioqueue&&(t.audioqueue=[]),t.audioqueue.push(i),a.manageVideoLayer(e,t)))})},preLoadAudioDone:function(e,t,a){t.audioqueue&&t.audioqueue.length>0&&jQuery.each(t.audioqueue,function(t,i){e.data("videomp4")!==i.src||i.pre!==a&&"auto"!==i.pre||(i.status="loaded")})},resetVideo:function(e,o,d){var n=e.data();switch(n.videotype){case"youtube":n.player;try{if("on"==n.forcerewind){p=t(e.data("videostartat")),1===n.bgvideo||e.find(".tp-videoposter").length;void 0!=n.player&&(p=-1==p?0:p,n.player.seekTo(p),n.player.pauseVideo())}}catch(e){}0==e.find(".tp-videoposter").length&&1!==n.bgvideo&&!0!==d&&punchgs.TweenLite.to(e.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut});break;case"vimeo":var r=$f(e.find("iframe").attr("id"));try{if("on"==n.forcerewind){p=t(n.videostartat),1===n.bgvideo||e.find(".tp-videoposter").length;p=-1==p?0:p,r.api("seekTo",p),r.api("pause")}}catch(e){}0==e.find(".tp-videoposter").length&&1!==n.bgvideo&&!0!==d&&punchgs.TweenLite.to(e.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut});break;case"html5":if(i&&1==n.disablevideoonmobile)return!1;var s="html5"==n.audio?"audio":"video",l=e.find(s),u=l[0];if(punchgs.TweenLite.to(l,.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut}),"on"==n.forcerewind&&!e.hasClass("videoisplaying"))try{var p=t(n.videostartat);u.currentTime=-1==p?0:p}catch(e){}("mute"==n.volume||a.lastToggleState(e.videomutetoggledby)||!0===o.globalmute)&&(u.muted=!0)}},isVideoMuted:function(e,t){var a=!1,i=e.data();switch(i.videotype){case"youtube":try{a=i.player.isMuted()}catch(e){}break;case"vimeo":try{$f(e.find("iframe").attr("id"));"mute"==i.volume&&(a=!0)}catch(e){}break;case"html5":var o="html5"==i.audio?"audio":"video";e.find(o)[0].muted&&(a=!0)}return a},muteVideo:function(e,t){var a=e.data();switch(a.videotype){case"youtube":try{a.player.mute()}catch(e){}break;case"vimeo":try{var i=$f(e.find("iframe").attr("id"));e.data("volume","mute"),i.api("setVolume",0)}catch(e){}break;case"html5":var o="html5"==a.audio?"audio":"video";e.find(o)[0].muted=!0}},unMuteVideo:function(e,t){if(!0!==t.globalmute){var a=e.data();switch(a.videotype){case"youtube":try{a.player.unMute()}catch(e){}break;case"vimeo":try{var i=$f(e.find("iframe").attr("id"));e.data("volume","1"),i.api("setVolume",1)}catch(e){}break;case"html5":var o="html5"==a.audio?"audio":"video";e.find(o)[0].muted=!1}}},stopVideo:function(e,t){var a=e.data();switch(t.leaveViewPortBasedStop||(t.lastplayedvideos=[]),t.leaveViewPortBasedStop=!1,a.videotype){case"youtube":try{var i=a.player;if(2===i.getPlayerState()||5===i.getPlayerState())return;i.pauseVideo(),a.youtubepausecalled=!0,setTimeout(function(){a.youtubepausecalled=!1},80)}catch(e){console.log("Issue at YouTube Video Pause:"),console.log(e)}break;case"vimeo":try{$f(e.find("iframe").attr("id")).api("pause"),a.vimeopausecalled=!0,setTimeout(function(){a.vimeopausecalled=!1},80)}catch(e){console.log("Issue at Vimeo Video Pause:"),console.log(e)}break;case"html5":var o="html5"==a.audio?"audio":"video",d=e.find(o),n=d[0];void 0!=d&&void 0!=n&&n.pause()}},playVideo:function(e,i){clearTimeout(e.data("videoplaywait"));var o=e.data();switch(o.videotype){case"youtube":if(0==e.find("iframe").length)e.append(e.data("videomarkup")),r(e,i,!0);else if(void 0!=o.player.playVideo){var n=t(e.data("videostartat")),s=o.player.getCurrentTime();1==e.data("nextslideatend-triggered")&&(s=-1,e.data("nextslideatend-triggered",0)),-1!=n&&n>s&&o.player.seekTo(n),!0!==o.youtubepausecalled&&o.player.playVideo()}else e.data("videoplaywait",setTimeout(function(){!0!==o.youtubepausecalled&&a.playVideo(e,i)},50));break;case"vimeo":if(0==e.find("iframe").length)e.append(e.data("videomarkup")),r(e,i,!0);else if(e.hasClass("rs-apiready")){var l=e.find("iframe").attr("id"),u=$f(l);void 0==u.api("play")?e.data("videoplaywait",setTimeout(function(){!0!==o.vimeopausecalled&&a.playVideo(e,i)},50)):setTimeout(function(){u.api("play");var a=t(e.data("videostartat")),i=e.data("currenttime");1==e.data("nextslideatend-triggered")&&(i=-1,e.data("nextslideatend-triggered",0)),-1!=a&&a>i&&u.api("seekTo",a)},510)}else e.data("videoplaywait",setTimeout(function(){!0!==o.vimeopausecalled&&a.playVideo(e,i)},50));break;case"html5":var p="html5"==o.audio?"audio":"video",v=e.find(p),c=v[0];if(1!=v.parent().data("metaloaded"))d(c,"loadedmetadata",function(e){a.resetVideo(e,i),c.play();var o=t(e.data("videostartat")),d=c.currentTime;1==e.data("nextslideatend-triggered")&&(d=-1,e.data("nextslideatend-triggered",0)),-1!=o&&o>d&&(c.currentTime=o)}(e));else{c.play();var n=t(e.data("videostartat")),s=c.currentTime;1==e.data("nextslideatend-triggered")&&(s=-1,e.data("nextslideatend-triggered",0)),-1!=n&&n>s&&(c.currentTime=n)}}},isVideoPlaying:function(e,t){var a=!1;return void 0!=t.playingvideos&&jQuery.each(t.playingvideos,function(t,i){e.attr("id")==i.attr("id")&&(a=!0)}),a},removeMediaFromList:function(e,t){v(e,t)},prepareCoveredVideo:function(e,t,i){var o=i.find("iframe, video"),d=e.split(":")[0],n=e.split(":")[1],r=i.closest(".tp-revslider-slidesli"),s=r.width()/r.height(),l=d/n,u=s/l*100,p=l/s*100;s>l?punchgs.TweenLite.to(o,.001,{height:u+"%",width:"100%",top:-(u-100)/2+"%",left:"0px",position:"absolute"}):punchgs.TweenLite.to(o,.001,{width:p+"%",height:"100%",left:-(p-100)/2+"%",top:"0px",position:"absolute"}),o.hasClass("resizelistener")||(o.addClass("resizelistener"),jQuery(window).resize(function(){clearTimeout(o.data("resizelistener")),o.data("resizelistener",setTimeout(function(){a.prepareCoveredVideo(e,t,i)},30))}))},checkVideoApis:function(e,t,a){location.protocol;if((void 0!=e.data("ytid")||e.find("iframe").length>0&&e.find("iframe").attr("src").toLowerCase().indexOf("youtube")>0)&&(t.youtubeapineeded=!0),(void 0!=e.data("ytid")||e.find("iframe").length>0&&e.find("iframe").attr("src").toLowerCase().indexOf("youtube")>0)&&0==a.addedyt){t.youtubestarttime=jQuery.now(),a.addedyt=1;var i=document.createElement("script");i.src="https://www.youtube.com/iframe_api";var o=document.getElementsByTagName("script")[0],d=!0;jQuery("head").find("*").each(function(){"https://www.youtube.com/iframe_api"==jQuery(this).attr("src")&&(d=!1)}),d&&o.parentNode.insertBefore(i,o)}if((void 0!=e.data("vimeoid")||e.find("iframe").length>0&&e.find("iframe").attr("src").toLowerCase().indexOf("vimeo")>0)&&(t.vimeoapineeded=!0),(void 0!=e.data("vimeoid")||e.find("iframe").length>0&&e.find("iframe").attr("src").toLowerCase().indexOf("vimeo")>0)&&0==a.addedvim){t.vimeostarttime=jQuery.now(),a.addedvim=1;var n=document.createElement("script"),o=document.getElementsByTagName("script")[0],d=!0;n.src="https://secure-a.vimeocdn.com/js/froogaloop2.min.js",jQuery("head").find("*").each(function(){"https://secure-a.vimeocdn.com/js/froogaloop2.min.js"==jQuery(this).attr("src")&&(d=!1)}),d&&o.parentNode.insertBefore(n,o)}return a},manageVideoLayer:function(e,n,s,l){if("stop"===a.compare_version(o).check)return!1;var p=e.data(),v=p.videoattributes,c=p.ytid,g=p.vimeoid,m="auto"===p.videopreload||"canplay"===p.videopreload||"canplaythrough"===p.videopreload||"progress"===p.videopreload?"auto":p.videopreload,f=p.videomp4,y=p.videowebm,h=p.videoogv,b=p.allowfullscreenvideo,w=p.videocontrols,T="http",k="loop"==p.videoloop?"loop":"loopandnoslidestop"==p.videoloop?"loop":"",x=void 0!=f||void 0!=y?"html5":void 0!=c&&String(c).length>1?"youtube":void 0!=g&&String(g).length>1?"vimeo":"none",L="html5"==p.audio?"audio":"video",V="html5"==x&&0==e.find(L).length?"html5":"youtube"==x&&0==e.find("iframe").length?"youtube":"vimeo"==x&&0==e.find("iframe").length?"vimeo":"none";switch(k=!0===p.nextslideatend?"":k,p.videotype=x,V){case"html5":"controls"!=w&&(w="");L="video";"html5"==p.audio&&(L="audio",e.addClass("tp-audio-html5"));var P="";a.is_mobile()&&("on"===p.autoplay||"true"===p.autoplay||!0===p.autoplay?P="muted playsinline autoplay":1!=p.videoinline&&"true"!==p.videoinline&&1!==p.videoinline||(P+=" playsinline"));var I="<"+L+" "+P+' style="object-fit:cover;background-size:cover;visible:hidden;width:100%; height:100%" class="" '+k+' preload="'+m+'">';"auto"==m&&(n.mediapreload=!0),void 0!=y&&"firefox"==a.get_browser().toLowerCase()&&(I=I+' '),void 0!=f&&(I=I+' '),void 0!=h&&(I=I+' '),I=I+""+L+">";var C="";"true"!==b&&!0!==b||(C='Full-Screen
'),"controls"==w&&(I=I+'"),e.data("videomarkup",I),e.append(I),(i&&1==e.data("disablevideoonmobile")||a.isIE(8))&&e.find(L).remove(),e.find(L).each(function(t){var i=this,o=jQuery(this);o.parent().hasClass("html5vid")||o.wrap('
'),1!=o.parent().data("metaloaded")&&d(i,"loadedmetadata",function(e){u(e,n),a.resetVideo(e,n)}(e))});break;case"youtube":T="https","none"==w&&-1==(v=v.replace("controls=1","controls=0")).toLowerCase().indexOf("controls")&&(v+="&controls=0"),!0!==p.videoinline&&"true"!==p.videoinline&&1!==p.videoinline||(v+="&playsinline=1");var j=t(e.data("videostartat")),_=t(e.data("videoendat"));-1!=j&&(v=v+"&start="+j),-1!=_&&(v=v+"&end="+_);var A=v.split("origin="+T+"://"),S="";A.length>1?(S=A[0]+"origin="+T+"://",self.location.href.match(/www/gi)&&!A[1].match(/www/gi)&&(S+="www."),S+=A[1]):S=v;var O="true"===b||!0===b?"allowfullscreen":"";e.data("videomarkup",'');break;case"vimeo":T="https",e.data("videomarkup",'')}var Q=i&&"on"==e.data("noposteronmobile");if(void 0!=p.videoposter&&p.videoposter.length>2&&!Q)0==e.find(".tp-videoposter").length&&e.append('
'),0==e.find("iframe").length&&e.find(".tp-videoposter").click(function(){if(a.playVideo(e,n),i){if(1==e.data("disablevideoonmobile"))return!1;punchgs.TweenLite.to(e.find(".tp-videoposter"),.3,{autoAlpha:0,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut})}});else{if(i&&1==e.data("disablevideoonmobile"))return!1;0!=e.find("iframe").length||"youtube"!=x&&"vimeo"!=x||(e.append(e.data("videomarkup")),r(e,n,!1))}"none"!=e.data("dottedoverlay")&&void 0!=e.data("dottedoverlay")&&1!=e.find(".tp-dottedoverlay").length&&e.append('
'),e.addClass("HasListener"),1==e.data("bgvideo")&&punchgs.TweenLite.set(e.find("video, iframe"),{autoAlpha:0})}});var d=function(e,t,a){e.addEventListener?e.addEventListener(t,a,{capture:!1,passive:!0}):e.attachEvent(t,a,{capture:!1,passive:!0})},n=function(e,t,a){var i={};return i.video=e,i.videotype=t,i.settings=a,i},r=function(e,o,d){var r=e.data(),u=e.find("iframe"),c="iframe"+Math.round(1e5*Math.random()+1),g=r.videoloop,m="loopandnoslidestop"!=g;if(g="loop"==g||"loopandnoslidestop"==g,1==e.data("forcecover")&&(e.removeClass("fullscreenvideo").addClass("coverscreenvideo"),void 0!=(f=e.data("aspectratio"))&&f.split(":").length>1&&(console.log("i"),a.prepareCoveredVideo(f,o,e))),1==e.data("bgvideo")){var f=e.data("aspectratio");void 0!=f&&f.split(":").length>1&&(console.log("ak"),a.prepareCoveredVideo(f,o,e))}if(u.attr("id",c),d&&e.data("startvideonow",!0),1!==e.data("videolistenerexist"))switch(r.videotype){case"youtube":k=new YT.Player(c,{events:{onStateChange:function(i){var d=e.closest(".tp-simpleresponsive"),u=(r.videorate,e.data("videostart"),l());if(i.data==YT.PlayerState.PLAYING)punchgs.TweenLite.to(e.find(".tp-videoposter"),.3,{autoAlpha:0,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut}),"mute"==e.data("volume")||a.lastToggleState(e.data("videomutetoggledby"))||!0===o.globalmute?k.mute():(k.unMute(),k.setVolume(parseInt(e.data("volume"),0)||75)),o.videoplaying=!0,p(e,o),m?o.c.trigger("stoptimer"):o.videoplaying=!1,o.c.trigger("revolution.slide.onvideoplay",n(k,"youtube",e.data())),a.toggleState(r.videotoggledby);else{if(0==i.data&&g){var c=t(e.data("videostartat"));-1!=c&&k.seekTo(c),k.playVideo(),a.toggleState(r.videotoggledby)}u||0!=i.data&&2!=i.data||!("on"==e.data("showcoveronpause")&&e.find(".tp-videoposter").length>0||1===e.data("bgvideo")&&e.find(".rs-fullvideo-cover").length>0)||(1===e.data("bgvideo")?punchgs.TweenLite.to(e.find(".rs-fullvideo-cover"),.1,{autoAlpha:1,force3D:"auto",ease:punchgs.Power3.easeInOut}):punchgs.TweenLite.to(e.find(".tp-videoposter"),.1,{autoAlpha:1,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find("iframe"),.1,{autoAlpha:0,ease:punchgs.Power3.easeInOut})),-1!=i.data&&3!=i.data&&(o.videoplaying=!1,o.tonpause=!1,v(e,o),d.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(k,"youtube",e.data())),void 0!=o.currentLayerVideoIsPlaying&&o.currentLayerVideoIsPlaying.attr("id")!=e.attr("id")||a.unToggleState(r.videotoggledby)),0==i.data&&1==e.data("nextslideatend")?(s(),e.data("nextslideatend-triggered",1),o.c.revnext(),v(e,o)):(v(e,o),o.videoplaying=!1,d.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(k,"youtube",e.data())),void 0!=o.currentLayerVideoIsPlaying&&o.currentLayerVideoIsPlaying.attr("id")!=e.attr("id")||a.unToggleState(r.videotoggledby))}},onReady:function(a){var o=r.videorate;e.data("videostart");if(e.addClass("rs-apiready"),void 0!=o&&a.target.setPlaybackRate(parseFloat(o)),e.find(".tp-videoposter").unbind("click"),e.find(".tp-videoposter").click(function(){i||k.playVideo()}),e.data("startvideonow")){r.player.playVideo();var d=t(e.data("videostartat"));-1!=d&&r.player.seekTo(d)}e.data("videolistenerexist",1)}}});e.data("player",k);break;case"vimeo":for(var y,h=u.attr("src"),b={},w=h,T=/([^&=]+)=([^&]*)/g;y=T.exec(w);)b[decodeURIComponent(y[1])]=decodeURIComponent(y[2]);h=void 0!=b.player_id?h.replace(b.player_id,c):h+"&player_id="+c;try{h=h.replace("api=0","api=1")}catch(e){}h+="&api=1",u.attr("src",h);var k=e.find("iframe")[0];jQuery("#"+c);(L=$f(c)).addEvent("ready",function(){if(e.addClass("rs-apiready"),L.addEvent("play",function(t){e.data("nextslidecalled",0),punchgs.TweenLite.to(e.find(".tp-videoposter"),.3,{autoAlpha:0,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut}),o.c.trigger("revolution.slide.onvideoplay",n(L,"vimeo",e.data())),o.videoplaying=!0,p(e,o),m?o.c.trigger("stoptimer"):o.videoplaying=!1,"mute"==e.data("volume")||a.lastToggleState(e.data("videomutetoggledby"))||!0===o.globalmute?L.api("setVolume","0"):L.api("setVolume",parseInt(e.data("volume"),0)/100||.75),a.toggleState(r.videotoggledby)}),L.addEvent("playProgress",function(a){var i=t(e.data("videoendat"));if(e.data("currenttime",a.seconds),0!=i&&Math.abs(i-a.seconds)<.3&&i>a.seconds&&1!=e.data("nextslidecalled"))if(g){L.api("play");var d=t(e.data("videostartat"));-1!=d&&L.api("seekTo",d)}else 1==e.data("nextslideatend")&&(e.data("nextslideatend-triggered",1),e.data("nextslidecalled",1),o.c.revnext()),L.api("pause")}),L.addEvent("finish",function(t){v(e,o),o.videoplaying=!1,o.c.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(L,"vimeo",e.data())),1==e.data("nextslideatend")&&(e.data("nextslideatend-triggered",1),o.c.revnext()),void 0!=o.currentLayerVideoIsPlaying&&o.currentLayerVideoIsPlaying.attr("id")!=e.attr("id")||a.unToggleState(r.videotoggledby)}),L.addEvent("pause",function(t){("on"==e.data("showcoveronpause")&&e.find(".tp-videoposter").length>0||1===e.data("bgvideo")&&e.find(".rs-fullvideo-cover").length>0)&&(1===e.data("bgvideo")?punchgs.TweenLite.to(e.find(".rs-fullvideo-cover"),.1,{autoAlpha:1,force3D:"auto",ease:punchgs.Power3.easeInOut}):punchgs.TweenLite.to(e.find(".tp-videoposter"),.1,{autoAlpha:1,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find("iframe"),.1,{autoAlpha:0,ease:punchgs.Power3.easeInOut})),o.videoplaying=!1,o.tonpause=!1,v(e,o),o.c.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(L,"vimeo",e.data())),void 0!=o.currentLayerVideoIsPlaying&&o.currentLayerVideoIsPlaying.attr("id")!=e.attr("id")||a.unToggleState(r.videotoggledby)}),e.find(".tp-videoposter").unbind("click"),e.find(".tp-videoposter").click(function(){if(!i)return L.api("play"),!1}),e.data("startvideonow")){L.api("play");var d=t(e.data("videostartat"));-1!=d&&L.api("seekTo",d)}e.data("videolistenerexist",1)})}else{var x=t(e.data("videostartat"));switch(r.videotype){case"youtube":d&&(r.player.playVideo(),-1!=x&&r.player.seekTo());break;case"vimeo":if(d){var L=$f(e.find("iframe").attr("id"));L.api("play"),-1!=x&&L.api("seekTo",x)}}}},s=function(){document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen&&document.webkitExitFullscreen()},l=function(){try{if(void 0!==window.fullScreen)return window.fullScreen;var e=5;return jQuery.browser.webkit&&/Apple Computer/.test(navigator.vendor)&&(e=42),screen.width==window.innerWidth&&Math.abs(screen.height-window.innerHeight) '),e.find("video, .tp-poster, .tp-video-play-button").click(function(){e.hasClass("videoisplaying")?m.pause():m.play()})),1==e.data("forcecover")||e.hasClass("fullscreenvideo")||1==e.data("bgvideo"))if(1==e.data("forcecover")||1==e.data("bgvideo")){f.addClass("fullcoveredvideo");var b=e.data("aspectratio")||"4:3";a.setSize(o),a.prepareCoveredVideo(b,o,e)}else f.addClass("fullscreenvideo");var w=e.find(".tp-vid-play-pause")[0],T=e.find(".tp-vid-mute")[0],k=e.find(".tp-vid-full-screen")[0],x=e.find(".tp-seek-bar")[0],L=e.find(".tp-volume-bar")[0];void 0!=w&&d(w,"click",function(){1==m.paused?m.play():m.pause()}),void 0!=T&&d(T,"click",function(){0==m.muted?(m.muted=!0,T.innerHTML="Unmute"):(m.muted=!1,T.innerHTML="Mute")}),void 0!=k&&k&&d(k,"click",function(){m.requestFullscreen?m.requestFullscreen():m.mozRequestFullScreen?m.mozRequestFullScreen():m.webkitRequestFullscreen&&m.webkitRequestFullscreen()}),void 0!=x&&(d(x,"change",function(){var e=m.duration*(x.value/100);m.currentTime=e}),d(x,"mousedown",function(){e.addClass("seekbardragged"),m.pause()}),d(x,"mouseup",function(){e.removeClass("seekbardragged"),m.play()})),d(m,"canplaythrough",function(){a.preLoadAudioDone(e,o,"canplaythrough")}),d(m,"canplay",function(){a.preLoadAudioDone(e,o,"canplay")}),d(m,"progress",function(){a.preLoadAudioDone(e,o,"progress")}),d(m,"timeupdate",function(){var a=100/m.duration*m.currentTime,i=t(e.data("videoendat")),d=m.currentTime;if(void 0!=x&&(x.value=a),0!=i&&-1!=i&&Math.abs(i-d)<=.3&&i>d&&1!=e.data("nextslidecalled"))if(y){m.play();var n=t(e.data("videostartat"));-1!=n&&(m.currentTime=n)}else 1==e.data("nextslideatend")&&(e.data("nextslideatend-triggered",1),e.data("nextslidecalled",1),o.just_called_nextslide_at_htmltimer=!0,o.c.revnext(),setTimeout(function(){o.just_called_nextslide_at_htmltimer=!1},1e3)),m.pause()}),void 0!=L&&d(L,"change",function(){m.volume=L.value}),d(m,"play",function(){e.data("nextslidecalled",0);var t=e.data("volume");t=void 0!=t&&"mute"!=t?parseFloat(t)/100:t,a.is_mobile()||(!0===o.globalmute?m.muted=!0:m.muted=!1,t>1&&(t/=100),"mute"==t?m.muted=!0:void 0!=t&&(m.volume=t)),e.addClass("videoisplaying");var i="html5"==u.audio?"audio":"video";p(e,o),h&&"audio"!=i?(o.videoplaying=!0,o.c.trigger("stoptimer"),o.c.trigger("revolution.slide.onvideoplay",n(m,"html5",u))):(o.videoplaying=!1,"audio"!=i&&o.c.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(m,"html5",u))),punchgs.TweenLite.to(e.find(".tp-videoposter"),.3,{autoAlpha:0,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find(i),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut});var d=e.find(".tp-vid-play-pause")[0],r=e.find(".tp-vid-mute")[0];void 0!=d&&(d.innerHTML="Pause"),void 0!=r&&m.muted&&(r.innerHTML="Unmute"),a.toggleState(u.videotoggledby)}),d(m,"pause",function(t){var i="html5"==u.audio?"audio":"video";!l()&&e.find(".tp-videoposter").length>0&&"on"==e.data("showcoveronpause")&&!e.hasClass("seekbardragged")&&(punchgs.TweenLite.to(e.find(".tp-videoposter"),.3,{autoAlpha:1,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(e.find(i),.3,{autoAlpha:0,ease:punchgs.Power3.easeInOut})),e.removeClass("videoisplaying"),o.videoplaying=!1,v(e,o),"audio"!=i&&o.c.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(m,"html5",e.data()));var d=e.find(".tp-vid-play-pause")[0];void 0!=d&&(d.innerHTML="Play"),void 0!=o.currentLayerVideoIsPlaying&&o.currentLayerVideoIsPlaying.attr("id")!=e.attr("id")||a.unToggleState(u.videotoggledby)}),d(m,"ended",function(){s(),v(e,o),o.videoplaying=!1,v(e,o),"audio"!=c&&o.c.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",n(m,"html5",e.data())),!0===e.data("nextslideatend")&&m.currentTime>0&&(1==!o.just_called_nextslide_at_htmltimer&&(e.data("nextslideatend-triggered",1),o.c.revnext(),o.just_called_nextslide_at_htmltimer=!0),setTimeout(function(){o.just_called_nextslide_at_htmltimer=!1},1500)),e.removeClass("videoisplaying")})},p=function(e,t){void 0==t.playingvideos&&(t.playingvideos=new Array),e.data("stopallvideos")&&void 0!=t.playingvideos&&t.playingvideos.length>0&&(t.lastplayedvideos=jQuery.extend(!0,[],t.playingvideos),jQuery.each(t.playingvideos,function(e,i){a.stopVideo(i,t)})),t.playingvideos.push(e),t.currentLayerVideoIsPlaying=e},v=function(e,t){void 0!=t.playingvideos&&jQuery.inArray(e,t.playingvideos)>=0&&t.playingvideos.splice(jQuery.inArray(e,t.playingvideos),1)}}(jQuery);
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/js/rev_slider/jquery.themepunch.revolution.min.js b/Web Development/Basic/Tourist Places/js/rev_slider/jquery.themepunch.revolution.min.js
new file mode 100644
index 000000000..804f53036
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/rev_slider/jquery.themepunch.revolution.min.js
@@ -0,0 +1,7 @@
+/**************************************************************************
+ * jquery.themepunch.revolution.js - jQuery Plugin for Revolution Slider
+ * @version: 5.4.6 (23.08.2017)
+ * @requires jQuery v1.7 or later (tested on 1.9)
+ * @author ThemePunch
+**************************************************************************/
+!function(jQuery,undefined){"use strict";var version={core:"5.4.6","revolution.extensions.actions.min.js":"2.1.0","revolution.extensions.carousel.min.js":"1.2.1","revolution.extensions.kenburn.min.js":"1.3.1","revolution.extensions.layeranimation.min.js":"3.6.1","revolution.extensions.navigation.min.js":"1.3.3","revolution.extensions.parallax.min.js":"2.2.0","revolution.extensions.slideanims.min.js":"1.7","revolution.extensions.video.min.js":"2.1.1"};jQuery.fn.extend({revolution:function(e){var i={delay:9e3,responsiveLevels:4064,visibilityLevels:[2048,1024,778,480],gridwidth:960,gridheight:500,minHeight:0,autoHeight:"off",sliderType:"standard",sliderLayout:"auto",fullScreenAutoWidth:"off",fullScreenAlignForce:"off",fullScreenOffsetContainer:"",fullScreenOffset:"0",hideCaptionAtLimit:0,hideAllCaptionAtLimit:0,hideSliderAtLimit:0,disableProgressBar:"off",stopAtSlide:-1,stopAfterLoops:-1,shadow:0,dottedOverlay:"none",startDelay:0,lazyType:"smart",spinner:"spinner0",shuffle:"off",viewPort:{enable:!1,outof:"wait",visible_area:"60%",presize:!1},fallbacks:{isJoomla:!1,panZoomDisableOnMobile:"off",simplifyAll:"on",nextSlideOnWindowFocus:"off",disableFocusListener:!0,ignoreHeightChanges:"off",ignoreHeightChangesSize:0,allowHTML5AutoPlayOnAndroid:!0},parallax:{type:"off",levels:[10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85],origo:"enterpoint",speed:400,bgparallax:"off",opacity:"on",disable_onmobile:"off",ddd_shadow:"on",ddd_bgfreeze:"off",ddd_overflow:"visible",ddd_layer_overflow:"visible",ddd_z_correction:65,ddd_path:"mouse"},scrolleffect:{fade:"off",blur:"off",scale:"off",grayscale:"off",maxblur:10,on_layers:"off",on_slidebg:"off",on_static_layers:"off",on_parallax_layers:"off",on_parallax_static_layers:"off",direction:"both",multiplicator:1.35,multiplicator_layers:.5,tilt:30,disable_on_mobile:"on"},carousel:{easing:punchgs.Power3.easeInOut,speed:800,showLayersAllTime:"off",horizontal_align:"center",vertical_align:"center",infinity:"on",space:0,maxVisibleItems:3,stretch:"off",fadeout:"on",maxRotation:0,minScale:0,vary_fade:"off",vary_rotation:"on",vary_scale:"off",border_radius:"0px",padding_top:0,padding_bottom:0},navigation:{keyboardNavigation:"off",keyboard_direction:"horizontal",mouseScrollNavigation:"off",onHoverStop:"on",touch:{touchenabled:"off",touchOnDesktop:"off",swipe_treshold:75,swipe_min_touches:1,drag_block_vertical:!1,swipe_direction:"horizontal"},arrows:{style:"",enable:!1,hide_onmobile:!1,hide_onleave:!0,hide_delay:200,hide_delay_mobile:1200,hide_under:0,hide_over:9999,tmp:"",rtl:!1,left:{h_align:"left",v_align:"center",h_offset:20,v_offset:0,container:"slider"},right:{h_align:"right",v_align:"center",h_offset:20,v_offset:0,container:"slider"}},bullets:{container:"slider",rtl:!1,style:"",enable:!1,hide_onmobile:!1,hide_onleave:!0,hide_delay:200,hide_delay_mobile:1200,hide_under:0,hide_over:9999,direction:"horizontal",h_align:"left",v_align:"center",space:0,h_offset:20,v_offset:0,tmp:'
'},thumbnails:{container:"slider",rtl:!1,style:"",enable:!1,width:100,height:50,min_width:100,wrapper_padding:2,wrapper_color:"#f5f5f5",wrapper_opacity:1,tmp:'
',visibleAmount:5,hide_onmobile:!1,hide_onleave:!0,hide_delay:200,hide_delay_mobile:1200,hide_under:0,hide_over:9999,direction:"horizontal",span:!1,position:"inner",space:2,h_align:"left",v_align:"center",h_offset:20,v_offset:0},tabs:{container:"slider",rtl:!1,style:"",enable:!1,width:100,min_width:100,height:50,wrapper_padding:10,wrapper_color:"#f5f5f5",wrapper_opacity:1,tmp:'
',visibleAmount:5,hide_onmobile:!1,hide_onleave:!0,hide_delay:200,hide_delay_mobile:1200,hide_under:0,hide_over:9999,direction:"horizontal",span:!1,space:0,position:"inner",h_align:"left",v_align:"center",h_offset:20,v_offset:0}},extensions:"extensions/",extensions_suffix:".min.js",debugMode:!1};return e=jQuery.extend(!0,{},i,e),this.each(function(){var i=jQuery(this);e.minHeight=e.minHeight!=undefined?parseInt(e.minHeight,0):e.minHeight,e.scrolleffect.on="on"===e.scrolleffect.fade||"on"===e.scrolleffect.scale||"on"===e.scrolleffect.blur||"on"===e.scrolleffect.grayscale,"hero"==e.sliderType&&i.find(">ul>li").each(function(e){e>0&&jQuery(this).remove()}),e.jsFileLocation=e.jsFileLocation||getScriptLocation("themepunch.revolution.min.js"),e.jsFileLocation=e.jsFileLocation+e.extensions,e.scriptsneeded=getNeededScripts(e,i),e.curWinRange=0,e.rtl=!0,e.navigation!=undefined&&e.navigation.touch!=undefined&&(e.navigation.touch.swipe_min_touches=e.navigation.touch.swipe_min_touches>5?1:e.navigation.touch.swipe_min_touches),jQuery(this).on("scriptsloaded",function(){if(e.modulesfailing)return i.html('
!! Error at loading Slider Revolution 5.0 Extrensions.'+e.errorm+"
").show(),!1;_R.migration!=undefined&&(e=_R.migration(i,e)),punchgs.force3D=!0,"on"!==e.simplifyAll&&punchgs.TweenLite.lagSmoothing(1e3,16),prepareOptions(i,e),initSlider(i,e)}),i[0].opt=e,waitForScripts(i,e)})},getRSVersion:function(e){if(!0===e)return jQuery("body").data("tp_rs_version");var i=jQuery("body").data("tp_rs_version"),t="";t+="---------------------------------------------------------\n",t+=" Currently Loaded Slider Revolution & SR Modules :\n",t+="---------------------------------------------------------\n";for(var a in i)t+=i[a].alias+": "+i[a].ver+"\n";return t+="---------------------------------------------------------\n"},revremoveslide:function(e){return this.each(function(){var i=jQuery(this),t=i[0].opt;if(!(e<0||e>t.slideamount)&&i!=undefined&&i.length>0&&jQuery("body").find("#"+i.attr("id")).length>0&&t&&t.li.length>0&&(e>0||e<=t.li.length)){var a=jQuery(t.li[e]),n=a.data("index"),r=!1;t.slideamount=t.slideamount-1,t.realslideamount=t.realslideamount-1,removeNavWithLiref(".tp-bullet",n,t),removeNavWithLiref(".tp-tab",n,t),removeNavWithLiref(".tp-thumb",n,t),a.hasClass("active-revslide")&&(r=!0),a.remove(),t.li=removeArray(t.li,e),t.carousel&&t.carousel.slides&&(t.carousel.slides=removeArray(t.carousel.slides,e)),t.thumbs=removeArray(t.thumbs,e),_R.updateNavIndexes&&_R.updateNavIndexes(t),r&&i.revnext(),punchgs.TweenLite.set(t.li,{minWidth:"99%"}),punchgs.TweenLite.set(t.li,{minWidth:"100%"})}})},revaddcallback:function(e){return this.each(function(){this.opt&&(this.opt.callBackArray===undefined&&(this.opt.callBackArray=new Array),this.opt.callBackArray.push(e))})},revgetparallaxproc:function(){return jQuery(this)[0].opt.scrollproc},revdebugmode:function(){return this.each(function(){var e=jQuery(this);e[0].opt.debugMode=!0,containerResized(e,e[0].opt)})},revscroll:function(e){return this.each(function(){var i=jQuery(this);jQuery("body,html").animate({scrollTop:i.offset().top+i.height()-e+"px"},{duration:400})})},revredraw:function(e){return this.each(function(){var e=jQuery(this);containerResized(e,e[0].opt)})},revkill:function(e){var i=this,t=jQuery(this);if(punchgs.TweenLite.killDelayedCallsTo(_R.showHideNavElements),t!=undefined&&t.length>0&&jQuery("body").find("#"+t.attr("id")).length>0){t.data("conthover",1),t.data("conthover-changed",1),t.trigger("revolution.slide.onpause");var a=t.parent().find(".tp-bannertimer"),n=t[0].opt;n.tonpause=!0,t.trigger("stoptimer");r="resize.revslider-"+t.attr("id");jQuery(window).unbind(r),punchgs.TweenLite.killTweensOf(t.find("*"),!1),punchgs.TweenLite.killTweensOf(t,!1),t.unbind("hover, mouseover, mouseenter,mouseleave, resize");var r="resize.revslider-"+t.attr("id");jQuery(window).off(r),t.find("*").each(function(){var e=jQuery(this);e.unbind("on, hover, mouseenter,mouseleave,mouseover, resize,restarttimer, stoptimer"),e.off("on, hover, mouseenter,mouseleave,mouseover, resize"),e.data("mySplitText",null),e.data("ctl",null),e.data("tween")!=undefined&&e.data("tween").kill(),e.data("kenburn")!=undefined&&e.data("kenburn").kill(),e.data("timeline_out")!=undefined&&e.data("timeline_out").kill(),e.data("timeline")!=undefined&&e.data("timeline").kill(),e.remove(),e.empty(),e=null}),punchgs.TweenLite.killTweensOf(t.find("*"),!1),punchgs.TweenLite.killTweensOf(t,!1),a.remove();try{t.closest(".forcefullwidth_wrapper_tp_banner").remove()}catch(e){}try{t.closest(".rev_slider_wrapper").remove()}catch(e){}try{t.remove()}catch(e){}return t.empty(),t.html(),t=null,n=null,delete i.c,delete i.opt,delete i.container,!0}return!1},revpause:function(){return this.each(function(){var e=jQuery(this);e!=undefined&&e.length>0&&jQuery("body").find("#"+e.attr("id")).length>0&&(e.data("conthover",1),e.data("conthover-changed",1),e.trigger("revolution.slide.onpause"),e[0].opt.tonpause=!0,e.trigger("stoptimer"))})},revresume:function(){return this.each(function(){var e=jQuery(this);e!=undefined&&e.length>0&&jQuery("body").find("#"+e.attr("id")).length>0&&(e.data("conthover",0),e.data("conthover-changed",1),e.trigger("revolution.slide.onresume"),e[0].opt.tonpause=!1,e.trigger("starttimer"))})},revstart:function(){var e=jQuery(this);if(e!=undefined&&e.length>0&&jQuery("body").find("#"+e.attr("id")).length>0&&e[0].opt!==undefined)return e[0].opt.sliderisrunning?(console.log("Slider Is Running Already"),!1):(runSlider(e,e[0].opt),!0)},revnext:function(){return this.each(function(){var e=jQuery(this);e!=undefined&&e.length>0&&jQuery("body").find("#"+e.attr("id")).length>0&&_R.callingNewSlide(e,1)})},revprev:function(){return this.each(function(){var e=jQuery(this);e!=undefined&&e.length>0&&jQuery("body").find("#"+e.attr("id")).length>0&&_R.callingNewSlide(e,-1)})},revmaxslide:function(){return jQuery(this).find(".tp-revslider-mainul >li").length},revcurrentslide:function(){var e=jQuery(this);if(e!=undefined&&e.length>0&&jQuery("body").find("#"+e.attr("id")).length>0)return parseInt(e[0].opt.act,0)+1},revlastslide:function(){return jQuery(this).find(".tp-revslider-mainul >li").length},revshowslide:function(e){return this.each(function(){var i=jQuery(this);i!=undefined&&i.length>0&&jQuery("body").find("#"+i.attr("id")).length>0&&_R.callingNewSlide(i,"to"+(e-1))})},revcallslidewithid:function(e){return this.each(function(){var i=jQuery(this);i!=undefined&&i.length>0&&jQuery("body").find("#"+i.attr("id")).length>0&&_R.callingNewSlide(i,e)})}});var _R=jQuery.fn.revolution;jQuery.extend(!0,_R,{getversion:function(){return version},compare_version:function(e){var i=jQuery("body").data("tp_rs_version");return(i=i===undefined?new Object:i).Core===undefined&&(i.Core=new Object,i.Core.alias="Slider Revolution Core",i.Core.name="jquery.themepunch.revolution.min.js",i.Core.ver=_R.getversion().core),"stop"!=e.check&&(_R.getversion().core
').appendTo(jQuery("body"));t.html("\x3c!--[if "+(i||"")+" IE "+(e||"")+"]>
1&&(i=!0);return i},is_android:function(){var e=["android","Android"],i=!1;for(var t in e)navigator.userAgent.split(e[t]).length>1&&(i=!0);return i},callBackHandling:function(e,i,t){try{e.callBackArray&&jQuery.each(e.callBackArray,function(e,a){a&&a.inmodule&&a.inmodule===i&&a.atposition&&a.atposition===t&&a.callback&&a.callback.call()})}catch(e){console.log("Call Back Failed")}},get_browser:function(){var e,i=navigator.appName,t=navigator.userAgent,a=t.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);return a&&null!=(e=t.match(/version\/([\.\d]+)/i))&&(a[2]=e[1]),(a=a?[a[1],a[2]]:[i,navigator.appVersion,"-?"])[0]},get_browser_version:function(){var e,i=navigator.appName,t=navigator.userAgent,a=t.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);return a&&null!=(e=t.match(/version\/([\.\d]+)/i))&&(a[2]=e[1]),(a=a?[a[1],a[2]]:[i,navigator.appVersion,"-?"])[1]},getHorizontalOffset:function(e,i){var t=gWiderOut(e,".outer-left"),a=gWiderOut(e,".outer-right");switch(i){case"left":return t;case"right":return a;case"both":return t+a}},callingNewSlide:function(e,i){var t=e.find(".next-revslide").length>0?e.find(".next-revslide").index():e.find(".processing-revslide").length>0?e.find(".processing-revslide").index():e.find(".active-revslide").index(),a=0,n=e[0].opt;e.find(".next-revslide").removeClass("next-revslide"),e.find(".active-revslide").hasClass("tp-invisible-slide")&&(t=n.last_shown_slide),i&&jQuery.isNumeric(i)||i.match(/to/g)?(a=1===i||-1===i?(a=t+i)<0?n.slideamount-1:a>=n.slideamount?0:a:(i=jQuery.isNumeric(i)?i:parseInt(i.split("to")[1],0))<0?0:i>n.slideamount-1?n.slideamount-1:i,e.find(".tp-revslider-slidesli:eq("+a+")").addClass("next-revslide")):i&&e.find(".tp-revslider-slidesli").each(function(){var e=jQuery(this);e.data("index")===i&&e.addClass("next-revslide")}),a=e.find(".next-revslide").index(),e.trigger("revolution.nextslide.waiting"),t===a&&t===n.last_shown_slide||a!==t&&-1!=a?swapSlide(e):e.find(".next-revslide").removeClass("next-revslide")},slotSize:function(e,i){i.slotw=Math.ceil(i.width/i.slots),"fullscreen"==i.sliderLayout?i.sloth=Math.ceil(jQuery(window).height()/i.slots):i.sloth=Math.ceil(i.height/i.slots),"on"==i.autoHeight&&e!==undefined&&""!==e&&(i.sloth=Math.ceil(e.height()/i.slots))},setSize:function(e){var i=(e.top_outer||0)+(e.bottom_outer||0),t=parseInt(e.carousel.padding_top||0,0),a=parseInt(e.carousel.padding_bottom||0,0),n=e.gridheight[e.curWinRange],r=0,o=-1===e.nextSlide||e.nextSlide===undefined?0:e.nextSlide;if(e.paddings=e.paddings===undefined?{top:parseInt(e.c.parent().css("paddingTop"),0)||0,bottom:parseInt(e.c.parent().css("paddingBottom"),0)||0}:e.paddings,e.rowzones&&e.rowzones.length>0)for(var s=0;s
e.gridheight[e.curWinRange]&&"on"!=e.autoHeight&&(e.height=e.gridheight[e.curWinRange]),"fullscreen"==e.sliderLayout||e.infullscreenmode){e.height=e.bw*e.gridheight[e.curWinRange];e.c.parent().width();var l=jQuery(window).height();if(e.fullScreenOffsetContainer!=undefined){try{var d=e.fullScreenOffsetContainer.split(",");d&&jQuery.each(d,function(e,i){l=jQuery(i).length>0?l-jQuery(i).outerHeight(!0):l})}catch(e){}try{e.fullScreenOffset.split("%").length>1&&e.fullScreenOffset!=undefined&&e.fullScreenOffset.length>0?l-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:e.fullScreenOffset!=undefined&&e.fullScreenOffset.length>0&&(l-=parseInt(e.fullScreenOffset,0))}catch(e){}}l=lparseInt(e.height,0)?r:e.height}else e.minHeight!=undefined&&e.heightparseInt(e.height,0)?r:e.height,e.c.height(e.height);var u={height:t+a+i+e.height+e.paddings.top+e.paddings.bottom};e.c.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").css(u),e.c.closest(".rev_slider_wrapper").css(u),setScale(e)},enterInViewPort:function(e){e.waitForCountDown&&(countDown(e.c,e),e.waitForCountDown=!1),e.waitForFirstSlide&&(swapSlide(e.c),e.waitForFirstSlide=!1,setTimeout(function(){e.c.removeClass("tp-waitforfirststart")},500)),"playing"!=e.sliderlaststatus&&e.sliderlaststatus!=undefined||e.c.trigger("starttimer"),e.lastplayedvideos!=undefined&&e.lastplayedvideos.length>0&&jQuery.each(e.lastplayedvideos,function(i,t){_R.playVideo(t,e)})},leaveViewPort:function(e){e.sliderlaststatus=e.sliderstatus,e.c.trigger("stoptimer"),e.playingvideos!=undefined&&e.playingvideos.length>0&&(e.lastplayedvideos=jQuery.extend(!0,[],e.playingvideos),e.playingvideos&&jQuery.each(e.playingvideos,function(i,t){e.leaveViewPortBasedStop=!0,_R.stopVideo&&_R.stopVideo(t,e)}))},unToggleState:function(e){e!=undefined&&e.length>0&&jQuery.each(e,function(e,i){i.removeClass("rs-toggle-content-active")})},toggleState:function(e){e!=undefined&&e.length>0&&jQuery.each(e,function(e,i){i.addClass("rs-toggle-content-active")})},swaptoggleState:function(e){e!=undefined&&e.length>0&&jQuery.each(e,function(e,i){jQuery(i).hasClass("rs-toggle-content-active")?jQuery(i).removeClass("rs-toggle-content-active"):jQuery(i).addClass("rs-toggle-content-active")})},lastToggleState:function(e){var i=0;return e!=undefined&&e.length>0&&jQuery.each(e,function(e,t){i=t.hasClass("rs-toggle-content-active")}),i}});var _ISM=_R.is_mobile(),_ANDROID=_R.is_android(),checkIDS=function(e,i){if(e.anyid=e.anyid===undefined?[]:e.anyid,-1!=jQuery.inArray(i.attr("id"),e.anyid)){var t=i.attr("id")+"_"+Math.round(9999*Math.random());i.attr("id",t)}e.anyid.push(i.attr("id"))},removeArray=function(e,i){var t=[];return jQuery.each(e,function(e,a){e!=i&&t.push(a)}),t},removeNavWithLiref=function(e,i,t){t.c.find(e).each(function(){var e=jQuery(this);e.data("liref")===i&&e.remove()})},lAjax=function(e,i){return!jQuery("body").data(e)&&(i.filesystem?(i.errorm===undefined&&(i.errorm=" Local Filesystem Detected ! Put this to your header:"),console.warn("Local Filesystem detected !"),i.errorm=i.errorm+' <script type="text/javascript" src="'+i.jsFileLocation+e+i.extensions_suffix+'"></script>',console.warn(i.jsFileLocation+e+i.extensions_suffix+" could not be loaded !"),console.warn("Please use a local Server or work online or make sure that you load all needed Libraries manually in your Document."),console.log(" "),i.modulesfailing=!0,!1):(jQuery.ajax({url:i.jsFileLocation+e+i.extensions_suffix+"?version="+version.core,dataType:"script",cache:!0,error:function(t){console.warn("Slider Revolution 5.0 Error !"),console.error("Failure at Loading:"+e+i.extensions_suffix+" on Path:"+i.jsFileLocation),console.info(t)}}),void jQuery("body").data(e,!0)))},getNeededScripts=function(e,i){var t=new Object,a=e.navigation;return t.kenburns=!1,t.parallax=!1,t.carousel=!1,t.navigation=!1,t.videos=!1,t.actions=!1,t.layeranim=!1,t.migration=!1,i.data("version")&&i.data("version").toString().match(/5./gi)?(i.find("img").each(function(){"on"==jQuery(this).data("kenburns")&&(t.kenburns=!0)}),("carousel"==e.sliderType||"on"==a.keyboardNavigation||"on"==a.mouseScrollNavigation||"on"==a.touch.touchenabled||a.arrows.enable||a.bullets.enable||a.thumbnails.enable||a.tabs.enable)&&(t.navigation=!0),i.find(".tp-caption, .tp-static-layer, .rs-background-video-layer").each(function(){var e=jQuery(this);(e.data("ytid")!=undefined||e.find("iframe").length>0&&e.find("iframe").attr("src").toLowerCase().indexOf("youtube")>0)&&(t.videos=!0),(e.data("vimeoid")!=undefined||e.find("iframe").length>0&&e.find("iframe").attr("src").toLowerCase().indexOf("vimeo")>0)&&(t.videos=!0),e.data("actions")!==undefined&&(t.actions=!0),t.layeranim=!0}),i.find("li").each(function(){jQuery(this).data("link")&&jQuery(this).data("link")!=undefined&&(t.layeranim=!0,t.actions=!0)}),!t.videos&&(i.find(".rs-background-video-layer").length>0||i.find(".tp-videolayer").length>0||i.find(".tp-audiolayer").length>0||i.find("iframe").length>0||i.find("video").length>0)&&(t.videos=!0),"carousel"==e.sliderType&&(t.carousel=!0),("off"!==e.parallax.type||e.viewPort.enable||"true"==e.viewPort.enable||"true"===e.scrolleffect.on||e.scrolleffect.on)&&(t.parallax=!0)):(t.kenburns=!0,t.parallax=!0,t.carousel=!1,t.navigation=!0,t.videos=!0,t.actions=!0,t.layeranim=!0,t.migration=!0),"hero"==e.sliderType&&(t.carousel=!1,t.navigation=!1),window.location.href.match(/file:/gi)&&(t.filesystem=!0,e.filesystem=!0),t.videos&&void 0===_R.isVideoPlaying&&lAjax("revolution.extension.video",e),t.carousel&&void 0===_R.prepareCarousel&&lAjax("revolution.extension.carousel",e),t.carousel||void 0!==_R.animateSlide||lAjax("revolution.extension.slideanims",e),t.actions&&void 0===_R.checkActions&&lAjax("revolution.extension.actions",e),t.layeranim&&void 0===_R.handleStaticLayers&&lAjax("revolution.extension.layeranimation",e),t.kenburns&&void 0===_R.stopKenBurn&&lAjax("revolution.extension.kenburn",e),t.navigation&&void 0===_R.createNavigation&&lAjax("revolution.extension.navigation",e),t.migration&&void 0===_R.migration&&lAjax("revolution.extension.migration",e),t.parallax&&void 0===_R.checkForParallax&&lAjax("revolution.extension.parallax",e),e.addons!=undefined&&e.addons.length>0&&jQuery.each(e.addons,function(i,t){"object"==typeof t&&t.fileprefix!=undefined&&lAjax(t.fileprefix,e)}),t},waitForScripts=function(e,i){var t=!0,a=i.scriptsneeded;i.addons!=undefined&&i.addons.length>0&&jQuery.each(i.addons,function(e,i){"object"==typeof i&&i.init!=undefined&&_R[i.init]===undefined&&(t=!1)}),a.filesystem||"undefined"!=typeof punchgs&&t&&(!a.kenburns||a.kenburns&&void 0!==_R.stopKenBurn)&&(!a.navigation||a.navigation&&void 0!==_R.createNavigation)&&(!a.carousel||a.carousel&&void 0!==_R.prepareCarousel)&&(!a.videos||a.videos&&void 0!==_R.resetVideo)&&(!a.actions||a.actions&&void 0!==_R.checkActions)&&(!a.layeranim||a.layeranim&&void 0!==_R.handleStaticLayers)&&(!a.migration||a.migration&&void 0!==_R.migration)&&(!a.parallax||a.parallax&&void 0!==_R.checkForParallax)&&(a.carousel||!a.carousel&&void 0!==_R.animateSlide)?e.trigger("scriptsloaded"):setTimeout(function(){waitForScripts(e,i)},50)},getScriptLocation=function(e){var i=new RegExp("themepunch.revolution.min.js","gi"),t="";return jQuery("script").each(function(){var e=jQuery(this).attr("src");e&&e.match(i)&&(t=e)}),t=t.replace("jquery.themepunch.revolution.min.js",""),t=t.replace("jquery.themepunch.revolution.js",""),t=t.split("?")[0]},setCurWinRange=function(e,i){var t=9999,a=0,n=0,r=0,o=jQuery(window).width(),s=i&&9999==e.responsiveLevels?e.visibilityLevels:e.responsiveLevels;s&&s.length&&jQuery.each(s,function(e,i){oi)&&(t=i,r=e,a=i),o>i&&a'),container.find(">ul").addClass("tp-revslider-mainul"),opt.c=container,opt.ul=container.find(".tp-revslider-mainul"),opt.ul.find(">li").each(function(e){var i=jQuery(this);"on"==i.data("hideslideonmobile")&&_ISM&&i.remove(),(i.data("invisible")||!0===i.data("invisible"))&&(i.addClass("tp-invisible-slide"),i.appendTo(opt.ul))}),opt.addons!=undefined&&opt.addons.length>0&&jQuery.each(opt.addons,function(i,obj){"object"==typeof obj&&obj.init!=undefined&&_R[obj.init](eval(obj.params))}),opt.cid=container.attr("id"),opt.ul.css({visibility:"visible"}),opt.slideamount=opt.ul.find(">li").not(".tp-invisible-slide").length,opt.realslideamount=opt.ul.find(">li").length,opt.slayers=container.find(".tp-static-layers"),opt.slayers.data("index","staticlayers"),1!=opt.waitForInit&&(container[0].opt=opt,runSlider(container,opt))},onFullScreenChange=function(){jQuery("body").data("rs-fullScreenMode",!jQuery("body").data("rs-fullScreenMode")),jQuery("body").data("rs-fullScreenMode")&&setTimeout(function(){jQuery(window).trigger("resize")},200)},runSlider=function(e,i){if(i.sliderisrunning=!0,i.ul.find(">li").each(function(e){jQuery(this).data("originalindex",e)}),i.allli=i.ul.find(">li"),jQuery.each(i.allli,function(e,i){(i=jQuery(i)).data("origindex",i.index())}),i.li=i.ul.find(">li").not(".tp-invisible-slide"),"on"==i.shuffle){var t=new Object,a=i.ul.find(">li:first-child");t.fstransition=a.data("fstransition"),t.fsmasterspeed=a.data("fsmasterspeed"),t.fsslotamount=a.data("fsslotamount");for(var n=0;nli:eq("+r+")").prependTo(i.ul)}var o=i.ul.find(">li:first-child");o.data("fstransition",t.fstransition),o.data("fsmasterspeed",t.fsmasterspeed),o.data("fsslotamount",t.fsslotamount),i.allli=i.ul.find(">li"),i.li=i.ul.find(">li").not(".tp-invisible-slide")}if(i.inli=i.ul.find(">li.tp-invisible-slide"),i.thumbs=new Array,i.slots=4,i.act=-1,i.firststart=1,i.loadqueue=new Array,i.syncload=0,i.conw=e.width(),i.conh=e.height(),i.responsiveLevels.length>1?i.responsiveLevels[0]=9999:i.responsiveLevels=9999,jQuery.each(i.allli,function(e,t){var a=(t=jQuery(t)).find(".rev-slidebg")||t.find("img").first(),n=0;t.addClass("tp-revslider-slidesli"),t.data("index")===undefined&&t.data("index","rs-"+Math.round(999999*Math.random()));var r=new Object;r.params=new Array,r.id=t.data("index"),r.src=t.data("thumb")!==undefined?t.data("thumb"):a.data("lazyload")!==undefined?a.data("lazyload"):a.attr("src"),t.data("title")!==undefined&&r.params.push({from:RegExp("\\{\\{title\\}\\}","g"),to:t.data("title")}),t.data("description")!==undefined&&r.params.push({from:RegExp("\\{\\{description\\}\\}","g"),to:t.data("description")});for(n=1;n<=10;n++)t.data("param"+n)!==undefined&&r.params.push({from:RegExp("\\{\\{param"+n+"\\}\\}","g"),to:t.data("param"+n)});if(i.thumbs.push(r),t.data("link")!=undefined){var o=t.data("link"),s=t.data("target")||"_self",l="back"===t.data("slideindex")?0:60,d=t.data("linktoslide"),u=d;d!=undefined&&"next"!=d&&"prev"!=d&&i.allli.each(function(){var e=jQuery(this);e.data("origindex")+1==u&&(d=e.data("index"))}),"slide"!=o&&(d="no");var c='":c+"data-actions='"+p+"'"+f+" >",c+='
',t.append(c)}}),i.rle=i.responsiveLevels.length||1,i.gridwidth=cArray(i.gridwidth,i.rle),i.gridheight=cArray(i.gridheight,i.rle),"on"==i.simplifyAll&&(_R.isIE(8)||_R.iOSVersion())&&(e.find(".tp-caption").each(function(){var e=jQuery(this);e.removeClass("customin customout").addClass("fadein fadeout"),e.data("splitin",""),e.data("speed",400)}),i.allli.each(function(){var e=jQuery(this);e.data("transition","fade"),e.data("masterspeed",500),e.data("slotamount",1),(e.find(".rev-slidebg")||e.find(">img").first()).data("kenburns","off")})),i.desktop=!navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|BB10|mobi|tablet|opera mini|nexus 7)/i),i.autoHeight="fullscreen"==i.sliderLayout?"on":i.autoHeight,"fullwidth"==i.sliderLayout&&"off"==i.autoHeight&&e.css({maxHeight:i.gridheight[i.curWinRange]+"px"}),"auto"!=i.sliderLayout&&0==e.closest(".forcefullwidth_wrapper_tp_banner").length&&("fullscreen"!==i.sliderLayout||"on"!=i.fullScreenAutoWidth)){var s=e.parent(),l=s.css("marginBottom"),d=s.css("marginTop"),u=e.attr("id")+"_forcefullwidth";l=l===undefined?0:l,d=d===undefined?0:d,s.wrap('
'),e.closest(".forcefullwidth_wrapper_tp_banner").append('
'),e.parent().css({marginTop:"0px",marginBottom:"0px"}),e.parent().css({position:"absolute"})}if(i.shadow!==undefined&&i.shadow>0&&(e.parent().addClass("tp-shadow"+i.shadow),e.parent().append('
'),e.parent().find(".tp-shadowcover").css({backgroundColor:e.parent().css("backgroundColor"),backgroundImage:e.parent().css("backgroundImage")})),setCurWinRange(i),setCurWinRange(i,!0),!e.hasClass("revslider-initialised")){e.addClass("revslider-initialised"),e.addClass("tp-simpleresponsive"),e.attr("id")==undefined&&e.attr("id","revslider-"+Math.round(1e3*Math.random()+5)),checkIDS(i,e),i.firefox13=!1,i.ie=!jQuery.support.opacity,i.ie9=9==document.documentMode,i.origcd=i.delay;var c=jQuery.fn.jquery.split("."),p=parseFloat(c[0]),f=parseFloat(c[1]);parseFloat(c[2]||"0");1==p&&f<7&&e.html(' The Current Version of jQuery:'+c+" Please update your jQuery Version to min. 1.7 in Case you wish to use the Revolution Slider Plugin
"),p>1&&(i.ie=!1);var h=new Object;h.addedyt=0,h.addedvim=0,h.addedvid=0,i.scrolleffect.on&&(i.scrolleffect.layers=new Array),e.find(".tp-caption, .rs-background-video-layer").each(function(e){var t=jQuery(this),a=t.data(),n=a.autoplayonlyfirsttime,r=a.autoplay,o=a.videomp4!==undefined||a.videowebm!==undefined||a.videoogv!==undefined,s=t.hasClass("tp-audiolayer"),l=a.videoloop,d=!0,u=!1;a.startclasses=t.attr("class"),a.isparallaxlayer=a.startclasses.indexOf("rs-parallax")>=0,t.hasClass("tp-static-layer")&&_R.handleStaticLayers&&(_R.handleStaticLayers(t,i),i.scrolleffect.on&&("on"===i.scrolleffect.on_parallax_static_layers&&a.isparallaxlayer||"on"===i.scrolleffect.on_static_layers&&!a.isparallaxlayer)&&(u=!0),d=!1);var c=t.data("noposteronmobile")||t.data("noPosterOnMobile")||t.data("posteronmobile")||t.data("posterOnMobile")||t.data("posterOnMObile");t.data("noposteronmobile",c);var p=0;if(t.find("iframe").each(function(){punchgs.TweenLite.set(jQuery(this),{autoAlpha:0}),p++}),p>0&&t.data("iframes",!0),t.hasClass("tp-caption")){var f=t.hasClass("slidelink")?"width:100% !important;height:100% !important;":"",g=t.data(),v="",m=g.type,y="row"===m||"column"===m?"relative":"absolute",w="";"row"===m?(t.addClass("rev_row").removeClass("tp-resizeme"),w="rev_row_wrap"):"column"===m?(v=g.verticalalign===undefined?" vertical-align:bottom;":" vertical-align:"+g.verticalalign+";",w="rev_column",t.addClass("rev_column_inner").removeClass("tp-resizeme"),t.data("width","auto"),punchgs.TweenLite.set(t,{width:"auto"})):"group"===m&&t.removeClass("tp-resizeme");var b="",_="";"row"!==m&&"group"!==m&&"column"!==m?(b="display:"+t.css("display")+";",t.closest(".rev_column").length>0?(t.addClass("rev_layer_in_column"),d=!1):t.closest(".rev_group").length>0&&(t.addClass("rev_layer_in_group"),d=!1)):"column"===m&&(d=!1),g.wrapper_class!==undefined&&(w=w+" "+g.wrapper_class),g.wrapper_id!==undefined&&(_='id="'+g.wrapper_id+'"'),t.wrap("'),d&&i.scrolleffect.on&&("on"===i.scrolleffect.on_parallax_layers&&a.isparallaxlayer||"on"===i.scrolleffect.on_layers&&!a.isparallaxlayer)&&i.scrolleffect.layers.push(t.parent()),u&&i.scrolleffect.layers.push(t.parent()),"column"===m&&(t.append('
'),t.closest(".tp-parallax-wrap").append('
'));var x=["pendulum","rotate","slideloop","pulse","wave"],j=t.closest(".tp-loop-wrap");jQuery.each(x,function(e,i){var a=t.find(".rs-"+i),n=a.data()||"";""!=n&&(j.data(n),j.addClass("rs-"+i),a.children(0).unwrap(),t.data("loopanimation","on"))}),t.attr("id")===undefined&&t.attr("id","layer-"+Math.round(999999999*Math.random())),checkIDS(i,t),punchgs.TweenLite.set(t,{visibility:"hidden"})}var R=t.data("actions");R!==undefined&&_R.checkActions(t,i,R),checkHoverDependencies(t,i),_R.checkVideoApis&&(h=_R.checkVideoApis(t,i,h)),!_ISM||i.fallbacks.allowHTML5AutoPlayOnAndroid&&o||(1!=n&&"true"!=n||(a.autoplayonlyfirsttime=!1,n=!1),1!=r&&"true"!=r&&"on"!=r&&"1sttime"!=r||(a.autoplay="off",r="off")),s||1!=n&&"true"!=n&&"1sttime"!=r||"loopandnoslidestop"==l||t.closest("li.tp-revslider-slidesli").addClass("rs-pause-timer-once"),s||1!=r&&"true"!=r&&"on"!=r&&"no1sttime"!=r||"loopandnoslidestop"==l||t.closest("li.tp-revslider-slidesli").addClass("rs-pause-timer-always")}),e[0].addEventListener("mouseenter",function(){e.trigger("tp-mouseenter"),i.overcontainer=!0},{passive:!0}),e[0].addEventListener("mouseover",function(){e.trigger("tp-mouseover"),i.overcontainer=!0},{passive:!0}),e[0].addEventListener("mouseleave",function(){e.trigger("tp-mouseleft"),i.overcontainer=!1},{passive:!0}),e.find(".tp-caption video").each(function(e){var i=jQuery(this);i.removeClass("video-js vjs-default-skin"),i.attr("preload",""),i.css({display:"none"})}),"standard"!==i.sliderType&&(i.lazyType="all"),loadImages(e.find(".tp-static-layers"),i,0,!0),waitForCurrentImages(e.find(".tp-static-layers"),i,function(){e.find(".tp-static-layers img").each(function(){var e=jQuery(this),t=e.data("lazyload")!=undefined?e.data("lazyload"):e.attr("src"),a=getLoadObj(i,t);e.attr("src",a.src)})}),i.rowzones=[],i.allli.each(function(e){var t=jQuery(this);i.rowzones[e]=[],t.find(".rev_row_zone").each(function(){i.rowzones[e].push(jQuery(this))}),"all"!=i.lazyType&&("smart"!=i.lazyType||0!=e&&1!=e&&e!=i.slideamount&&e!=i.slideamount-1)||(loadImages(t,i,e),waitForCurrentImages(t,i,function(){}))});var g=getUrlVars("#")[0];if(g.length<9&&g.split("slide").length>1){var v=parseInt(g.split("slide")[1],0);v<1&&(v=1),v>i.slideamount&&(v=i.slideamount),i.startWithSlide=v-1}e.append(''),i.loader=e.find(".tp-loader"),0===e.find(".tp-bannertimer").length&&e.append('
'),e.find(".tp-bannertimer").css({width:"0%"}),i.ul.css({display:"block"}),prepareSlides(e,i),("off"!==i.parallax.type||i.scrolleffect.on)&&_R.checkForParallax&&_R.checkForParallax(e,i),_R.setSize(i),"hero"!==i.sliderType&&_R.createNavigation&&_R.createNavigation(e,i),_R.resizeThumbsTabs&&_R.resizeThumbsTabs&&_R.resizeThumbsTabs(i),contWidthManager(i);var m=i.viewPort;i.inviewport=!1,m!=undefined&&m.enable&&(jQuery.isNumeric(m.visible_area)||-1!==m.visible_area.indexOf("%")&&(m.visible_area=parseInt(m.visible_area)/100),_R.scrollTicker&&_R.scrollTicker(i,e)),"carousel"===i.sliderType&&_R.prepareCarousel&&(punchgs.TweenLite.set(i.ul,{opacity:0}),_R.prepareCarousel(i,new punchgs.TimelineLite,undefined,0),i.onlyPreparedSlide=!0),setTimeout(function(){if(!m.enable||m.enable&&i.inviewport||m.enable&&!i.inviewport&&"wait"==!m.outof)swapSlide(e);else if(i.c.addClass("tp-waitforfirststart"),i.waitForFirstSlide=!0,m.presize){var t=jQuery(i.li[0]);loadImages(t,i,0,!0),waitForCurrentImages(t.find(".tp-layers"),i,function(){_R.animateTheCaptions({slide:t,opt:i,preset:!0})})}_R.manageNavigation&&_R.manageNavigation(i),i.slideamount>1&&(!m.enable||m.enable&&i.inviewport?countDown(e,i):i.waitForCountDown=!0),setTimeout(function(){e.trigger("revolution.slide.onloaded")},100)},i.startDelay),i.startDelay=0,jQuery("body").data("rs-fullScreenMode",!1),window.addEventListener("fullscreenchange",onFullScreenChange,{passive:!0}),window.addEventListener("mozfullscreenchange",onFullScreenChange,{passive:!0}),window.addEventListener("webkitfullscreenchange",onFullScreenChange,{passive:!0});var y="resize.revslider-"+e.attr("id");jQuery(window).on(y,function(){if(e==undefined)return!1;0!=jQuery("body").find(e)&&contWidthManager(i);var t=!1;if("fullscreen"==i.sliderLayout){var a=jQuery(window).height();"mobile"==i.fallbacks.ignoreHeightChanges&&_ISM||"always"==i.fallbacks.ignoreHeightChanges?(i.fallbacks.ignoreHeightChangesSize=i.fallbacks.ignoreHeightChangesSize==undefined?0:i.fallbacks.ignoreHeightChangesSize,t=a!=i.lastwindowheight&&Math.abs(a-i.lastwindowheight)>i.fallbacks.ignoreHeightChangesSize):t=a!=i.lastwindowheight}(e.outerWidth(!0)!=i.width||e.is(":hidden")||t)&&(i.lastwindowheight=jQuery(window).height(),containerResized(e,i))}),hideSliderUnder(e,i),contWidthManager(i),i.fallbacks.disableFocusListener||"true"==i.fallbacks.disableFocusListener||!0===i.fallbacks.disableFocusListener||(e.addClass("rev_redraw_on_blurfocus"),tabBlurringCheck())}},cArray=function(e,i){if(!jQuery.isArray(e)){t=e;(e=new Array).push(t)}if(e.length0&&a.hasClass("active-revslide")||a.hasClass("processing-revslide")||n.length>0)&&(t.data("animdirection","in"),_R.playAnimationFrame&&_R.playAnimationFrame({caption:t,opt:i,frame:"frame_0",triggerdirection:"in",triggerframein:"frame_0",triggerframeout:"frame_999"}),t.data("triggerstate","on"))})}),i.c.on("tp-mouseleft",function(){i.layersonhover&&jQuery.each(i.layersonhover,function(e,t){t.data("animdirection","out"),t.data("triggered",!0),t.data("triggerstate","off"),_R.stopVideo&&_R.stopVideo(t,i),_R.playAnimationFrame&&_R.playAnimationFrame({caption:t,opt:i,frame:"frame_999",triggerdirection:"out",triggerframein:"frame_0",triggerframeout:"frame_999"})})}),i.layersonhover=new Array),i.layersonhover.push(e))},contWidthManager=function(e){var i=_R.getHorizontalOffset(e.c,"left");if("auto"==e.sliderLayout||"fullscreen"===e.sliderLayout&&"on"==e.fullScreenAutoWidth)"fullscreen"==e.sliderLayout&&"on"==e.fullScreenAutoWidth?punchgs.TweenLite.set(e.ul,{left:0,width:e.c.width()}):punchgs.TweenLite.set(e.ul,{left:i,width:e.c.width()-_R.getHorizontalOffset(e.c,"both")});else{var t=Math.ceil(e.c.closest(".forcefullwidth_wrapper_tp_banner").offset().left-i);punchgs.TweenLite.set(e.c.parent(),{left:0-t+"px",width:jQuery(window).width()-_R.getHorizontalOffset(e.c,"both")})}e.slayers&&"fullwidth"!=e.sliderLayout&&"fullscreen"!=e.sliderLayout&&punchgs.TweenLite.set(e.slayers,{left:i})},cv=function(e,i){return e===undefined?i:e},hideSliderUnder=function(e,i,t){var a=e.parent();jQuery(window).width()0&&_R.animateTheCaptions({slide:e.find(".active-revslide"),opt:i,recall:!0}),"on"==a.data("kenburns")&&_R.startKenBurn(a,i,a.data("kbtl")!==undefined?a.data("kbtl").progress():0),"on"==t.data("kenburns")&&_R.startKenBurn(t,i,t.data("kbtl")!==undefined?t.data("kbtl").progress():0),_R.animateTheCaptions&&e.find(".processing-revslide").length>0&&_R.animateTheCaptions({slide:e.find(".processing-revslide"),opt:i,recall:!0}),_R.manageNavigation&&_R.manageNavigation(i)}e.trigger("revolution.slide.afterdraw")},setScale=function(e){e.bw=e.width/e.gridwidth[e.curWinRange],e.bh=e.height/e.gridheight[e.curWinRange],e.bh>e.bw?e.bh=e.bw:e.bw=e.bh,(e.bh>1||e.bw>1)&&(e.bw=1,e.bh=1)},prepareSlides=function(e,i){if(e.find(".tp-caption").each(function(){var e=jQuery(this);e.data("transition")!==undefined&&e.addClass(e.data("transition"))}),i.ul.css({overflow:"hidden",width:"100%",height:"100%",maxHeight:e.parent().css("maxHeight")}),"on"==i.autoHeight&&(i.ul.css({overflow:"hidden",width:"100%",height:"100%",maxHeight:"none"}),e.css({maxHeight:"none"}),e.parent().css({maxHeight:"none"})),i.allli.each(function(e){var t=jQuery(this),a=t.data("originalindex");(i.startWithSlide!=undefined&&a==i.startWithSlide||i.startWithSlide===undefined&&0==e)&&t.addClass("next-revslide"),t.css({width:"100%",height:"100%",overflow:"hidden"})}),"carousel"===i.sliderType){i.ul.css({overflow:"visible"}).wrap('
');var t='
';i.c.parent().prepend(t),i.c.parent().append(t),_R.prepareCarousel(i)}e.parent().css({overflow:"visible"}),i.allli.find(">img").each(function(e){var t=jQuery(this),a=t.closest("li"),n=a.find(".rs-background-video-layer");n.addClass("defaultvid").css({zIndex:30}),t.addClass("defaultimg"),"on"==i.fallbacks.panZoomDisableOnMobile&&_ISM&&(t.data("kenburns","off"),t.data("bgfit","cover"));var r=a.data("mediafilter");r="none"===r||r===undefined?"":r,t.wrap('
'),n.appendTo(a.find(".slotholder"));var o=t.data();t.closest(".slotholder").data(o),n.length>0&&o.bgparallax!=undefined&&(n.data("bgparallax",o.bgparallax),n.data("showcoveronpause","on")),"none"!=i.dottedOverlay&&i.dottedOverlay!=undefined&&t.closest(".slotholder").append('
');var s=t.attr("src");o.src=s,o.bgfit=o.bgfit||"cover",o.bgrepeat=o.bgrepeat||"no-repeat",o.bgposition=o.bgposition||"center center";t.closest(".slotholder");var l=t.data("bgcolor"),d="";d=l!==undefined&&l.indexOf("gradient")>=0?'"background:'+l+';width:100%;height:100%;"':'"background-color:'+l+";background-repeat:"+o.bgrepeat+";background-image:url("+s+");background-size:"+o.bgfit+";background-position:"+o.bgposition+';width:100%;height:100%;"',t.data("mediafilter",r),r="on"===t.data("kenburns")?"":r;var u=jQuery('
')}),i.allslotholder=i.c.find(".slotholder_fadeoutwrap"))},removeSlots=function(e,i,t,a){i.removePrepare=i.removePrepare+a,t.find(".slot, .slot-circle-wrapper").each(function(){jQuery(this).remove()}),i.transition=0,i.removePrepare=0},cutParams=function(e){var i=e;return e!=undefined&&e.length>0&&(i=e.split("?")[0]),i},relativeRedir=function(e){return location.pathname.replace(/(.*)\/[^/]*/,"$1/"+e)},abstorel=function(e,i){var t=e.split("/"),a=i.split("/");t.pop();for(var n=0;n0&&(s=o),t.data("ww",o),t.data("hh",s)}else"svg"==r.type&&"loaded"==r.progress&&(t.append('
'),t.find(".tp-svg-innercontainer").append(r.innerHTML));t.data("loaded",!0)}if(r&&r.progress&&r.progress.match(/inprogress|inload|prepared/g)&&(!r.error&&jQuery.now()-t.data("start-to-load")<5e3?a=!0:(r.progress="failed",r.reported_img||(r.reported_img=!0,console.warn(n+" Could not be loaded !")))),1==i.youtubeapineeded&&(!window.YT||YT.Player==undefined)&&(a=!0,jQuery.now()-i.youtubestarttime>5e3&&1!=i.youtubewarning)){i.youtubewarning=!0;l="YouTube Api Could not be loaded !";"https:"===location.protocol&&(l+=" Please Check and Renew SSL Certificate !"),console.error(l),i.c.append(''+l+"
")}if(1==i.vimeoapineeded&&!window.Froogaloop&&(a=!0,jQuery.now()-i.vimeostarttime>5e3&&1!=i.vimeowarning)){i.vimeowarning=!0;var l="Vimeo Froogaloop Api Could not be loaded !";"https:"===location.protocol&&(l+=" Please Check and Renew SSL Certificate !"),console.error(l),i.c.append(''+l+"
")}}),!_ISM&&i.audioqueue&&i.audioqueue.length>0&&jQuery.each(i.audioqueue,function(e,i){i.status&&"prepared"===i.status&&jQuery.now()-i.start0)return i.waitWithSwapSlide=setTimeout(function(){swapSlide(e)},150),!1;var t=e.find(".active-revslide"),a=e.find(".next-revslide"),n=a.find(".defaultimg");if("carousel"!==i.sliderType||i.carousel.fadein||(punchgs.TweenLite.to(i.ul,1,{opacity:1}),i.carousel.fadein=!0),a.index()===t.index()&&!0!==i.onlyPreparedSlide)return a.removeClass("next-revslide"),!1;!0===i.onlyPreparedSlide&&(i.onlyPreparedSlide=!1,jQuery(i.li[0]).addClass("processing-revslide")),a.removeClass("next-revslide").addClass("processing-revslide"),-1===a.index()&&"carousel"===i.sliderType&&(a=jQuery(i.li[0])),a.data("slide_on_focus_amount",a.data("slide_on_focus_amount")+1||1),"on"==i.stopLoop&&a.index()==i.lastslidetoshow-1&&(e.find(".tp-bannertimer").css({visibility:"hidden"}),e.trigger("revolution.slide.onstop"),i.noloopanymore=1),a.index()===i.slideamount-1&&(i.looptogo=i.looptogo-1,i.looptogo<=0&&(i.stopLoop="on")),i.tonpause=!0,e.trigger("stoptimer"),i.cd=0,"off"===i.spinner&&(i.loader!==undefined?i.loader.css({display:"none"}):i.loadertimer=setTimeout(function(){i.loader!==undefined&&i.loader.css({display:"block"})},50)),loadImages(a,i,1),_R.preLoadAudio&&_R.preLoadAudio(a,i,1),waitForCurrentImages(a,i,function(){a.find(".rs-background-video-layer").each(function(){var e=jQuery(this);e.hasClass("HasListener")||(e.data("bgvideo",1),_R.manageVideoLayer&&_R.manageVideoLayer(e,i)),0==e.find(".rs-fullvideo-cover").length&&e.append('
')}),swapSlideProgress(n,e)})},swapSlideProgress=function(e,i){var t=i.find(".active-revslide"),a=i.find(".processing-revslide"),n=t.find(".slotholder"),r=a.find(".slotholder"),o=i[0].opt;o.tonpause=!1,o.cd=0,clearTimeout(o.loadertimer),o.loader!==undefined&&o.loader.css({display:"none"}),_R.setSize(o),_R.slotSize(e,o),_R.manageNavigation&&_R.manageNavigation(o);var s={};s.nextslide=a,s.currentslide=t,i.trigger("revolution.slide.onbeforeswap",s),o.transition=1,o.videoplaying=!1,a.data("delay")!=undefined?(o.cd=0,o.delay=a.data("delay")):o.delay=o.origcd,"true"==a.data("ssop")||!0===a.data("ssop")?o.ssop=!0:o.ssop=!1,i.trigger("nulltimer");var l=t.index(),d=a.index();o.sdir=do.rowzones.length?o.rowzones.length:p),o.rowzones!=undefined&&o.rowzones.length>0&&o.rowzones[p]!=undefined&&p>=0&&p<=o.rowzones.length&&o.rowzones[p].length>0&&_R.setSize(o)},removeAllListeners=function(e,i){e.children().each(function(){try{jQuery(this).die("click")}catch(e){}try{jQuery(this).die("mouseenter")}catch(e){}try{jQuery(this).die("mouseleave")}catch(e){}try{jQuery(this).unbind("hover")}catch(e){}});try{e.die("click","mouseenter","mouseleave")}catch(e){}clearInterval(i.cdint),e=null},countDown=function(e,i){i.cd=0,i.loop=0,i.stopAfterLoops!=undefined&&i.stopAfterLoops>-1?i.looptogo=i.stopAfterLoops:i.looptogo=9999999,i.stopAtSlide!=undefined&&i.stopAtSlide>-1?i.lastslidetoshow=i.stopAtSlide:i.lastslidetoshow=999,i.stopLoop="off",0==i.looptogo&&(i.stopLoop="on");var t=e.find(".tp-bannertimer");e.on("stoptimer",function(){var e=jQuery(this).find(".tp-bannertimer");e[0].tween.pause(),"on"==i.disableProgressBar&&e.css({visibility:"hidden"}),i.sliderstatus="paused",_R.unToggleState(i.slidertoggledby)}),e.on("starttimer",function(){i.forcepause_viatoggle||(1!=i.conthover&&1!=i.videoplaying&&i.width>i.hideSliderAtLimit&&1!=i.tonpause&&1!=i.overnav&&1!=i.ssop&&(1===i.noloopanymore||i.viewPort.enable&&!i.inviewport||(t.css({visibility:"visible"}),t[0].tween.resume(),i.sliderstatus="playing")),"on"==i.disableProgressBar&&t.css({visibility:"hidden"}),_R.toggleState(i.slidertoggledby))}),e.on("restarttimer",function(){if(!i.forcepause_viatoggle){var e=jQuery(this).find(".tp-bannertimer");if(i.mouseoncontainer&&"on"==i.navigation.onHoverStop&&!_ISM)return!1;1===i.noloopanymore||i.viewPort.enable&&!i.inviewport||1==i.ssop||(e.css({visibility:"visible"}),e[0].tween.kill(),e[0].tween=punchgs.TweenLite.fromTo(e,i.delay/1e3,{width:"0%"},{force3D:"auto",width:"100%",ease:punchgs.Linear.easeNone,onComplete:a,delay:1}),i.sliderstatus="playing"),"on"==i.disableProgressBar&&e.css({visibility:"hidden"}),_R.toggleState(i.slidertoggledby)}}),e.on("nulltimer",function(){t[0].tween.kill(),t[0].tween=punchgs.TweenLite.fromTo(t,i.delay/1e3,{width:"0%"},{force3D:"auto",width:"100%",ease:punchgs.Linear.easeNone,onComplete:a,delay:1}),t[0].tween.pause(0),"on"==i.disableProgressBar&&t.css({visibility:"hidden"}),i.sliderstatus="paused"});var a=function(){0==jQuery("body").find(e).length&&(removeAllListeners(e,i),clearInterval(i.cdint)),e.trigger("revolution.slide.slideatend"),1==e.data("conthover-changed")&&(i.conthover=e.data("conthover"),e.data("conthover-changed",0)),_R.callingNewSlide(e,1)};t[0].tween=punchgs.TweenLite.fromTo(t,i.delay/1e3,{width:"0%"},{force3D:"auto",width:"100%",ease:punchgs.Linear.easeNone,onComplete:a,delay:1}),i.slideamount>1&&(0!=i.stopAfterLoops||1!=i.stopAtSlide)?e.trigger("starttimer"):(i.noloopanymore=1,e.trigger("nulltimer")),e.on("tp-mouseenter",function(){i.mouseoncontainer=!0,"on"!=i.navigation.onHoverStop||_ISM||(e.trigger("stoptimer"),e.trigger("revolution.slide.onpause"))}),e.on("tp-mouseleft",function(){i.mouseoncontainer=!1,1!=e.data("conthover")&&"on"==i.navigation.onHoverStop&&(1==i.viewPort.enable&&i.inviewport||0==i.viewPort.enable)&&(e.trigger("revolution.slide.onresume"),e.trigger("starttimer"))})},vis=function(){var e,i,t={hidden:"visibilitychange",webkitHidden:"webkitvisibilitychange",mozHidden:"mozvisibilitychange",msHidden:"msvisibilitychange"};for(e in t)if(e in document){i=t[e];break}return function(t){return t&&document.addEventListener(i,t,{pasive:!0}),!document[e]}}(),restartOnFocus=function(){jQuery(".rev_redraw_on_blurfocus").each(function(){var e=jQuery(this)[0].opt;if(e==undefined||e.c==undefined||0===e.c.length)return!1;1!=e.windowfocused&&(e.windowfocused=!0,punchgs.TweenLite.delayedCall(.3,function(){"on"==e.fallbacks.nextSlideOnWindowFocus&&e.c.revnext(),e.c.revredraw(),"playing"==e.lastsliderstatus&&e.c.revresume()}))})},lastStatBlur=function(){jQuery(".rev_redraw_on_blurfocus").each(function(){var e=jQuery(this)[0].opt;e.windowfocused=!1,e.lastsliderstatus=e.sliderstatus,e.c.revpause();var i=e.c.find(".active-revslide .slotholder"),t=e.c.find(".processing-revslide .slotholder");"on"==t.data("kenburns")&&_R.stopKenBurn(t,e),"on"==i.data("kenburns")&&_R.stopKenBurn(i,e)})},tabBlurringCheck=function(){var e=document.documentMode===undefined,i=window.chrome;1!==jQuery("body").data("revslider_focus_blur_listener")&&(jQuery("body").data("revslider_focus_blur_listener",1),e&&!i?jQuery(window).on("focusin",function(){restartOnFocus()}).on("focusout",function(){lastStatBlur()}):window.addEventListener?(window.addEventListener("focus",function(e){restartOnFocus()},{capture:!1,passive:!0}),window.addEventListener("blur",function(e){lastStatBlur()},{capture:!1,passive:!0})):(window.attachEvent("focus",function(e){restartOnFocus()}),window.attachEvent("blur",function(e){lastStatBlur()})))},getUrlVars=function(e){for(var i,t=[],a=window.location.href.slice(window.location.href.indexOf(e)+1).split("_"),n=0;n0){return}var bf=be.originalEvent?be.originalEvent:be;var bd,bg=bf.touches,bc=bg?bg[0]:bf;aa=g;if(bg){X=bg.length}else{be.preventDefault()}ah=0;aQ=null;aK=null;ac=0;a2=0;a0=0;H=1;ar=0;aR=ak();N=ab();S();if(!bg||(X===aw.fingers||aw.fingers===i)||aY()){aj(0,bc);U=au();if(X==2){aj(1,bg[1]);a2=a0=av(aR[0].start,aR[1].start)}if(aw.swipeStatus||aw.pinchStatus){bd=P(bf,aa)}}else{bd=false}if(bd===false){aa=q;P(bf,aa);return bd}else{if(aw.hold){ag=setTimeout(f.proxy(function(){aS.trigger("hold",[bf.target]);if(aw.hold){bd=aw.hold.call(aS,bf,bf.target)}},this),aw.longTapThreshold)}ap(true)}return null}function a4(bf){var bi=bf.originalEvent?bf.originalEvent:bf;if(aa===h||aa===q||an()){return}var be,bj=bi.touches,bd=bj?bj[0]:bi;var bg=aI(bd);a3=au();if(bj){X=bj.length}if(aw.hold){clearTimeout(ag)}aa=k;if(X==2){if(a2==0){aj(1,bj[1]);a2=a0=av(aR[0].start,aR[1].start)}else{aI(bj[1]);a0=av(aR[0].end,aR[1].end);aK=at(aR[0].end,aR[1].end)}H=a8(a2,a0);ar=Math.abs(a2-a0)}if((X===aw.fingers||aw.fingers===i)||!bj||aY()){aQ=aM(bg.start,bg.end);am(bf,aQ);ah=aT(bg.start,bg.end);ac=aN();aJ(aQ,ah);if(aw.swipeStatus||aw.pinchStatus){be=P(bi,aa)}if(!aw.triggerOnTouchEnd||aw.triggerOnTouchLeave){var bc=true;if(aw.triggerOnTouchLeave){var bh=aZ(this);bc=F(bg.end,bh)}if(!aw.triggerOnTouchEnd&&bc){aa=aD(k)}else{if(aw.triggerOnTouchLeave&&!bc){aa=aD(h)}}if(aa==q||aa==h){P(bi,aa)}}}else{aa=q;P(bi,aa)}if(be===false){aa=q;P(bi,aa)}}function M(bc){var bd=bc.originalEvent?bc.originalEvent:bc,be=bd.touches;if(be){if(be.length){G();return true}}if(an()){X=ae}a3=au();ac=aN();if(bb()||!ao()){aa=q;P(bd,aa)}else{if(aw.triggerOnTouchEnd||(aw.triggerOnTouchEnd==false&&aa===k)){bc.preventDefault();aa=h;P(bd,aa)}else{if(!aw.triggerOnTouchEnd&&a7()){aa=h;aG(bd,aa,B)}else{if(aa===k){aa=q;P(bd,aa)}}}}ap(false);return null}function ba(){X=0;a3=0;U=0;a2=0;a0=0;H=1;S();ap(false)}function L(bc){var bd=bc.originalEvent?bc.originalEvent:bc;if(aw.triggerOnTouchLeave){aa=aD(h);P(bd,aa)}}function aL(){aS.unbind(K,aO);aS.unbind(aE,ba);aS.unbind(az,a4);aS.unbind(V,M);if(T){aS.unbind(T,L)}ap(false)}function aD(bg){var bf=bg;var be=aB();var bd=ao();var bc=bb();if(!be||bc){bf=q}else{if(bd&&bg==k&&(!aw.triggerOnTouchEnd||aw.triggerOnTouchLeave)){bf=h}else{if(!bd&&bg==h&&aw.triggerOnTouchLeave){bf=q}}}return bf}function P(be,bc){var bd,bf=be.touches;if((J()||W())||(Q()||aY())){if(J()||W()){bd=aG(be,bc,l)}if((Q()||aY())&&bd!==false){bd=aG(be,bc,t)}}else{if(aH()&&bd!==false){bd=aG(be,bc,j)}else{if(aq()&&bd!==false){bd=aG(be,bc,b)}else{if(ai()&&bd!==false){bd=aG(be,bc,B)}}}}if(bc===q){ba(be)}if(bc===h){if(bf){if(!bf.length){ba(be)}}else{ba(be)}}return bd}function aG(bf,bc,be){var bd;if(be==l){aS.trigger("swipeStatus",[bc,aQ||null,ah||0,ac||0,X,aR]);if(aw.swipeStatus){bd=aw.swipeStatus.call(aS,bf,bc,aQ||null,ah||0,ac||0,X,aR);if(bd===false){return false}}if(bc==h&&aW()){aS.trigger("swipe",[aQ,ah,ac,X,aR]);if(aw.swipe){bd=aw.swipe.call(aS,bf,aQ,ah,ac,X,aR);if(bd===false){return false}}switch(aQ){case p:aS.trigger("swipeLeft",[aQ,ah,ac,X,aR]);if(aw.swipeLeft){bd=aw.swipeLeft.call(aS,bf,aQ,ah,ac,X,aR)}break;case o:aS.trigger("swipeRight",[aQ,ah,ac,X,aR]);if(aw.swipeRight){bd=aw.swipeRight.call(aS,bf,aQ,ah,ac,X,aR)}break;case e:aS.trigger("swipeUp",[aQ,ah,ac,X,aR]);if(aw.swipeUp){bd=aw.swipeUp.call(aS,bf,aQ,ah,ac,X,aR)}break;case x:aS.trigger("swipeDown",[aQ,ah,ac,X,aR]);if(aw.swipeDown){bd=aw.swipeDown.call(aS,bf,aQ,ah,ac,X,aR)}break}}}if(be==t){aS.trigger("pinchStatus",[bc,aK||null,ar||0,ac||0,X,H,aR]);if(aw.pinchStatus){bd=aw.pinchStatus.call(aS,bf,bc,aK||null,ar||0,ac||0,X,H,aR);if(bd===false){return false}}if(bc==h&&a9()){switch(aK){case c:aS.trigger("pinchIn",[aK||null,ar||0,ac||0,X,H,aR]);if(aw.pinchIn){bd=aw.pinchIn.call(aS,bf,aK||null,ar||0,ac||0,X,H,aR)}break;case A:aS.trigger("pinchOut",[aK||null,ar||0,ac||0,X,H,aR]);if(aw.pinchOut){bd=aw.pinchOut.call(aS,bf,aK||null,ar||0,ac||0,X,H,aR)}break}}}if(be==B){if(bc===q||bc===h){clearTimeout(aX);clearTimeout(ag);if(Z()&&!I()){O=au();aX=setTimeout(f.proxy(function(){O=null;aS.trigger("tap",[bf.target]);if(aw.tap){bd=aw.tap.call(aS,bf,bf.target)}},this),aw.doubleTapThreshold)}else{O=null;aS.trigger("tap",[bf.target]);if(aw.tap){bd=aw.tap.call(aS,bf,bf.target)}}}}else{if(be==j){if(bc===q||bc===h){clearTimeout(aX);O=null;aS.trigger("doubletap",[bf.target]);if(aw.doubleTap){bd=aw.doubleTap.call(aS,bf,bf.target)}}}else{if(be==b){if(bc===q||bc===h){clearTimeout(aX);O=null;aS.trigger("longtap",[bf.target]);if(aw.longTap){bd=aw.longTap.call(aS,bf,bf.target)}}}}}return bd}function ao(){var bc=true;if(aw.threshold!==null){bc=ah>=aw.threshold}return bc}function bb(){var bc=false;if(aw.cancelThreshold!==null&&aQ!==null){bc=(aU(aQ)-ah)>=aw.cancelThreshold}return bc}function af(){if(aw.pinchThreshold!==null){return ar>=aw.pinchThreshold}return true}function aB(){var bc;if(aw.maxTimeThreshold){if(ac>=aw.maxTimeThreshold){bc=false}else{bc=true}}else{bc=true}return bc}function am(bc,bd){if(aw.preventDefaultEvents===false){return}if(aw.allowPageScroll===m){bc.preventDefault()}else{var be=aw.allowPageScroll===s;switch(bd){case p:if((aw.swipeLeft&&be)||(!be&&aw.allowPageScroll!=E)){bc.preventDefault()}break;case o:if((aw.swipeRight&&be)||(!be&&aw.allowPageScroll!=E)){bc.preventDefault()}break;case e:if((aw.swipeUp&&be)||(!be&&aw.allowPageScroll!=u)){bc.preventDefault()}break;case x:if((aw.swipeDown&&be)||(!be&&aw.allowPageScroll!=u)){bc.preventDefault()}break}}}function a9(){var bd=aP();var bc=Y();var be=af();return bd&&bc&&be}function aY(){return !!(aw.pinchStatus||aw.pinchIn||aw.pinchOut)}function Q(){return !!(a9()&&aY())}function aW(){var bf=aB();var bh=ao();var be=aP();var bc=Y();var bd=bb();var bg=!bd&&bc&&be&&bh&&bf;return bg}function W(){return !!(aw.swipe||aw.swipeStatus||aw.swipeLeft||aw.swipeRight||aw.swipeUp||aw.swipeDown)}function J(){return !!(aW()&&W())}function aP(){return((X===aw.fingers||aw.fingers===i)||!a)}function Y(){return aR[0].end.x!==0}function a7(){return !!(aw.tap)}function Z(){return !!(aw.doubleTap)}function aV(){return !!(aw.longTap)}function R(){if(O==null){return false}var bc=au();return(Z()&&((bc-O)<=aw.doubleTapThreshold))}function I(){return R()}function ay(){return((X===1||!a)&&(isNaN(ah)||ahaw.longTapThreshold)&&(ah=0)){return p}else{if((be<=360)&&(be>=315)){return p}else{if((be>=135)&&(be<=225)){return o}else{if((be>45)&&(be<135)){return x}else{return e}}}}}function au(){var bc=new Date();return bc.getTime()}function aZ(bc){bc=f(bc);var be=bc.offset();var bd={left:be.left,right:be.left+bc.outerWidth(),top:be.top,bottom:be.top+bc.outerHeight()};return bd}function F(bc,bd){return(bc.x>bd.left&&bc.xbd.top&&bc.y-1;)(l=q[f[s]]||new r(f[s],[])).gsClass?(i[s]=l.gsClass,t--):j&&l.sc.push(this);if(0===t&&g){if(m=("com.greensock."+d).split("."),n=m.pop(),o=k(m.join("."))[n]=this.gsClass=g.apply(g,i),h)if(e[n]=c[n]=o,p="undefined"!=typeof module&&module.exports,!p&&"function"==typeof define&&define.amd)define((a.GreenSockAMDPath?a.GreenSockAMDPath+"/":"")+d.split(".").pop(),[],function(){return o});else if(p)if(d===b){module.exports=c[b]=o;for(s in c)o[s]=c[s]}else c[b]&&(c[b][n]=o);for(s=0;s-1;)for(f=i[j],e=d?t("easing."+f,null,!0):l.easing[f]||{},g=k.length;--g>-1;)h=k[g],w[f+"."+h]=w[h+f]=e[h]=a.getRatio?a:a[h]||new a};for(h=v.prototype,h._calcEnd=!1,h.getRatio=function(a){if(this._func)return this._params[0]=a,this._func.apply(null,this._params);var b=this._type,c=this._power,d=1===b?1-a:2===b?a:.5>a?2*a:2*(1-a);return 1===c?d*=d:2===c?d*=d*d:3===c?d*=d*d*d:4===c&&(d*=d*d*d*d),1===b?1-d:2===b?d:.5>a?d/2:1-d/2},f=["Linear","Quad","Cubic","Quart","Quint,Strong"],g=f.length;--g>-1;)h=f[g]+",Power"+g,x(new v(null,null,1,g),h,"easeOut",!0),x(new v(null,null,2,g),h,"easeIn"+(0===g?",easeNone":"")),x(new v(null,null,3,g),h,"easeInOut");w.linear=l.easing.Linear.easeIn,w.swing=l.easing.Quad.easeInOut;var y=t("events.EventDispatcher",function(a){this._listeners={},this._eventTarget=a||this});h=y.prototype,h.addEventListener=function(a,b,c,d,e){e=e||0;var f,g,h=this._listeners[a],k=0;for(this!==i||j||i.wake(),null==h&&(this._listeners[a]=h=[]),g=h.length;--g>-1;)f=h[g],f.c===b&&f.s===c?h.splice(g,1):0===k&&f.pr-1;)if(d[c].c===b)return void d.splice(c,1)},h.dispatchEvent=function(a){var b,c,d,e=this._listeners[a];if(e)for(b=e.length,b>1&&(e=e.slice(0)),c=this._eventTarget;--b>-1;)d=e[b],d&&(d.up?d.c.call(d.s||c,{type:a,target:c}):d.c.call(d.s||c))};var z=a.requestAnimationFrame,A=a.cancelAnimationFrame,B=Date.now||function(){return(new Date).getTime()},C=B();for(f=["ms","moz","webkit","o"],g=f.length;--g>-1&&!z;)z=a[f[g]+"RequestAnimationFrame"],A=a[f[g]+"CancelAnimationFrame"]||a[f[g]+"CancelRequestAnimationFrame"];t("Ticker",function(a,b){var c,e,f,g,h,k=this,l=B(),n=b!==!1&&z?"auto":!1,p=500,q=33,r="tick",s=function(a){var b,d,i=B()-C;i>p&&(l+=i-q),C+=i,k.time=(C-l)/1e3,b=k.time-h,(!c||b>0||a===!0)&&(k.frame++,h+=b+(b>=g?.004:g-b),d=!0),a!==!0&&(f=e(s)),d&&k.dispatchEvent(r)};y.call(k),k.time=k.frame=0,k.tick=function(){s(!0)},k.lagSmoothing=function(a,b){p=a||1/m,q=Math.min(b,p,0)},k.sleep=function(){null!=f&&(n&&A?A(f):clearTimeout(f),e=o,f=null,k===i&&(j=!1))},k.wake=function(a){null!==f?k.sleep():a?l+=-C+(C=B()):k.frame>10&&(C=B()-p+5),e=0===c?o:n&&z?z:function(a){return setTimeout(a,1e3*(h-k.time)+1|0)},k===i&&(j=!0),s(2)},k.fps=function(a){return arguments.length?(c=a,g=1/(c||60),h=this.time+g,void k.wake()):c},k.useRAF=function(a){return arguments.length?(k.sleep(),n=a,void k.fps(c)):n},k.fps(a),setTimeout(function(){"auto"===n&&k.frame<5&&"hidden"!==d.visibilityState&&k.useRAF(!1)},1500)}),h=l.Ticker.prototype=new l.events.EventDispatcher,h.constructor=l.Ticker;var D=t("core.Animation",function(a,b){if(this.vars=b=b||{},this._duration=this._totalDuration=a||0,this._delay=Number(b.delay)||0,this._timeScale=1,this._active=b.immediateRender===!0,this.data=b.data,this._reversed=b.reversed===!0,W){j||i.wake();var c=this.vars.useFrames?V:W;c.add(this,c._time),this.vars.paused&&this.paused(!0)}});i=D.ticker=new l.Ticker,h=D.prototype,h._dirty=h._gc=h._initted=h._paused=!1,h._totalTime=h._time=0,h._rawPrevTime=-1,h._next=h._last=h._onUpdate=h._timeline=h.timeline=null,h._paused=!1;var E=function(){j&&B()-C>2e3&&i.wake(),setTimeout(E,2e3)};E(),h.play=function(a,b){return null!=a&&this.seek(a,b),this.reversed(!1).paused(!1)},h.pause=function(a,b){return null!=a&&this.seek(a,b),this.paused(!0)},h.resume=function(a,b){return null!=a&&this.seek(a,b),this.paused(!1)},h.seek=function(a,b){return this.totalTime(Number(a),b!==!1)},h.restart=function(a,b){return this.reversed(!1).paused(!1).totalTime(a?-this._delay:0,b!==!1,!0)},h.reverse=function(a,b){return null!=a&&this.seek(a||this.totalDuration(),b),this.reversed(!0).paused(!1)},h.render=function(a,b,c){},h.invalidate=function(){return this._time=this._totalTime=0,this._initted=this._gc=!1,this._rawPrevTime=-1,(this._gc||!this.timeline)&&this._enabled(!0),this},h.isActive=function(){var a,b=this._timeline,c=this._startTime;return!b||!this._gc&&!this._paused&&b.isActive()&&(a=b.rawTime(!0))>=c&&a-1;)"{self}"===a[b]&&(c[b]=this);return c},h._callback=function(a){var b=this.vars,c=b[a],d=b[a+"Params"],e=b[a+"Scope"]||b.callbackScope||this,f=d?d.length:0;switch(f){case 0:c.call(e);break;case 1:c.call(e,d[0]);break;case 2:c.call(e,d[0],d[1]);break;default:c.apply(e,d)}},h.eventCallback=function(a,b,c,d){if("on"===(a||"").substr(0,2)){var e=this.vars;if(1===arguments.length)return e[a];null==b?delete e[a]:(e[a]=b,e[a+"Params"]=p(c)&&-1!==c.join("").indexOf("{self}")?this._swapSelfInParams(c):c,e[a+"Scope"]=d),"onUpdate"===a&&(this._onUpdate=b)}return this},h.delay=function(a){return arguments.length?(this._timeline.smoothChildTiming&&this.startTime(this._startTime+a-this._delay),this._delay=a,this):this._delay},h.duration=function(a){return arguments.length?(this._duration=this._totalDuration=a,this._uncache(!0),this._timeline.smoothChildTiming&&this._time>0&&this._timethis._duration?this._duration:a,b)):this._time},h.totalTime=function(a,b,c){if(j||i.wake(),!arguments.length)return this._totalTime;if(this._timeline){if(0>a&&!c&&(a+=this.totalDuration()),this._timeline.smoothChildTiming){this._dirty&&this.totalDuration();var d=this._totalDuration,e=this._timeline;if(a>d&&!c&&(a=d),this._startTime=(this._paused?this._pauseTime:e._time)-(this._reversed?d-a:a)/this._timeScale,e._dirty||this._uncache(!1),e._timeline)for(;e._timeline;)e._timeline._time!==(e._startTime+e._totalTime)/e._timeScale&&e.totalTime(e._totalTime,!0),e=e._timeline}this._gc&&this._enabled(!0,!1),(this._totalTime!==a||0===this._duration)&&(J.length&&Y(),this.render(a,b,!1),J.length&&Y())}return this},h.progress=h.totalProgress=function(a,b){var c=this.duration();return arguments.length?this.totalTime(c*a,b):c?this._time/c:this.ratio},h.startTime=function(a){return arguments.length?(a!==this._startTime&&(this._startTime=a,this.timeline&&this.timeline._sortChildren&&this.timeline.add(this,a-this._delay)),this):this._startTime},h.endTime=function(a){return this._startTime+(0!=a?this.totalDuration():this.duration())/this._timeScale},h.timeScale=function(a){if(!arguments.length)return this._timeScale;if(a=a||m,this._timeline&&this._timeline.smoothChildTiming){var b=this._pauseTime,c=b||0===b?b:this._timeline.totalTime();this._startTime=c-(c-this._startTime)*this._timeScale/a}return this._timeScale=a,this._uncache(!1)},h.reversed=function(a){return arguments.length?(a!=this._reversed&&(this._reversed=a,this.totalTime(this._timeline&&!this._timeline.smoothChildTiming?this.totalDuration()-this._totalTime:this._totalTime,!0)),this):this._reversed},h.paused=function(a){if(!arguments.length)return this._paused;var b,c,d=this._timeline;return a!=this._paused&&d&&(j||a||i.wake(),b=d.rawTime(),c=b-this._pauseTime,!a&&d.smoothChildTiming&&(this._startTime+=c,this._uncache(!1)),this._pauseTime=a?b:null,this._paused=a,this._active=this.isActive(),!a&&0!==c&&this._initted&&this.duration()&&(b=d.smoothChildTiming?this._totalTime:(b-this._startTime)/this._timeScale,this.render(b,b===this._totalTime,!0))),this._gc&&!a&&this._enabled(!0,!1),this};var F=t("core.SimpleTimeline",function(a){D.call(this,0,a),this.autoRemoveChildren=this.smoothChildTiming=!0});h=F.prototype=new D,h.constructor=F,h.kill()._gc=!1,h._first=h._last=h._recent=null,h._sortChildren=!1,h.add=h.insert=function(a,b,c,d){var e,f;if(a._startTime=Number(b||0)+a._delay,a._paused&&this!==a._timeline&&(a._pauseTime=a._startTime+(this.rawTime()-a._startTime)/a._timeScale),a.timeline&&a.timeline._remove(a,!0),a.timeline=a._timeline=this,a._gc&&a._enabled(!0,!0),e=this._last,this._sortChildren)for(f=a._startTime;e&&e._startTime>f;)e=e._prev;return e?(a._next=e._next,e._next=a):(a._next=this._first,this._first=a),a._next?a._next._prev=a:this._last=a,a._prev=e,this._recent=a,this._timeline&&this._uncache(!0),this},h._remove=function(a,b){return a.timeline===this&&(b||a._enabled(!1,!0),a._prev?a._prev._next=a._next:this._first===a&&(this._first=a._next),a._next?a._next._prev=a._prev:this._last===a&&(this._last=a._prev),a._next=a._prev=a.timeline=null,a===this._recent&&(this._recent=this._last),this._timeline&&this._uncache(!0)),this},h.render=function(a,b,c){var d,e=this._first;for(this._totalTime=this._time=this._rawPrevTime=a;e;)d=e._next,(e._active||a>=e._startTime&&!e._paused)&&(e._reversed?e.render((e._dirty?e.totalDuration():e._totalDuration)-(a-e._startTime)*e._timeScale,b,c):e.render((a-e._startTime)*e._timeScale,b,c)),e=d},h.rawTime=function(){return j||i.wake(),this._totalTime};var G=t("TweenLite",function(b,c,d){if(D.call(this,c,d),this.render=G.prototype.render,null==b)throw"Cannot tween a null target.";this.target=b="string"!=typeof b?b:G.selector(b)||b;var e,f,g,h=b.jquery||b.length&&b!==a&&b[0]&&(b[0]===a||b[0].nodeType&&b[0].style&&!b.nodeType),i=this.vars.overwrite;if(this._overwrite=i=null==i?U[G.defaultOverwrite]:"number"==typeof i?i>>0:U[i],(h||b instanceof Array||b.push&&p(b))&&"number"!=typeof b[0])for(this._targets=g=n(b),this._propLookup=[],this._siblings=[],e=0;e1&&_(f,this,null,1,this._siblings[e])):(f=g[e--]=G.selector(f),"string"==typeof f&&g.splice(e+1,1)):g.splice(e--,1);else this._propLookup={},this._siblings=Z(b,this,!1),1===i&&this._siblings.length>1&&_(b,this,null,1,this._siblings);(this.vars.immediateRender||0===c&&0===this._delay&&this.vars.immediateRender!==!1)&&(this._time=-m,this.render(Math.min(0,-this._delay)))},!0),H=function(b){return b&&b.length&&b!==a&&b[0]&&(b[0]===a||b[0].nodeType&&b[0].style&&!b.nodeType)},I=function(a,b){var c,d={};for(c in a)T[c]||c in b&&"transform"!==c&&"x"!==c&&"y"!==c&&"width"!==c&&"height"!==c&&"className"!==c&&"border"!==c||!(!Q[c]||Q[c]&&Q[c]._autoCSS)||(d[c]=a[c],delete a[c]);a.css=d};h=G.prototype=new D,h.constructor=G,h.kill()._gc=!1,h.ratio=0,h._firstPT=h._targets=h._overwrittenProps=h._startAt=null,h._notifyPluginsOfEnabled=h._lazy=!1,G.version="1.19.1",G.defaultEase=h._ease=new v(null,null,1,1),G.defaultOverwrite="auto",G.ticker=i,G.autoSleep=120,G.lagSmoothing=function(a,b){i.lagSmoothing(a,b)},G.selector=a.$||a.jQuery||function(b){var c=a.$||a.jQuery;return c?(G.selector=c,c(b)):"undefined"==typeof d?b:d.querySelectorAll?d.querySelectorAll(b):d.getElementById("#"===b.charAt(0)?b.substr(1):b)};var J=[],K={},L=/(?:(-|-=|\+=)?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/gi,M=function(a){for(var b,c=this._firstPT,d=1e-6;c;)b=c.blob?1===a?this.end:a?this.join(""):this.start:c.c*a+c.s,c.m?b=c.m(b,this._target||c.t):d>b&&b>-d&&!c.blob&&(b=0),c.f?c.fp?c.t[c.p](c.fp,b):c.t[c.p](b):c.t[c.p]=b,c=c._next},N=function(a,b,c,d){var e,f,g,h,i,j,k,l=[],m=0,n="",o=0;for(l.start=a,l.end=b,a=l[0]=a+"",b=l[1]=b+"",c&&(c(l),a=l[0],b=l[1]),l.length=0,e=a.match(L)||[],f=b.match(L)||[],d&&(d._next=null,d.blob=1,l._firstPT=l._applyPT=d),i=f.length,h=0;i>h;h++)k=f[h],j=b.substr(m,b.indexOf(k,m)-m),n+=j||!h?j:",",m+=j.length,o?o=(o+1)%5:"rgba("===j.substr(-5)&&(o=1),k===e[h]||e.length<=h?n+=k:(n&&(l.push(n),n=""),g=parseFloat(e[h]),l.push(g),l._firstPT={_next:l._firstPT,t:l,p:l.length-1,s:g,c:("="===k.charAt(1)?parseInt(k.charAt(0)+"1",10)*parseFloat(k.substr(2)):parseFloat(k)-g)||0,f:0,m:o&&4>o?Math.round:0}),m+=k.length;return n+=b.substr(m),n&&l.push(n),l.setRatio=M,l},O=function(a,b,c,d,e,f,g,h,i){"function"==typeof d&&(d=d(i||0,a));var j,k=typeof a[b],l="function"!==k?"":b.indexOf("set")||"function"!=typeof a["get"+b.substr(3)]?b:"get"+b.substr(3),m="get"!==c?c:l?g?a[l](g):a[l]():a[b],n="string"==typeof d&&"="===d.charAt(1),o={t:a,p:b,s:m,f:"function"===k,pg:0,n:e||b,m:f?"function"==typeof f?f:Math.round:0,pr:0,c:n?parseInt(d.charAt(0)+"1",10)*parseFloat(d.substr(2)):parseFloat(d)-m||0};return("number"!=typeof m||"number"!=typeof d&&!n)&&(g||isNaN(m)||!n&&isNaN(d)||"boolean"==typeof m||"boolean"==typeof d?(o.fp=g,j=N(m,n?o.s+o.c:d,h||G.defaultStringFilter,o),o={t:j,p:"setRatio",s:0,c:1,f:2,pg:0,n:e||b,pr:0,m:0}):(o.s=parseFloat(m),n||(o.c=parseFloat(d)-o.s||0))),o.c?((o._next=this._firstPT)&&(o._next._prev=o),this._firstPT=o,o):void 0},P=G._internals={isArray:p,isSelector:H,lazyTweens:J,blobDif:N},Q=G._plugins={},R=P.tweenLookup={},S=0,T=P.reservedProps={ease:1,delay:1,overwrite:1,onComplete:1,onCompleteParams:1,onCompleteScope:1,useFrames:1,runBackwards:1,startAt:1,onUpdate:1,onUpdateParams:1,onUpdateScope:1,onStart:1,onStartParams:1,onStartScope:1,onReverseComplete:1,onReverseCompleteParams:1,onReverseCompleteScope:1,onRepeat:1,onRepeatParams:1,onRepeatScope:1,easeParams:1,yoyo:1,immediateRender:1,repeat:1,repeatDelay:1,data:1,paused:1,reversed:1,autoCSS:1,lazy:1,onOverwrite:1,callbackScope:1,stringFilter:1,id:1},U={none:0,all:1,auto:2,concurrent:3,allOnStart:4,preexisting:5,"true":1,"false":0},V=D._rootFramesTimeline=new F,W=D._rootTimeline=new F,X=30,Y=P.lazyRender=function(){var a,b=J.length;for(K={};--b>-1;)a=J[b],a&&a._lazy!==!1&&(a.render(a._lazy[0],a._lazy[1],!0),a._lazy=!1);J.length=0};W._startTime=i.time,V._startTime=i.frame,W._active=V._active=!0,setTimeout(Y,1),D._updateRoot=G.render=function(){var a,b,c;if(J.length&&Y(),W.render((i.time-W._startTime)*W._timeScale,!1,!1),V.render((i.frame-V._startTime)*V._timeScale,!1,!1),J.length&&Y(),i.frame>=X){X=i.frame+(parseInt(G.autoSleep,10)||120);for(c in R){for(b=R[c].tweens,a=b.length;--a>-1;)b[a]._gc&&b.splice(a,1);0===b.length&&delete R[c]}if(c=W._first,(!c||c._paused)&&G.autoSleep&&!V._first&&1===i._listeners.tick.length){for(;c&&c._paused;)c=c._next;c||i.sleep()}}},i.addEventListener("tick",D._updateRoot);var Z=function(a,b,c){var d,e,f=a._gsTweenID;if(R[f||(a._gsTweenID=f="t"+S++)]||(R[f]={target:a,tweens:[]}),b&&(d=R[f].tweens,d[e=d.length]=b,c))for(;--e>-1;)d[e]===b&&d.splice(e,1);return R[f].tweens},$=function(a,b,c,d){var e,f,g=a.vars.onOverwrite;return g&&(e=g(a,b,c,d)),g=G.onOverwrite,g&&(f=g(a,b,c,d)),e!==!1&&f!==!1},_=function(a,b,c,d,e){var f,g,h,i;if(1===d||d>=4){for(i=e.length,f=0;i>f;f++)if((h=e[f])!==b)h._gc||h._kill(null,a,b)&&(g=!0);else if(5===d)break;return g}var j,k=b._startTime+m,l=[],n=0,o=0===b._duration;for(f=e.length;--f>-1;)(h=e[f])===b||h._gc||h._paused||(h._timeline!==b._timeline?(j=j||aa(b,0,o),0===aa(h,j,o)&&(l[n++]=h)):h._startTime<=k&&h._startTime+h.totalDuration()/h._timeScale>k&&((o||!h._initted)&&k-h._startTime<=2e-10||(l[n++]=h)));for(f=n;--f>-1;)if(h=l[f],2===d&&h._kill(c,a,b)&&(g=!0),2!==d||!h._firstPT&&h._initted){if(2!==d&&!$(h,b))continue;h._enabled(!1,!1)&&(g=!0)}return g},aa=function(a,b,c){for(var d=a._timeline,e=d._timeScale,f=a._startTime;d._timeline;){if(f+=d._startTime,e*=d._timeScale,d._paused)return-100;d=d._timeline}return f/=e,f>b?f-b:c&&f===b||!a._initted&&2*m>f-b?m:(f+=a.totalDuration()/a._timeScale/e)>b+m?0:f-b-m};h._init=function(){var a,b,c,d,e,f,g=this.vars,h=this._overwrittenProps,i=this._duration,j=!!g.immediateRender,k=g.ease;if(g.startAt){this._startAt&&(this._startAt.render(-1,!0),this._startAt.kill()),e={};for(d in g.startAt)e[d]=g.startAt[d];if(e.overwrite=!1,e.immediateRender=!0,e.lazy=j&&g.lazy!==!1,e.startAt=e.delay=null,this._startAt=G.to(this.target,0,e),j)if(this._time>0)this._startAt=null;else if(0!==i)return}else if(g.runBackwards&&0!==i)if(this._startAt)this._startAt.render(-1,!0),this._startAt.kill(),this._startAt=null;else{0!==this._time&&(j=!1),c={};for(d in g)T[d]&&"autoCSS"!==d||(c[d]=g[d]);if(c.overwrite=0,c.data="isFromStart",c.lazy=j&&g.lazy!==!1,c.immediateRender=j,this._startAt=G.to(this.target,0,c),j){if(0===this._time)return}else this._startAt._init(),this._startAt._enabled(!1),this.vars.immediateRender&&(this._startAt=null)}if(this._ease=k=k?k instanceof v?k:"function"==typeof k?new v(k,g.easeParams):w[k]||G.defaultEase:G.defaultEase,g.easeParams instanceof Array&&k.config&&(this._ease=k.config.apply(k,g.easeParams)),this._easeType=this._ease._type,this._easePower=this._ease._power,this._firstPT=null,this._targets)for(f=this._targets.length,a=0;f>a;a++)this._initProps(this._targets[a],this._propLookup[a]={},this._siblings[a],h?h[a]:null,a)&&(b=!0);else b=this._initProps(this.target,this._propLookup,this._siblings,h,0);if(b&&G._onPluginEvent("_onInitAllProps",this),h&&(this._firstPT||"function"!=typeof this.target&&this._enabled(!1,!1)),g.runBackwards)for(c=this._firstPT;c;)c.s+=c.c,c.c=-c.c,c=c._next;this._onUpdate=g.onUpdate,this._initted=!0},h._initProps=function(b,c,d,e,f){var g,h,i,j,k,l;if(null==b)return!1;K[b._gsTweenID]&&Y(),this.vars.css||b.style&&b!==a&&b.nodeType&&Q.css&&this.vars.autoCSS!==!1&&I(this.vars,b);for(g in this.vars)if(l=this.vars[g],T[g])l&&(l instanceof Array||l.push&&p(l))&&-1!==l.join("").indexOf("{self}")&&(this.vars[g]=l=this._swapSelfInParams(l,this));else if(Q[g]&&(j=new Q[g])._onInitTween(b,this.vars[g],this,f)){for(this._firstPT=k={_next:this._firstPT,t:j,p:"setRatio",s:0,c:1,f:1,n:g,pg:1,pr:j._priority,m:0},h=j._overwriteProps.length;--h>-1;)c[j._overwriteProps[h]]=this._firstPT;(j._priority||j._onInitAllProps)&&(i=!0),(j._onDisable||j._onEnable)&&(this._notifyPluginsOfEnabled=!0),k._next&&(k._next._prev=k)}else c[g]=O.call(this,b,g,"get",l,g,0,null,this.vars.stringFilter,f);return e&&this._kill(e,b)?this._initProps(b,c,d,e,f):this._overwrite>1&&this._firstPT&&d.length>1&&_(b,this,c,this._overwrite,d)?(this._kill(c,b),this._initProps(b,c,d,e,f)):(this._firstPT&&(this.vars.lazy!==!1&&this._duration||this.vars.lazy&&!this._duration)&&(K[b._gsTweenID]=!0),i)},h.render=function(a,b,c){var d,e,f,g,h=this._time,i=this._duration,j=this._rawPrevTime;if(a>=i-1e-7&&a>=0)this._totalTime=this._time=i,this.ratio=this._ease._calcEnd?this._ease.getRatio(1):1,this._reversed||(d=!0,e="onComplete",c=c||this._timeline.autoRemoveChildren),0===i&&(this._initted||!this.vars.lazy||c)&&(this._startTime===this._timeline._duration&&(a=0),(0>j||0>=a&&a>=-1e-7||j===m&&"isPause"!==this.data)&&j!==a&&(c=!0,j>m&&(e="onReverseComplete")),this._rawPrevTime=g=!b||a||j===a?a:m);else if(1e-7>a)this._totalTime=this._time=0,this.ratio=this._ease._calcEnd?this._ease.getRatio(0):0,(0!==h||0===i&&j>0)&&(e="onReverseComplete",d=this._reversed),0>a&&(this._active=!1,0===i&&(this._initted||!this.vars.lazy||c)&&(j>=0&&(j!==m||"isPause"!==this.data)&&(c=!0),this._rawPrevTime=g=!b||a||j===a?a:m)),this._initted||(c=!0);else if(this._totalTime=this._time=a,this._easeType){var k=a/i,l=this._easeType,n=this._easePower;(1===l||3===l&&k>=.5)&&(k=1-k),3===l&&(k*=2),1===n?k*=k:2===n?k*=k*k:3===n?k*=k*k*k:4===n&&(k*=k*k*k*k),1===l?this.ratio=1-k:2===l?this.ratio=k:.5>a/i?this.ratio=k/2:this.ratio=1-k/2}else this.ratio=this._ease.getRatio(a/i);if(this._time!==h||c){if(!this._initted){if(this._init(),!this._initted||this._gc)return;if(!c&&this._firstPT&&(this.vars.lazy!==!1&&this._duration||this.vars.lazy&&!this._duration))return this._time=this._totalTime=h,this._rawPrevTime=j,J.push(this),void(this._lazy=[a,b]);this._time&&!d?this.ratio=this._ease.getRatio(this._time/i):d&&this._ease._calcEnd&&(this.ratio=this._ease.getRatio(0===this._time?0:1))}for(this._lazy!==!1&&(this._lazy=!1),this._active||!this._paused&&this._time!==h&&a>=0&&(this._active=!0),0===h&&(this._startAt&&(a>=0?this._startAt.render(a,b,c):e||(e="_dummyGS")),this.vars.onStart&&(0!==this._time||0===i)&&(b||this._callback("onStart"))),f=this._firstPT;f;)f.f?f.t[f.p](f.c*this.ratio+f.s):f.t[f.p]=f.c*this.ratio+f.s,f=f._next;this._onUpdate&&(0>a&&this._startAt&&a!==-1e-4&&this._startAt.render(a,b,c),b||(this._time!==h||d||c)&&this._callback("onUpdate")),e&&(!this._gc||c)&&(0>a&&this._startAt&&!this._onUpdate&&a!==-1e-4&&this._startAt.render(a,b,c),d&&(this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!b&&this.vars[e]&&this._callback(e),0===i&&this._rawPrevTime===m&&g!==m&&(this._rawPrevTime=0))}},h._kill=function(a,b,c){if("all"===a&&(a=null),null==a&&(null==b||b===this.target))return this._lazy=!1,this._enabled(!1,!1);b="string"!=typeof b?b||this._targets||this.target:G.selector(b)||b;var d,e,f,g,h,i,j,k,l,m=c&&this._time&&c._startTime===this._startTime&&this._timeline===c._timeline;if((p(b)||H(b))&&"number"!=typeof b[0])for(d=b.length;--d>-1;)this._kill(a,b[d],c)&&(i=!0);else{if(this._targets){for(d=this._targets.length;--d>-1;)if(b===this._targets[d]){h=this._propLookup[d]||{},this._overwrittenProps=this._overwrittenProps||[],e=this._overwrittenProps[d]=a?this._overwrittenProps[d]||{}:"all";break}}else{if(b!==this.target)return!1;h=this._propLookup,e=this._overwrittenProps=a?this._overwrittenProps||{}:"all"}if(h){if(j=a||h,k=a!==e&&"all"!==e&&a!==h&&("object"!=typeof a||!a._tempKill),c&&(G.onOverwrite||this.vars.onOverwrite)){for(f in j)h[f]&&(l||(l=[]),l.push(f));if((l||!a)&&!$(this,c,b,l))return!1}for(f in j)(g=h[f])&&(m&&(g.f?g.t[g.p](g.s):g.t[g.p]=g.s,i=!0),g.pg&&g.t._kill(j)&&(i=!0),g.pg&&0!==g.t._overwriteProps.length||(g._prev?g._prev._next=g._next:g===this._firstPT&&(this._firstPT=g._next),g._next&&(g._next._prev=g._prev),g._next=g._prev=null),delete h[f]),k&&(e[f]=1);!this._firstPT&&this._initted&&this._enabled(!1,!1)}}return i},h.invalidate=function(){return this._notifyPluginsOfEnabled&&G._onPluginEvent("_onDisable",this),this._firstPT=this._overwrittenProps=this._startAt=this._onUpdate=null,this._notifyPluginsOfEnabled=this._active=this._lazy=!1,this._propLookup=this._targets?{}:[],D.prototype.invalidate.call(this),this.vars.immediateRender&&(this._time=-m,this.render(Math.min(0,-this._delay))),this},h._enabled=function(a,b){if(j||i.wake(),a&&this._gc){var c,d=this._targets;if(d)for(c=d.length;--c>-1;)this._siblings[c]=Z(d[c],this,!0);else this._siblings=Z(this.target,this,!0)}return D.prototype._enabled.call(this,a,b),this._notifyPluginsOfEnabled&&this._firstPT?G._onPluginEvent(a?"_onEnable":"_onDisable",this):!1},G.to=function(a,b,c){return new G(a,b,c)},G.from=function(a,b,c){return c.runBackwards=!0,c.immediateRender=0!=c.immediateRender,new G(a,b,c)},G.fromTo=function(a,b,c,d){return d.startAt=c,d.immediateRender=0!=d.immediateRender&&0!=c.immediateRender,new G(a,b,d)},G.delayedCall=function(a,b,c,d,e){return new G(b,0,{delay:a,onComplete:b,onCompleteParams:c,callbackScope:d,onReverseComplete:b,onReverseCompleteParams:c,immediateRender:!1,lazy:!1,useFrames:e,overwrite:0})},G.set=function(a,b){return new G(a,0,b)},G.getTweensOf=function(a,b){if(null==a)return[];a="string"!=typeof a?a:G.selector(a)||a;var c,d,e,f;if((p(a)||H(a))&&"number"!=typeof a[0]){for(c=a.length,d=[];--c>-1;)d=d.concat(G.getTweensOf(a[c],b));for(c=d.length;--c>-1;)for(f=d[c],e=c;--e>-1;)f===d[e]&&d.splice(c,1)}else for(d=Z(a).concat(),c=d.length;--c>-1;)(d[c]._gc||b&&!d[c].isActive())&&d.splice(c,1);return d},G.killTweensOf=G.killDelayedCallsTo=function(a,b,c){"object"==typeof b&&(c=b,b=!1);for(var d=G.getTweensOf(a,b),e=d.length;--e>-1;)d[e]._kill(c,a)};var ba=t("plugins.TweenPlugin",function(a,b){this._overwriteProps=(a||"").split(","),this._propName=this._overwriteProps[0],this._priority=b||0,this._super=ba.prototype},!0);if(h=ba.prototype,ba.version="1.19.0",ba.API=2,h._firstPT=null,h._addTween=O,h.setRatio=M,h._kill=function(a){var b,c=this._overwriteProps,d=this._firstPT;if(null!=a[this._propName])this._overwriteProps=[];else for(b=c.length;--b>-1;)null!=a[c[b]]&&c.splice(b,1);for(;d;)null!=a[d.n]&&(d._next&&(d._next._prev=d._prev),d._prev?(d._prev._next=d._next,d._prev=null):this._firstPT===d&&(this._firstPT=d._next)),d=d._next;return!1},h._mod=h._roundProps=function(a){for(var b,c=this._firstPT;c;)b=a[this._propName]||null!=c.n&&a[c.n.split(this._propName+"_").join("")],b&&"function"==typeof b&&(2===c.f?c.t._applyPT.m=b:c.m=b),c=c._next},G._onPluginEvent=function(a,b){var c,d,e,f,g,h=b._firstPT;if("_onInitAllProps"===a){for(;h;){for(g=h._next,d=e;d&&d.pr>h.pr;)d=d._next;(h._prev=d?d._prev:f)?h._prev._next=h:e=h,(h._next=d)?d._prev=h:f=h,h=g}h=b._firstPT=e}for(;h;)h.pg&&"function"==typeof h.t[a]&&h.t[a]()&&(c=!0),h=h._next;return c},ba.activate=function(a){for(var b=a.length;--b>-1;)a[b].API===ba.API&&(Q[(new a[b])._propName]=a[b]);return!0},s.plugin=function(a){if(!(a&&a.propName&&a.init&&a.API))throw"illegal plugin definition.";var b,c=a.propName,d=a.priority||0,e=a.overwriteProps,f={init:"_onInitTween",set:"setRatio",kill:"_kill",round:"_mod",mod:"_mod",initAll:"_onInitAllProps"},g=t("plugins."+c.charAt(0).toUpperCase()+c.substr(1)+"Plugin",function(){ba.call(this,c,d),this._overwriteProps=e||[]},a.global===!0),h=g.prototype=new ba(c);h.constructor=g,g.API=a.API;for(b in f)"function"==typeof a[b]&&(h[f[b]]=a[b]);return g.version=a.version,ba.activate([g]),g},f=a._gsQueue){for(g=0;gt._rawPrevTime||0===t._rawPrevTime&&a._reversed,_=l?0:r,f=l?r:0;if(e||!this._forcingPlayhead){for(a.pause(h),n=t._prev;n&&n._startTime===h;)n._rawPrevTime=f,n=n._prev;for(n=t._next;n&&n._startTime===h;)n._rawPrevTime=_,n=n._next;e&&e.apply(s||a.vars.callbackScope||a,i||u),(this._forcingPlayhead||!a._paused)&&a.seek(o)}},m=function(t){var e,i=[],s=t.length;for(e=0;e!==s;i.push(t[e++]));return i},d=s.prototype=new e;return s.version="1.17.0",d.constructor=s,d.kill()._gc=d._forcingPlayhead=!1,d.to=function(t,e,s,r){var n=s.repeat&&f.TweenMax||i;return e?this.add(new n(t,e,s),r):this.set(t,s,r)},d.from=function(t,e,s,r){return this.add((s.repeat&&f.TweenMax||i).from(t,e,s),r)},d.fromTo=function(t,e,s,r,n){var a=r.repeat&&f.TweenMax||i;return e?this.add(a.fromTo(t,e,s,r),n):this.set(t,r,n)},d.staggerTo=function(t,e,r,n,a,h,l,_){var u,f=new s({onComplete:h,onCompleteParams:l,callbackScope:_,smoothChildTiming:this.smoothChildTiming});for("string"==typeof t&&(t=i.selector(t)||t),t=t||[],o(t)&&(t=m(t)),n=n||0,0>n&&(t=m(t),t.reverse(),n*=-1),u=0;t.length>u;u++)r.startAt&&(r.startAt=c(r.startAt)),f.to(t[u],e,c(r),u*n);return this.add(f,a)},d.staggerFrom=function(t,e,i,s,r,n,a,o){return i.immediateRender=0!=i.immediateRender,i.runBackwards=!0,this.staggerTo(t,e,i,s,r,n,a,o)},d.staggerFromTo=function(t,e,i,s,r,n,a,o,h){return s.startAt=i,s.immediateRender=0!=s.immediateRender&&0!=i.immediateRender,this.staggerTo(t,e,s,r,n,a,o,h)},d.call=function(t,e,s,r){return this.add(i.delayedCall(0,t,e,s),r)},d.set=function(t,e,s){return s=this._parseTimeOrLabel(s,0,!0),null==e.immediateRender&&(e.immediateRender=s===this._time&&!this._paused),this.add(new i(t,0,e),s)},s.exportRoot=function(t,e){t=t||{},null==t.smoothChildTiming&&(t.smoothChildTiming=!0);var r,n,a=new s(t),o=a._timeline;for(null==e&&(e=!0),o._remove(a,!0),a._startTime=0,a._rawPrevTime=a._time=a._totalTime=o._time,r=o._first;r;)n=r._next,e&&r instanceof i&&r.target===r.vars.onComplete||a.add(r,r._startTime-r._delay),r=n;return o.add(a,0),a},d.add=function(r,n,a,o){var l,_,u,f,c,p;if("number"!=typeof n&&(n=this._parseTimeOrLabel(n,0,!0,r)),!(r instanceof t)){if(r instanceof Array||r&&r.push&&h(r)){for(a=a||"normal",o=o||0,l=n,_=r.length,u=0;_>u;u++)h(f=r[u])&&(f=new s({tweens:f})),this.add(f,l),"string"!=typeof f&&"function"!=typeof f&&("sequence"===a?l=f._startTime+f.totalDuration()/f._timeScale:"start"===a&&(f._startTime-=f.delay())),l+=o;return this._uncache(!0)}if("string"==typeof r)return this.addLabel(r,n);if("function"!=typeof r)throw"Cannot add "+r+" into the timeline; it is not a tween, timeline, function, or string.";r=i.delayedCall(0,r)}if(e.prototype.add.call(this,r,n),(this._gc||this._time===this._duration)&&!this._paused&&this._durationr._startTime;c._timeline;)p&&c._timeline.smoothChildTiming?c.totalTime(c._totalTime,!0):c._gc&&c._enabled(!0,!1),c=c._timeline;return this},d.remove=function(e){if(e instanceof t)return this._remove(e,!1);if(e instanceof Array||e&&e.push&&h(e)){for(var i=e.length;--i>-1;)this.remove(e[i]);return this}return"string"==typeof e?this.removeLabel(e):this.kill(null,e)},d._remove=function(t,i){e.prototype._remove.call(this,t,i);var s=this._last;return s?this._time>s._startTime+s._totalDuration/s._timeScale&&(this._time=this.duration(),this._totalTime=this._totalDuration):this._time=this._totalTime=this._duration=this._totalDuration=0,this},d.append=function(t,e){return this.add(t,this._parseTimeOrLabel(null,e,!0,t))},d.insert=d.insertMultiple=function(t,e,i,s){return this.add(t,e||0,i,s)},d.appendMultiple=function(t,e,i,s){return this.add(t,this._parseTimeOrLabel(null,e,!0,t),i,s)},d.addLabel=function(t,e){return this._labels[t]=this._parseTimeOrLabel(e),this},d.addPause=function(t,e,s,r){var n=i.delayedCall(0,p,["{self}",e,s,r],this);return n.data="isPause",this.add(n,t)},d.removeLabel=function(t){return delete this._labels[t],this},d.getLabelTime=function(t){return null!=this._labels[t]?this._labels[t]:-1},d._parseTimeOrLabel=function(e,i,s,r){var n;if(r instanceof t&&r.timeline===this)this.remove(r);else if(r&&(r instanceof Array||r.push&&h(r)))for(n=r.length;--n>-1;)r[n]instanceof t&&r[n].timeline===this&&this.remove(r[n]);if("string"==typeof i)return this._parseTimeOrLabel(i,s&&"number"==typeof e&&null==this._labels[i]?e-this.duration():0,s);if(i=i||0,"string"!=typeof e||!isNaN(e)&&null==this._labels[e])null==e&&(e=this.duration());else{if(n=e.indexOf("="),-1===n)return null==this._labels[e]?s?this._labels[e]=this.duration()+i:i:this._labels[e]+i;i=parseInt(e.charAt(n-1)+"1",10)*Number(e.substr(n+1)),e=n>1?this._parseTimeOrLabel(e.substr(0,n-1),0,s):this.duration()}return Number(e)+i},d.seek=function(t,e){return this.totalTime("number"==typeof t?t:this._parseTimeOrLabel(t),e!==!1)},d.stop=function(){return this.paused(!0)},d.gotoAndPlay=function(t,e){return this.play(t,e)},d.gotoAndStop=function(t,e){return this.pause(t,e)},d.render=function(t,e,i){this._gc&&this._enabled(!0,!1);var s,n,a,o,h,u=this._dirty?this.totalDuration():this._totalDuration,f=this._time,c=this._startTime,p=this._timeScale,m=this._paused;if(t>=u)this._totalTime=this._time=u,this._reversed||this._hasPausedChild()||(n=!0,o="onComplete",h=!!this._timeline.autoRemoveChildren,0===this._duration&&(0===t||0>this._rawPrevTime||this._rawPrevTime===r)&&this._rawPrevTime!==t&&this._first&&(h=!0,this._rawPrevTime>r&&(o="onReverseComplete"))),this._rawPrevTime=this._duration||!e||t||this._rawPrevTime===t?t:r,t=u+1e-4;else if(1e-7>t)if(this._totalTime=this._time=0,(0!==f||0===this._duration&&this._rawPrevTime!==r&&(this._rawPrevTime>0||0>t&&this._rawPrevTime>=0))&&(o="onReverseComplete",n=this._reversed),0>t)this._active=!1,this._timeline.autoRemoveChildren&&this._reversed?(h=n=!0,o="onReverseComplete"):this._rawPrevTime>=0&&this._first&&(h=!0),this._rawPrevTime=t;else{if(this._rawPrevTime=this._duration||!e||t||this._rawPrevTime===t?t:r,0===t&&n)for(s=this._first;s&&0===s._startTime;)s._duration||(n=!1),s=s._next;t=0,this._initted||(h=!0)}else this._totalTime=this._time=this._rawPrevTime=t;if(this._time!==f&&this._first||i||h){if(this._initted||(this._initted=!0),this._active||!this._paused&&this._time!==f&&t>0&&(this._active=!0),0===f&&this.vars.onStart&&0!==this._time&&(e||this._callback("onStart")),this._time>=f)for(s=this._first;s&&(a=s._next,!this._paused||m);)(s._active||s._startTime<=this._time&&!s._paused&&!s._gc)&&(s._reversed?s.render((s._dirty?s.totalDuration():s._totalDuration)-(t-s._startTime)*s._timeScale,e,i):s.render((t-s._startTime)*s._timeScale,e,i)),s=a;else for(s=this._last;s&&(a=s._prev,!this._paused||m);)(s._active||f>=s._startTime&&!s._paused&&!s._gc)&&(s._reversed?s.render((s._dirty?s.totalDuration():s._totalDuration)-(t-s._startTime)*s._timeScale,e,i):s.render((t-s._startTime)*s._timeScale,e,i)),s=a;this._onUpdate&&(e||(l.length&&_(),this._callback("onUpdate"))),o&&(this._gc||(c===this._startTime||p!==this._timeScale)&&(0===this._time||u>=this.totalDuration())&&(n&&(l.length&&_(),this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!e&&this.vars[o]&&this._callback(o)))}},d._hasPausedChild=function(){for(var t=this._first;t;){if(t._paused||t instanceof s&&t._hasPausedChild())return!0;t=t._next}return!1},d.getChildren=function(t,e,s,r){r=r||-9999999999;for(var n=[],a=this._first,o=0;a;)r>a._startTime||(a instanceof i?e!==!1&&(n[o++]=a):(s!==!1&&(n[o++]=a),t!==!1&&(n=n.concat(a.getChildren(!0,e,s)),o=n.length))),a=a._next;return n},d.getTweensOf=function(t,e){var s,r,n=this._gc,a=[],o=0;for(n&&this._enabled(!0,!0),s=i.getTweensOf(t),r=s.length;--r>-1;)(s[r].timeline===this||e&&this._contains(s[r]))&&(a[o++]=s[r]);return n&&this._enabled(!1,!0),a},d.recent=function(){return this._recent},d._contains=function(t){for(var e=t.timeline;e;){if(e===this)return!0;e=e.timeline}return!1},d.shiftChildren=function(t,e,i){i=i||0;for(var s,r=this._first,n=this._labels;r;)r._startTime>=i&&(r._startTime+=t),r=r._next;if(e)for(s in n)n[s]>=i&&(n[s]+=t);return this._uncache(!0)},d._kill=function(t,e){if(!t&&!e)return this._enabled(!1,!1);for(var i=e?this.getTweensOf(e):this.getChildren(!0,!0,!1),s=i.length,r=!1;--s>-1;)i[s]._kill(t,e)&&(r=!0);return r},d.clear=function(t){var e=this.getChildren(!1,!0,!0),i=e.length;for(this._time=this._totalTime=0;--i>-1;)e[i]._enabled(!1,!1);return t!==!1&&(this._labels={}),this._uncache(!0)},d.invalidate=function(){for(var e=this._first;e;)e.invalidate(),e=e._next;return t.prototype.invalidate.call(this)},d._enabled=function(t,i){if(t===this._gc)for(var s=this._first;s;)s._enabled(t,!0),s=s._next;return e.prototype._enabled.call(this,t,i)},d.totalTime=function(){this._forcingPlayhead=!0;var e=t.prototype.totalTime.apply(this,arguments);return this._forcingPlayhead=!1,e},d.duration=function(t){return arguments.length?(0!==this.duration()&&0!==t&&this.timeScale(this._duration/t),this):(this._dirty&&this.totalDuration(),this._duration)},d.totalDuration=function(t){if(!arguments.length){if(this._dirty){for(var e,i,s=0,r=this._last,n=999999999999;r;)e=r._prev,r._dirty&&r.totalDuration(),r._startTime>n&&this._sortChildren&&!r._paused?this.add(r,r._startTime-r._delay):n=r._startTime,0>r._startTime&&!r._paused&&(s-=r._startTime,this._timeline.smoothChildTiming&&(this._startTime+=r._startTime/this._timeScale),this.shiftChildren(-r._startTime,!1,-9999999999),n=0),i=r._startTime+r._totalDuration/r._timeScale,i>s&&(s=i),r=e;this._duration=this._totalDuration=s,this._dirty=!1}return this._totalDuration}return 0!==this.totalDuration()&&0!==t&&this.timeScale(this._totalDuration/t),this},d.paused=function(e){if(!e)for(var i=this._first,s=this._time;i;)i._startTime===s&&"isPause"===i.data&&(i._rawPrevTime=0),i=i._next;return t.prototype.paused.apply(this,arguments)},d.usesFrames=function(){for(var e=this._timeline;e._timeline;)e=e._timeline;return e===t._rootFramesTimeline},d.rawTime=function(){return this._paused?this._totalTime:(this._timeline.rawTime()-this._startTime)*this._timeScale},s},!0)}),_gsScope._gsDefine&&_gsScope._gsQueue.pop()(),function(t){"use strict";var e=function(){return(_gsScope.GreenSockGlobals||_gsScope)[t]};"function"==typeof define&&define.amd?define(["TweenLite"],e):"undefined"!=typeof module&&module.exports&&(require("./TweenLite.js"),module.exports=e())}("TimelineLite");
+
+
+/* EASING PLUGIN*/
+/*!
+ * VERSION: 1.15.5
+ * DATE: 2016-07-08
+ * UPDATES AND DOCS AT: http://greensock.com
+ *
+ * @license Copyright (c) 2008-2016, GreenSock. All rights reserved.
+ * This work is subject to the terms at http://greensock.com/standard-license or for
+ * Club GreenSock members, the software agreement that was issued with your membership.
+ *
+ * @author: Jack Doyle, jack@greensock.com
+ **/
+var _gsScope="undefined"!=typeof module&&module.exports&&"undefined"!=typeof global?global:this||window;(_gsScope._gsQueue||(_gsScope._gsQueue=[])).push(function(){"use strict";_gsScope._gsDefine("easing.Back",["easing.Ease"],function(a){var b,c,d,e=_gsScope.GreenSockGlobals||_gsScope,f=e.com.greensock,g=2*Math.PI,h=Math.PI/2,i=f._class,j=function(b,c){var d=i("easing."+b,function(){},!0),e=d.prototype=new a;return e.constructor=d,e.getRatio=c,d},k=a.register||function(){},l=function(a,b,c,d,e){var f=i("easing."+a,{easeOut:new b,easeIn:new c,easeInOut:new d},!0);return k(f,a),f},m=function(a,b,c){this.t=a,this.v=b,c&&(this.next=c,c.prev=this,this.c=c.v-b,this.gap=c.t-a)},n=function(b,c){var d=i("easing."+b,function(a){this._p1=a||0===a?a:1.70158,this._p2=1.525*this._p1},!0),e=d.prototype=new a;return e.constructor=d,e.getRatio=c,e.config=function(a){return new d(a)},d},o=l("Back",n("BackOut",function(a){return(a-=1)*a*((this._p1+1)*a+this._p1)+1}),n("BackIn",function(a){return a*a*((this._p1+1)*a-this._p1)}),n("BackInOut",function(a){return(a*=2)<1?.5*a*a*((this._p2+1)*a-this._p2):.5*((a-=2)*a*((this._p2+1)*a+this._p2)+2)})),p=i("easing.SlowMo",function(a,b,c){b=b||0===b?b:.7,null==a?a=.7:a>1&&(a=1),this._p=1!==a?b:0,this._p1=(1-a)/2,this._p2=a,this._p3=this._p1+this._p2,this._calcEnd=c===!0},!0),q=p.prototype=new a;return q.constructor=p,q.getRatio=function(a){var b=a+(.5-a)*this._p;return athis._p3?this._calcEnd?1-(a=(a-this._p3)/this._p1)*a:b+(a-b)*(a=(a-this._p3)/this._p1)*a*a*a:this._calcEnd?1:b},p.ease=new p(.7,.7),q.config=p.config=function(a,b,c){return new p(a,b,c)},b=i("easing.SteppedEase",function(a){a=a||1,this._p1=1/a,this._p2=a+1},!0),q=b.prototype=new a,q.constructor=b,q.getRatio=function(a){return 0>a?a=0:a>=1&&(a=.999999999),(this._p2*a>>0)*this._p1},q.config=b.config=function(a){return new b(a)},c=i("easing.RoughEase",function(b){b=b||{};for(var c,d,e,f,g,h,i=b.taper||"none",j=[],k=0,l=0|(b.points||20),n=l,o=b.randomize!==!1,p=b.clamp===!0,q=b.template instanceof a?b.template:null,r="number"==typeof b.strength?.4*b.strength:.4;--n>-1;)c=o?Math.random():1/l*n,d=q?q.getRatio(c):c,"none"===i?e=r:"out"===i?(f=1-c,e=f*f*r):"in"===i?e=c*c*r:.5>c?(f=2*c,e=f*f*.5*r):(f=2*(1-c),e=f*f*.5*r),o?d+=Math.random()*e-.5*e:n%2?d+=.5*e:d-=.5*e,p&&(d>1?d=1:0>d&&(d=0)),j[k++]={x:c,y:d};for(j.sort(function(a,b){return a.x-b.x}),h=new m(1,1,null),n=l;--n>-1;)g=j[n],h=new m(g.x,g.y,h);this._prev=new m(0,0,0!==h.t?h:h.next)},!0),q=c.prototype=new a,q.constructor=c,q.getRatio=function(a){var b=this._prev;if(a>b.t){for(;b.next&&a>=b.t;)b=b.next;b=b.prev}else for(;b.prev&&a<=b.t;)b=b.prev;return this._prev=b,b.v+(a-b.t)/b.gap*b.c},q.config=function(a){return new c(a)},c.ease=new c,l("Bounce",j("BounceOut",function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375}),j("BounceIn",function(a){return(a=1-a)<1/2.75?1-7.5625*a*a:2/2.75>a?1-(7.5625*(a-=1.5/2.75)*a+.75):2.5/2.75>a?1-(7.5625*(a-=2.25/2.75)*a+.9375):1-(7.5625*(a-=2.625/2.75)*a+.984375)}),j("BounceInOut",function(a){var b=.5>a;return a=b?1-2*a:2*a-1,a=1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375,b?.5*(1-a):.5*a+.5})),l("Circ",j("CircOut",function(a){return Math.sqrt(1-(a-=1)*a)}),j("CircIn",function(a){return-(Math.sqrt(1-a*a)-1)}),j("CircInOut",function(a){return(a*=2)<1?-.5*(Math.sqrt(1-a*a)-1):.5*(Math.sqrt(1-(a-=2)*a)+1)})),d=function(b,c,d){var e=i("easing."+b,function(a,b){this._p1=a>=1?a:1,this._p2=(b||d)/(1>a?a:1),this._p3=this._p2/g*(Math.asin(1/this._p1)||0),this._p2=g/this._p2},!0),f=e.prototype=new a;return f.constructor=e,f.getRatio=c,f.config=function(a,b){return new e(a,b)},e},l("Elastic",d("ElasticOut",function(a){return this._p1*Math.pow(2,-10*a)*Math.sin((a-this._p3)*this._p2)+1},.3),d("ElasticIn",function(a){return-(this._p1*Math.pow(2,10*(a-=1))*Math.sin((a-this._p3)*this._p2))},.3),d("ElasticInOut",function(a){return(a*=2)<1?-.5*(this._p1*Math.pow(2,10*(a-=1))*Math.sin((a-this._p3)*this._p2)):this._p1*Math.pow(2,-10*(a-=1))*Math.sin((a-this._p3)*this._p2)*.5+1},.45)),l("Expo",j("ExpoOut",function(a){return 1-Math.pow(2,-10*a)}),j("ExpoIn",function(a){return Math.pow(2,10*(a-1))-.001}),j("ExpoInOut",function(a){return(a*=2)<1?.5*Math.pow(2,10*(a-1)):.5*(2-Math.pow(2,-10*(a-1)))})),l("Sine",j("SineOut",function(a){return Math.sin(a*h)}),j("SineIn",function(a){return-Math.cos(a*h)+1}),j("SineInOut",function(a){return-.5*(Math.cos(Math.PI*a)-1)})),i("easing.EaseLookup",{find:function(b){return a.map[b]}},!0),k(e.SlowMo,"SlowMo","ease,"),k(c,"RoughEase","ease,"),k(b,"SteppedEase","ease,"),o},!0)}),_gsScope._gsDefine&&_gsScope._gsQueue.pop()(),function(){"use strict";var a=function(){return _gsScope.GreenSockGlobals||_gsScope};"function"==typeof define&&define.amd?define(["TweenLite"],a):"undefined"!=typeof module&&module.exports&&(require("../TweenLite.js"),module.exports=a())}();
+
+
+/* CSS PLUGIN */
+/*!
+ * VERSION: 1.19.1
+ * DATE: 2017-01-17
+ * UPDATES AND DOCS AT: http://greensock.com
+ *
+ * @license Copyright (c) 2008-2017, GreenSock. All rights reserved.
+ * This work is subject to the terms at http://greensock.com/standard-license or for
+ * Club GreenSock members, the software agreement that was issued with your membership.
+ *
+ * @author: Jack Doyle, jack@greensock.com
+ */
+var _gsScope="undefined"!=typeof module&&module.exports&&"undefined"!=typeof global?global:this||window;(_gsScope._gsQueue||(_gsScope._gsQueue=[])).push(function(){"use strict";_gsScope._gsDefine("plugins.CSSPlugin",["plugins.TweenPlugin","TweenLite"],function(a,b){var c,d,e,f,g=function(){a.call(this,"css"),this._overwriteProps.length=0,this.setRatio=g.prototype.setRatio},h=_gsScope._gsDefine.globals,i={},j=g.prototype=new a("css");j.constructor=g,g.version="1.19.1",g.API=2,g.defaultTransformPerspective=0,g.defaultSkewType="compensated",g.defaultSmoothOrigin=!0,j="px",g.suffixMap={top:j,right:j,bottom:j,left:j,width:j,height:j,fontSize:j,padding:j,margin:j,perspective:j,lineHeight:""};var k,l,m,n,o,p,q,r,s=/(?:\-|\.|\b)(\d|\.|e\-)+/g,t=/(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g,u=/(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi,v=/(?![+-]?\d*\.?\d+|[+-]|e[+-]\d+)[^0-9]/g,w=/(?:\d|\-|\+|=|#|\.)*/g,x=/opacity *= *([^)]*)/i,y=/opacity:([^;]*)/i,z=/alpha\(opacity *=.+?\)/i,A=/^(rgb|hsl)/,B=/([A-Z])/g,C=/-([a-z])/gi,D=/(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi,E=function(a,b){return b.toUpperCase()},F=/(?:Left|Right|Width)/i,G=/(M11|M12|M21|M22)=[\d\-\.e]+/gi,H=/progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i,I=/,(?=[^\)]*(?:\(|$))/gi,J=/[\s,\(]/i,K=Math.PI/180,L=180/Math.PI,M={},N={style:{}},O=_gsScope.document||{createElement:function(){return N}},P=function(a,b){return O.createElementNS?O.createElementNS(b||"http://www.w3.org/1999/xhtml",a):O.createElement(a)},Q=P("div"),R=P("img"),S=g._internals={_specialProps:i},T=(_gsScope.navigator||{}).userAgent||"",U=function(){var a=T.indexOf("Android"),b=P("a");return m=-1!==T.indexOf("Safari")&&-1===T.indexOf("Chrome")&&(-1===a||parseFloat(T.substr(a+8,2))>3),o=m&&parseFloat(T.substr(T.indexOf("Version/")+8,2))<6,n=-1!==T.indexOf("Firefox"),(/MSIE ([0-9]{1,}[\.0-9]{0,})/.exec(T)||/Trident\/.*rv:([0-9]{1,}[\.0-9]{0,})/.exec(T))&&(p=parseFloat(RegExp.$1)),b?(b.style.cssText="top:1px;opacity:.55;",/^0.55/.test(b.style.opacity)):!1}(),V=function(a){return x.test("string"==typeof a?a:(a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100:1},W=function(a){_gsScope.console&&console.log(a)},X="",Y="",Z=function(a,b){b=b||Q;var c,d,e=b.style;if(void 0!==e[a])return a;for(a=a.charAt(0).toUpperCase()+a.substr(1),c=["O","Moz","ms","Ms","Webkit"],d=5;--d>-1&&void 0===e[c[d]+a];);return d>=0?(Y=3===d?"ms":c[d],X="-"+Y.toLowerCase()+"-",Y+a):null},$=O.defaultView?O.defaultView.getComputedStyle:function(){},_=g.getStyle=function(a,b,c,d,e){var f;return U||"opacity"!==b?(!d&&a.style[b]?f=a.style[b]:(c=c||$(a))?f=c[b]||c.getPropertyValue(b)||c.getPropertyValue(b.replace(B,"-$1").toLowerCase()):a.currentStyle&&(f=a.currentStyle[b]),null==e||f&&"none"!==f&&"auto"!==f&&"auto auto"!==f?f:e):V(a)},aa=S.convertToPixels=function(a,c,d,e,f){if("px"===e||!e)return d;if("auto"===e||!d)return 0;var h,i,j,k=F.test(c),l=a,m=Q.style,n=0>d,o=1===d;if(n&&(d=-d),o&&(d*=100),"%"===e&&-1!==c.indexOf("border"))h=d/100*(k?a.clientWidth:a.clientHeight);else{if(m.cssText="border:0 solid red;position:"+_(a,"position")+";line-height:0;","%"!==e&&l.appendChild&&"v"!==e.charAt(0)&&"rem"!==e)m[k?"borderLeftWidth":"borderTopWidth"]=d+e;else{if(l=a.parentNode||O.body,i=l._gsCache,j=b.ticker.frame,i&&k&&i.time===j)return i.width*d/100;m[k?"width":"height"]=d+e}l.appendChild(Q),h=parseFloat(Q[k?"offsetWidth":"offsetHeight"]),l.removeChild(Q),k&&"%"===e&&g.cacheWidths!==!1&&(i=l._gsCache=l._gsCache||{},i.time=j,i.width=h/d*100),0!==h||f||(h=aa(a,c,d,e,!0))}return o&&(h/=100),n?-h:h},ba=S.calculateOffset=function(a,b,c){if("absolute"!==_(a,"position",c))return 0;var d="left"===b?"Left":"Top",e=_(a,"margin"+d,c);return a["offset"+d]-(aa(a,b,parseFloat(e),e.replace(w,""))||0)},ca=function(a,b){var c,d,e,f={};if(b=b||$(a,null))if(c=b.length)for(;--c>-1;)e=b[c],(-1===e.indexOf("-transform")||Da===e)&&(f[e.replace(C,E)]=b.getPropertyValue(e));else for(c in b)(-1===c.indexOf("Transform")||Ca===c)&&(f[c]=b[c]);else if(b=a.currentStyle||a.style)for(c in b)"string"==typeof c&&void 0===f[c]&&(f[c.replace(C,E)]=b[c]);return U||(f.opacity=V(a)),d=Ra(a,b,!1),f.rotation=d.rotation,f.skewX=d.skewX,f.scaleX=d.scaleX,f.scaleY=d.scaleY,f.x=d.x,f.y=d.y,Fa&&(f.z=d.z,f.rotationX=d.rotationX,f.rotationY=d.rotationY,f.scaleZ=d.scaleZ),f.filters&&delete f.filters,f},da=function(a,b,c,d,e){var f,g,h,i={},j=a.style;for(g in c)"cssText"!==g&&"length"!==g&&isNaN(g)&&(b[g]!==(f=c[g])||e&&e[g])&&-1===g.indexOf("Origin")&&("number"==typeof f||"string"==typeof f)&&(i[g]="auto"!==f||"left"!==g&&"top"!==g?""!==f&&"auto"!==f&&"none"!==f||"string"!=typeof b[g]||""===b[g].replace(v,"")?f:0:ba(a,g),void 0!==j[g]&&(h=new sa(j,g,j[g],h)));if(d)for(g in d)"className"!==g&&(i[g]=d[g]);return{difs:i,firstMPT:h}},ea={width:["Left","Right"],height:["Top","Bottom"]},fa=["marginLeft","marginRight","marginTop","marginBottom"],ga=function(a,b,c){if("svg"===(a.nodeName+"").toLowerCase())return(c||$(a))[b]||0;if(a.getCTM&&Oa(a))return a.getBBox()[b]||0;var d=parseFloat("width"===b?a.offsetWidth:a.offsetHeight),e=ea[b],f=e.length;for(c=c||$(a,null);--f>-1;)d-=parseFloat(_(a,"padding"+e[f],c,!0))||0,d-=parseFloat(_(a,"border"+e[f]+"Width",c,!0))||0;return d},ha=function(a,b){if("contain"===a||"auto"===a||"auto auto"===a)return a+" ";(null==a||""===a)&&(a="0 0");var c,d=a.split(" "),e=-1!==a.indexOf("left")?"0%":-1!==a.indexOf("right")?"100%":d[0],f=-1!==a.indexOf("top")?"0%":-1!==a.indexOf("bottom")?"100%":d[1];if(d.length>3&&!b){for(d=a.split(", ").join(",").split(","),a=[],c=0;c2?" "+d[2]:""),b&&(b.oxp=-1!==e.indexOf("%"),b.oyp=-1!==f.indexOf("%"),b.oxr="="===e.charAt(1),b.oyr="="===f.charAt(1),b.ox=parseFloat(e.replace(v,"")),b.oy=parseFloat(f.replace(v,"")),b.v=a),b||a},ia=function(a,b){return"function"==typeof a&&(a=a(r,q)),"string"==typeof a&&"="===a.charAt(1)?parseInt(a.charAt(0)+"1",10)*parseFloat(a.substr(2)):parseFloat(a)-parseFloat(b)||0},ja=function(a,b){return"function"==typeof a&&(a=a(r,q)),null==a?b:"string"==typeof a&&"="===a.charAt(1)?parseInt(a.charAt(0)+"1",10)*parseFloat(a.substr(2))+b:parseFloat(a)||0},ka=function(a,b,c,d){var e,f,g,h,i,j=1e-6;return"function"==typeof a&&(a=a(r,q)),null==a?h=b:"number"==typeof a?h=a:(e=360,f=a.split("_"),i="="===a.charAt(1),g=(i?parseInt(a.charAt(0)+"1",10)*parseFloat(f[0].substr(2)):parseFloat(f[0]))*(-1===a.indexOf("rad")?1:L)-(i?0:b),f.length&&(d&&(d[c]=b+g),-1!==a.indexOf("short")&&(g%=e,g!==g%(e/2)&&(g=0>g?g+e:g-e)),-1!==a.indexOf("_cw")&&0>g?g=(g+9999999999*e)%e-(g/e|0)*e:-1!==a.indexOf("ccw")&&g>0&&(g=(g-9999999999*e)%e-(g/e|0)*e)),h=b+g),j>h&&h>-j&&(h=0),h},la={aqua:[0,255,255],lime:[0,255,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,255],navy:[0,0,128],white:[255,255,255],fuchsia:[255,0,255],olive:[128,128,0],yellow:[255,255,0],orange:[255,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[255,0,0],pink:[255,192,203],cyan:[0,255,255],transparent:[255,255,255,0]},ma=function(a,b,c){return a=0>a?a+1:a>1?a-1:a,255*(1>6*a?b+(c-b)*a*6:.5>a?c:2>3*a?b+(c-b)*(2/3-a)*6:b)+.5|0},na=g.parseColor=function(a,b){var c,d,e,f,g,h,i,j,k,l,m;if(a)if("number"==typeof a)c=[a>>16,a>>8&255,255&a];else{if(","===a.charAt(a.length-1)&&(a=a.substr(0,a.length-1)),la[a])c=la[a];else if("#"===a.charAt(0))4===a.length&&(d=a.charAt(1),e=a.charAt(2),f=a.charAt(3),a="#"+d+d+e+e+f+f),a=parseInt(a.substr(1),16),c=[a>>16,a>>8&255,255&a];else if("hsl"===a.substr(0,3))if(c=m=a.match(s),b){if(-1!==a.indexOf("="))return a.match(t)}else g=Number(c[0])%360/360,h=Number(c[1])/100,i=Number(c[2])/100,e=.5>=i?i*(h+1):i+h-i*h,d=2*i-e,c.length>3&&(c[3]=Number(a[3])),c[0]=ma(g+1/3,d,e),c[1]=ma(g,d,e),c[2]=ma(g-1/3,d,e);else c=a.match(s)||la.transparent;c[0]=Number(c[0]),c[1]=Number(c[1]),c[2]=Number(c[2]),c.length>3&&(c[3]=Number(c[3]))}else c=la.black;return b&&!m&&(d=c[0]/255,e=c[1]/255,f=c[2]/255,j=Math.max(d,e,f),k=Math.min(d,e,f),i=(j+k)/2,j===k?g=h=0:(l=j-k,h=i>.5?l/(2-j-k):l/(j+k),g=j===d?(e-f)/l+(f>e?6:0):j===e?(f-d)/l+2:(d-e)/l+4,g*=60),c[0]=g+.5|0,c[1]=100*h+.5|0,c[2]=100*i+.5|0),c},oa=function(a,b){var c,d,e,f=a.match(pa)||[],g=0,h=f.length?"":a;for(c=0;c0?g[0].replace(s,""):"";return k?e=b?function(a){var b,m,n,o;if("number"==typeof a)a+=l;else if(d&&I.test(a)){for(o=a.replace(I,"|").split("|"),n=0;nn--)for(;++nm--)for(;++mi;i++)h[a[i]]=j[i]=j[i]||j[(i-1)/2>>0];return e.parse(b,h,f,g)}},sa=(S._setPluginRatio=function(a){this.plugin.setRatio(a);for(var b,c,d,e,f,g=this.data,h=g.proxy,i=g.firstMPT,j=1e-6;i;)b=h[i.v],i.r?b=Math.round(b):j>b&&b>-j&&(b=0),i.t[i.p]=b,i=i._next;if(g.autoRotate&&(g.autoRotate.rotation=g.mod?g.mod(h.rotation,this.t):h.rotation),1===a||0===a)for(i=g.firstMPT,f=1===a?"e":"b";i;){if(c=i.t,c.type){if(1===c.type){for(e=c.xs0+c.s+c.xs1,d=1;d0;)i="xn"+g,h=d.p+"_"+i,n[h]=d.data[i],m[h]=d[i],f||(j=new sa(d,i,h,j,d.rxp[i]));d=d._next}return{proxy:m,end:n,firstMPT:j,pt:k}},S.CSSPropTween=function(a,b,d,e,g,h,i,j,k,l,m){this.t=a,this.p=b,this.s=d,this.c=e,this.n=i||b,a instanceof ta||f.push(this.n),this.r=j,this.type=h||0,k&&(this.pr=k,c=!0),this.b=void 0===l?d:l,this.e=void 0===m?d+e:m,g&&(this._next=g,g._prev=this)}),ua=function(a,b,c,d,e,f){var g=new ta(a,b,c,d-c,e,-1,f);return g.b=c,g.e=g.xs0=d,g},va=g.parseComplex=function(a,b,c,d,e,f,h,i,j,l){c=c||f||"","function"==typeof d&&(d=d(r,q)),h=new ta(a,b,0,0,h,l?2:1,null,!1,i,c,d),d+="",e&&pa.test(d+c)&&(d=[c,d],g.colorStringFilter(d),c=d[0],d=d[1]);var m,n,o,p,u,v,w,x,y,z,A,B,C,D=c.split(", ").join(",").split(" "),E=d.split(", ").join(",").split(" "),F=D.length,G=k!==!1;for((-1!==d.indexOf(",")||-1!==c.indexOf(","))&&(D=D.join(" ").replace(I,", ").split(" "),E=E.join(" ").replace(I,", ").split(" "),F=D.length),F!==E.length&&(D=(f||"").split(" "),F=D.length),h.plugin=j,h.setRatio=l,pa.lastIndex=0,m=0;F>m;m++)if(p=D[m],u=E[m],x=parseFloat(p),x||0===x)h.appendXtra("",x,ia(u,x),u.replace(t,""),G&&-1!==u.indexOf("px"),!0);else if(e&&pa.test(p))B=u.indexOf(")")+1,B=")"+(B?u.substr(B):""),C=-1!==u.indexOf("hsl")&&U,p=na(p,C),u=na(u,C),y=p.length+u.length>6,y&&!U&&0===u[3]?(h["xs"+h.l]+=h.l?" transparent":"transparent",h.e=h.e.split(E[m]).join("transparent")):(U||(y=!1),C?h.appendXtra(y?"hsla(":"hsl(",p[0],ia(u[0],p[0]),",",!1,!0).appendXtra("",p[1],ia(u[1],p[1]),"%,",!1).appendXtra("",p[2],ia(u[2],p[2]),y?"%,":"%"+B,!1):h.appendXtra(y?"rgba(":"rgb(",p[0],u[0]-p[0],",",!0,!0).appendXtra("",p[1],u[1]-p[1],",",!0).appendXtra("",p[2],u[2]-p[2],y?",":B,!0),y&&(p=p.length<4?1:p[3],h.appendXtra("",p,(u.length<4?1:u[3])-p,B,!1))),pa.lastIndex=0;else if(v=p.match(s)){if(w=u.match(t),!w||w.length!==v.length)return h;for(o=0,n=0;n0;)j["xn"+wa]=0,j["xs"+wa]="";j.xs0="",j._next=j._prev=j.xfirst=j.data=j.plugin=j.setRatio=j.rxp=null,j.appendXtra=function(a,b,c,d,e,f){var g=this,h=g.l;return g["xs"+h]+=f&&(h||g["xs"+h])?" "+a:a||"",c||0===h||g.plugin?(g.l++,g.type=g.setRatio?2:1,g["xs"+g.l]=d||"",h>0?(g.data["xn"+h]=b+c,g.rxp["xn"+h]=e,g["xn"+h]=b,g.plugin||(g.xfirst=new ta(g,"xn"+h,b,c,g.xfirst||g,0,g.n,e,g.pr),g.xfirst.xs0=0),g):(g.data={s:b+c},g.rxp={},g.s=b,g.c=c,g.r=e,g)):(g["xs"+h]+=b+(d||""),g)};var xa=function(a,b){b=b||{},this.p=b.prefix?Z(a)||a:a,i[a]=i[this.p]=this,this.format=b.formatter||qa(b.defaultValue,b.color,b.collapsible,b.multi),b.parser&&(this.parse=b.parser),this.clrs=b.color,this.multi=b.multi,this.keyword=b.keyword,this.dflt=b.defaultValue,this.pr=b.priority||0},ya=S._registerComplexSpecialProp=function(a,b,c){"object"!=typeof b&&(b={parser:c});var d,e,f=a.split(","),g=b.defaultValue;for(c=c||[g],d=0;dh.length?i.length:h.length,g=0;j>g;g++)b=h[g]=h[g]||this.dflt,c=i[g]=i[g]||this.dflt,m&&(k=b.indexOf(m),l=c.indexOf(m),k!==l&&(-1===l?h[g]=h[g].split(m).join(""):-1===k&&(h[g]+=" "+m)));b=h.join(", "),c=i.join(", ")}return va(a,this.p,b,c,this.clrs,this.dflt,d,this.pr,e,f)},j.parse=function(a,b,c,d,f,g,h){return this.parseComplex(a.style,this.format(_(a,this.p,e,!1,this.dflt)),this.format(b),f,g)},g.registerSpecialProp=function(a,b,c){ya(a,{parser:function(a,d,e,f,g,h,i){var j=new ta(a,e,0,0,g,2,e,!1,c);return j.plugin=h,j.setRatio=b(a,d,f._tween,e),j},priority:c})},g.useSVGTransformAttr=!0;var Aa,Ba="scaleX,scaleY,scaleZ,x,y,z,skewX,skewY,rotation,rotationX,rotationY,perspective,xPercent,yPercent".split(","),Ca=Z("transform"),Da=X+"transform",Ea=Z("transformOrigin"),Fa=null!==Z("perspective"),Ga=S.Transform=function(){this.perspective=parseFloat(g.defaultTransformPerspective)||0,this.force3D=g.defaultForce3D!==!1&&Fa?g.defaultForce3D||"auto":!1},Ha=_gsScope.SVGElement,Ia=function(a,b,c){var d,e=O.createElementNS("http://www.w3.org/2000/svg",a),f=/([a-z])([A-Z])/g;for(d in c)e.setAttributeNS(null,d.replace(f,"$1-$2").toLowerCase(),c[d]);return b.appendChild(e),e},Ja=O.documentElement||{},Ka=function(){var a,b,c,d=p||/Android/i.test(T)&&!_gsScope.chrome;return O.createElementNS&&!d&&(a=Ia("svg",Ja),b=Ia("rect",a,{width:100,height:50,x:100}),c=b.getBoundingClientRect().width,b.style[Ea]="50% 50%",b.style[Ca]="scaleX(0.5)",d=c===b.getBoundingClientRect().width&&!(n&&Fa),Ja.removeChild(a)),d}(),La=function(a,b,c,d,e,f){var h,i,j,k,l,m,n,o,p,q,r,s,t,u,v=a._gsTransform,w=Qa(a,!0);v&&(t=v.xOrigin,u=v.yOrigin),(!d||(h=d.split(" ")).length<2)&&(n=a.getBBox(),0===n.x&&0===n.y&&n.width+n.height===0&&(n={x:parseFloat(a.hasAttribute("x")?a.getAttribute("x"):a.hasAttribute("cx")?a.getAttribute("cx"):0)||0,y:parseFloat(a.hasAttribute("y")?a.getAttribute("y"):a.hasAttribute("cy")?a.getAttribute("cy"):0)||0,width:0,height:0}),b=ha(b).split(" "),h=[(-1!==b[0].indexOf("%")?parseFloat(b[0])/100*n.width:parseFloat(b[0]))+n.x,(-1!==b[1].indexOf("%")?parseFloat(b[1])/100*n.height:parseFloat(b[1]))+n.y]),c.xOrigin=k=parseFloat(h[0]),c.yOrigin=l=parseFloat(h[1]),d&&w!==Pa&&(m=w[0],n=w[1],o=w[2],p=w[3],q=w[4],r=w[5],s=m*p-n*o,s&&(i=k*(p/s)+l*(-o/s)+(o*r-p*q)/s,j=k*(-n/s)+l*(m/s)-(m*r-n*q)/s,k=c.xOrigin=h[0]=i,l=c.yOrigin=h[1]=j)),v&&(f&&(c.xOffset=v.xOffset,c.yOffset=v.yOffset,v=c),e||e!==!1&&g.defaultSmoothOrigin!==!1?(i=k-t,j=l-u,v.xOffset+=i*w[0]+j*w[2]-i,v.yOffset+=i*w[1]+j*w[3]-j):v.xOffset=v.yOffset=0),f||a.setAttribute("data-svg-origin",h.join(" "))},Ma=function(a){var b,c=P("svg",this.ownerSVGElement.getAttribute("xmlns")||"http://www.w3.org/2000/svg"),d=this.parentNode,e=this.nextSibling,f=this.style.cssText;if(Ja.appendChild(c),c.appendChild(this),this.style.display="block",a)try{b=this.getBBox(),this._originalGetBBox=this.getBBox,this.getBBox=Ma}catch(g){}else this._originalGetBBox&&(b=this._originalGetBBox());return e?d.insertBefore(this,e):d.appendChild(this),Ja.removeChild(c),this.style.cssText=f,b},Na=function(a){try{return a.getBBox()}catch(b){return Ma.call(a,!0)}},Oa=function(a){return!(!(Ha&&a.getCTM&&Na(a))||a.parentNode&&!a.ownerSVGElement)},Pa=[1,0,0,1,0,0],Qa=function(a,b){var c,d,e,f,g,h,i=a._gsTransform||new Ga,j=1e5,k=a.style;if(Ca?d=_(a,Da,null,!0):a.currentStyle&&(d=a.currentStyle.filter.match(G),d=d&&4===d.length?[d[0].substr(4),Number(d[2].substr(4)),Number(d[1].substr(4)),d[3].substr(4),i.x||0,i.y||0].join(","):""),c=!d||"none"===d||"matrix(1, 0, 0, 1, 0, 0)"===d,c&&Ca&&((h="none"===$(a).display)||!a.parentNode)&&(h&&(f=k.display,k.display="block"),a.parentNode||(g=1,Ja.appendChild(a)),d=_(a,Da,null,!0),c=!d||"none"===d||"matrix(1, 0, 0, 1, 0, 0)"===d,f?k.display=f:h&&Va(k,"display"),g&&Ja.removeChild(a)),(i.svg||a.getCTM&&Oa(a))&&(c&&-1!==(k[Ca]+"").indexOf("matrix")&&(d=k[Ca],c=0),e=a.getAttribute("transform"),c&&e&&(-1!==e.indexOf("matrix")?(d=e,c=0):-1!==e.indexOf("translate")&&(d="matrix(1,0,0,1,"+e.match(/(?:\-|\b)[\d\-\.e]+\b/gi).join(",")+")",c=0))),c)return Pa;for(e=(d||"").match(s)||[],wa=e.length;--wa>-1;)f=Number(e[wa]),e[wa]=(g=f-(f|=0))?(g*j+(0>g?-.5:.5)|0)/j+f:f;return b&&e.length>6?[e[0],e[1],e[4],e[5],e[12],e[13]]:e},Ra=S.getTransform=function(a,c,d,e){if(a._gsTransform&&d&&!e)return a._gsTransform;var f,h,i,j,k,l,m=d?a._gsTransform||new Ga:new Ga,n=m.scaleX<0,o=2e-5,p=1e5,q=Fa?parseFloat(_(a,Ea,c,!1,"0 0 0").split(" ")[2])||m.zOrigin||0:0,r=parseFloat(g.defaultTransformPerspective)||0;if(m.svg=!(!a.getCTM||!Oa(a)),m.svg&&(La(a,_(a,Ea,c,!1,"50% 50%")+"",m,a.getAttribute("data-svg-origin")),Aa=g.useSVGTransformAttr||Ka),f=Qa(a),f!==Pa){if(16===f.length){var s,t,u,v,w,x=f[0],y=f[1],z=f[2],A=f[3],B=f[4],C=f[5],D=f[6],E=f[7],F=f[8],G=f[9],H=f[10],I=f[12],J=f[13],K=f[14],M=f[11],N=Math.atan2(D,H);m.zOrigin&&(K=-m.zOrigin,I=F*K-f[12],J=G*K-f[13],K=H*K+m.zOrigin-f[14]),m.rotationX=N*L,N&&(v=Math.cos(-N),w=Math.sin(-N),s=B*v+F*w,t=C*v+G*w,u=D*v+H*w,F=B*-w+F*v,G=C*-w+G*v,H=D*-w+H*v,M=E*-w+M*v,B=s,C=t,D=u),N=Math.atan2(-z,H),m.rotationY=N*L,N&&(v=Math.cos(-N),w=Math.sin(-N),s=x*v-F*w,t=y*v-G*w,u=z*v-H*w,G=y*w+G*v,H=z*w+H*v,M=A*w+M*v,x=s,y=t,z=u),N=Math.atan2(y,x),m.rotation=N*L,N&&(v=Math.cos(-N),w=Math.sin(-N),x=x*v+B*w,t=y*v+C*w,C=y*-w+C*v,D=z*-w+D*v,y=t),m.rotationX&&Math.abs(m.rotationX)+Math.abs(m.rotation)>359.9&&(m.rotationX=m.rotation=0,m.rotationY=180-m.rotationY),m.scaleX=(Math.sqrt(x*x+y*y)*p+.5|0)/p,m.scaleY=(Math.sqrt(C*C+G*G)*p+.5|0)/p,m.scaleZ=(Math.sqrt(D*D+H*H)*p+.5|0)/p,m.rotationX||m.rotationY?m.skewX=0:(m.skewX=B||C?Math.atan2(B,C)*L+m.rotation:m.skewX||0,Math.abs(m.skewX)>90&&Math.abs(m.skewX)<270&&(n?(m.scaleX*=-1,m.skewX+=m.rotation<=0?180:-180,m.rotation+=m.rotation<=0?180:-180):(m.scaleY*=-1,m.skewX+=m.skewX<=0?180:-180))),m.perspective=M?1/(0>M?-M:M):0,m.x=I,m.y=J,m.z=K,m.svg&&(m.x-=m.xOrigin-(m.xOrigin*x-m.yOrigin*B),m.y-=m.yOrigin-(m.yOrigin*y-m.xOrigin*C))}else if(!Fa||e||!f.length||m.x!==f[4]||m.y!==f[5]||!m.rotationX&&!m.rotationY){var O=f.length>=6,P=O?f[0]:1,Q=f[1]||0,R=f[2]||0,S=O?f[3]:1;m.x=f[4]||0,m.y=f[5]||0,i=Math.sqrt(P*P+Q*Q),j=Math.sqrt(S*S+R*R),k=P||Q?Math.atan2(Q,P)*L:m.rotation||0,l=R||S?Math.atan2(R,S)*L+k:m.skewX||0,Math.abs(l)>90&&Math.abs(l)<270&&(n?(i*=-1,l+=0>=k?180:-180,k+=0>=k?180:-180):(j*=-1,l+=0>=l?180:-180)),m.scaleX=i,m.scaleY=j,m.rotation=k,m.skewX=l,Fa&&(m.rotationX=m.rotationY=m.z=0,m.perspective=r,m.scaleZ=1),m.svg&&(m.x-=m.xOrigin-(m.xOrigin*P+m.yOrigin*R),m.y-=m.yOrigin-(m.xOrigin*Q+m.yOrigin*S))}m.zOrigin=q;for(h in m)m[h]-o&&(m[h]=0)}return d&&(a._gsTransform=m,m.svg&&(Aa&&a.style[Ca]?b.delayedCall(.001,function(){Va(a.style,Ca)}):!Aa&&a.getAttribute("transform")&&b.delayedCall(.001,function(){a.removeAttribute("transform")}))),m},Sa=function(a){var b,c,d=this.data,e=-d.rotation*K,f=e+d.skewX*K,g=1e5,h=(Math.cos(e)*d.scaleX*g|0)/g,i=(Math.sin(e)*d.scaleX*g|0)/g,j=(Math.sin(f)*-d.scaleY*g|0)/g,k=(Math.cos(f)*d.scaleY*g|0)/g,l=this.t.style,m=this.t.currentStyle;if(m){c=i,i=-j,j=-c,b=m.filter,l.filter="";var n,o,q=this.t.offsetWidth,r=this.t.offsetHeight,s="absolute"!==m.position,t="progid:DXImageTransform.Microsoft.Matrix(M11="+h+", M12="+i+", M21="+j+", M22="+k,u=d.x+q*d.xPercent/100,v=d.y+r*d.yPercent/100;if(null!=d.ox&&(n=(d.oxp?q*d.ox*.01:d.ox)-q/2,o=(d.oyp?r*d.oy*.01:d.oy)-r/2,u+=n-(n*h+o*i),v+=o-(n*j+o*k)),s?(n=q/2,o=r/2,t+=", Dx="+(n-(n*h+o*i)+u)+", Dy="+(o-(n*j+o*k)+v)+")"):t+=", sizingMethod='auto expand')",-1!==b.indexOf("DXImageTransform.Microsoft.Matrix(")?l.filter=b.replace(H,t):l.filter=t+" "+b,(0===a||1===a)&&1===h&&0===i&&0===j&&1===k&&(s&&-1===t.indexOf("Dx=0, Dy=0")||x.test(b)&&100!==parseFloat(RegExp.$1)||-1===b.indexOf(b.indexOf("Alpha"))&&l.removeAttribute("filter")),!s){var y,z,A,B=8>p?1:-1;for(n=d.ieOffsetX||0,o=d.ieOffsetY||0,d.ieOffsetX=Math.round((q-((0>h?-h:h)*q+(0>i?-i:i)*r))/2+u),d.ieOffsetY=Math.round((r-((0>k?-k:k)*r+(0>j?-j:j)*q))/2+v),wa=0;4>wa;wa++)z=fa[wa],y=m[z],c=-1!==y.indexOf("px")?parseFloat(y):aa(this.t,z,parseFloat(y),y.replace(w,""))||0,A=c!==d[z]?2>wa?-d.ieOffsetX:-d.ieOffsetY:2>wa?n-d.ieOffsetX:o-d.ieOffsetY,l[z]=(d[z]=Math.round(c-A*(0===wa||2===wa?1:B)))+"px"}}},Ta=S.set3DTransformRatio=S.setTransformRatio=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,o,p,q,r,s,t,u,v,w,x,y,z=this.data,A=this.t.style,B=z.rotation,C=z.rotationX,D=z.rotationY,E=z.scaleX,F=z.scaleY,G=z.scaleZ,H=z.x,I=z.y,J=z.z,L=z.svg,M=z.perspective,N=z.force3D,O=z.skewY,P=z.skewX;if(O&&(P+=O,B+=O),((1===a||0===a)&&"auto"===N&&(this.tween._totalTime===this.tween._totalDuration||!this.tween._totalTime)||!N)&&!J&&!M&&!D&&!C&&1===G||Aa&&L||!Fa)return void(B||P||L?(B*=K,x=P*K,y=1e5,c=Math.cos(B)*E,f=Math.sin(B)*E,d=Math.sin(B-x)*-F,g=Math.cos(B-x)*F,x&&"simple"===z.skewType&&(b=Math.tan(x-O*K),b=Math.sqrt(1+b*b),d*=b,g*=b,O&&(b=Math.tan(O*K),b=Math.sqrt(1+b*b),c*=b,f*=b)),L&&(H+=z.xOrigin-(z.xOrigin*c+z.yOrigin*d)+z.xOffset,I+=z.yOrigin-(z.xOrigin*f+z.yOrigin*g)+z.yOffset,Aa&&(z.xPercent||z.yPercent)&&(q=this.t.getBBox(),H+=.01*z.xPercent*q.width,I+=.01*z.yPercent*q.height),q=1e-6,q>H&&H>-q&&(H=0),q>I&&I>-q&&(I=0)),u=(c*y|0)/y+","+(f*y|0)/y+","+(d*y|0)/y+","+(g*y|0)/y+","+H+","+I+")",L&&Aa?this.t.setAttribute("transform","matrix("+u):A[Ca]=(z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) matrix(":"matrix(")+u):A[Ca]=(z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) matrix(":"matrix(")+E+",0,0,"+F+","+H+","+I+")");if(n&&(q=1e-4,q>E&&E>-q&&(E=G=2e-5),q>F&&F>-q&&(F=G=2e-5),!M||z.z||z.rotationX||z.rotationY||(M=0)),B||P)B*=K,r=c=Math.cos(B),s=f=Math.sin(B),P&&(B-=P*K,r=Math.cos(B),s=Math.sin(B),"simple"===z.skewType&&(b=Math.tan((P-O)*K),b=Math.sqrt(1+b*b),r*=b,s*=b,z.skewY&&(b=Math.tan(O*K),b=Math.sqrt(1+b*b),c*=b,f*=b))),d=-s,g=r;else{if(!(D||C||1!==G||M||L))return void(A[Ca]=(z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) translate3d(":"translate3d(")+H+"px,"+I+"px,"+J+"px)"+(1!==E||1!==F?" scale("+E+","+F+")":""));c=g=1,d=f=0}k=1,e=h=i=j=l=m=0,o=M?-1/M:0,p=z.zOrigin,q=1e-6,v=",",w="0",B=D*K,B&&(r=Math.cos(B),s=Math.sin(B),i=-s,l=o*-s,e=c*s,h=f*s,k=r,o*=r,c*=r,f*=r),B=C*K,B&&(r=Math.cos(B),s=Math.sin(B),b=d*r+e*s,t=g*r+h*s,j=k*s,m=o*s,e=d*-s+e*r,h=g*-s+h*r,k*=r,o*=r,d=b,g=t),1!==G&&(e*=G,h*=G,k*=G,o*=G),1!==F&&(d*=F,g*=F,j*=F,m*=F),1!==E&&(c*=E,f*=E,i*=E,l*=E),(p||L)&&(p&&(H+=e*-p,I+=h*-p,J+=k*-p+p),L&&(H+=z.xOrigin-(z.xOrigin*c+z.yOrigin*d)+z.xOffset,I+=z.yOrigin-(z.xOrigin*f+z.yOrigin*g)+z.yOffset),q>H&&H>-q&&(H=w),q>I&&I>-q&&(I=w),q>J&&J>-q&&(J=0)),u=z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) matrix3d(":"matrix3d(",u+=(q>c&&c>-q?w:c)+v+(q>f&&f>-q?w:f)+v+(q>i&&i>-q?w:i),u+=v+(q>l&&l>-q?w:l)+v+(q>d&&d>-q?w:d)+v+(q>g&&g>-q?w:g),C||D||1!==G?(u+=v+(q>j&&j>-q?w:j)+v+(q>m&&m>-q?w:m)+v+(q>e&&e>-q?w:e),u+=v+(q>h&&h>-q?w:h)+v+(q>k&&k>-q?w:k)+v+(q>o&&o>-q?w:o)+v):u+=",0,0,0,0,1,0,",u+=H+v+I+v+J+v+(M?1+-J/M:1)+")",A[Ca]=u};j=Ga.prototype,j.x=j.y=j.z=j.skewX=j.skewY=j.rotation=j.rotationX=j.rotationY=j.zOrigin=j.xPercent=j.yPercent=j.xOffset=j.yOffset=0,j.scaleX=j.scaleY=j.scaleZ=1,ya("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,svgOrigin,transformPerspective,directionalRotation,parseTransform,force3D,skewType,xPercent,yPercent,smoothOrigin",{parser:function(a,b,c,d,f,h,i){if(d._lastParsedTransform===i)return f;d._lastParsedTransform=i;var j,k=i.scale&&"function"==typeof i.scale?i.scale:0;"function"==typeof i[c]&&(j=i[c],i[c]=b),k&&(i.scale=k(r,a));var l,m,n,o,p,s,t,u,v,w=a._gsTransform,x=a.style,y=1e-6,z=Ba.length,A=i,B={},C="transformOrigin",D=Ra(a,e,!0,A.parseTransform),E=A.transform&&("function"==typeof A.transform?A.transform(r,q):A.transform);if(d._transform=D,E&&"string"==typeof E&&Ca)m=Q.style,m[Ca]=E,m.display="block",m.position="absolute",O.body.appendChild(Q),l=Ra(Q,null,!1),D.svg&&(s=D.xOrigin,t=D.yOrigin,l.x-=D.xOffset,l.y-=D.yOffset,(A.transformOrigin||A.svgOrigin)&&(E={},La(a,ha(A.transformOrigin),E,A.svgOrigin,A.smoothOrigin,!0),s=E.xOrigin,t=E.yOrigin,l.x-=E.xOffset-D.xOffset,l.y-=E.yOffset-D.yOffset),(s||t)&&(u=Qa(Q,!0),l.x-=s-(s*u[0]+t*u[2]),l.y-=t-(s*u[1]+t*u[3]))),O.body.removeChild(Q),l.perspective||(l.perspective=D.perspective),null!=A.xPercent&&(l.xPercent=ja(A.xPercent,D.xPercent)),null!=A.yPercent&&(l.yPercent=ja(A.yPercent,D.yPercent));else if("object"==typeof A){if(l={scaleX:ja(null!=A.scaleX?A.scaleX:A.scale,D.scaleX),scaleY:ja(null!=A.scaleY?A.scaleY:A.scale,D.scaleY),scaleZ:ja(A.scaleZ,D.scaleZ),x:ja(A.x,D.x),y:ja(A.y,D.y),z:ja(A.z,D.z),xPercent:ja(A.xPercent,D.xPercent),yPercent:ja(A.yPercent,D.yPercent),perspective:ja(A.transformPerspective,D.perspective)},p=A.directionalRotation,null!=p)if("object"==typeof p)for(m in p)A[m]=p[m];else A.rotation=p;"string"==typeof A.x&&-1!==A.x.indexOf("%")&&(l.x=0,l.xPercent=ja(A.x,D.xPercent)),"string"==typeof A.y&&-1!==A.y.indexOf("%")&&(l.y=0,l.yPercent=ja(A.y,D.yPercent)),l.rotation=ka("rotation"in A?A.rotation:"shortRotation"in A?A.shortRotation+"_short":"rotationZ"in A?A.rotationZ:D.rotation,D.rotation,"rotation",B),Fa&&(l.rotationX=ka("rotationX"in A?A.rotationX:"shortRotationX"in A?A.shortRotationX+"_short":D.rotationX||0,D.rotationX,"rotationX",B),l.rotationY=ka("rotationY"in A?A.rotationY:"shortRotationY"in A?A.shortRotationY+"_short":D.rotationY||0,D.rotationY,"rotationY",B)),l.skewX=ka(A.skewX,D.skewX),l.skewY=ka(A.skewY,D.skewY)}for(Fa&&null!=A.force3D&&(D.force3D=A.force3D,o=!0),D.skewType=A.skewType||D.skewType||g.defaultSkewType,n=D.force3D||D.z||D.rotationX||D.rotationY||l.z||l.rotationX||l.rotationY||l.perspective,n||null==A.scale||(l.scaleZ=1);--z>-1;)v=Ba[z],E=l[v]-D[v],(E>y||-y>E||null!=A[v]||null!=M[v])&&(o=!0,f=new ta(D,v,D[v],E,f),v in B&&(f.e=B[v]),f.xs0=0,f.plugin=h,d._overwriteProps.push(f.n));return E=A.transformOrigin,D.svg&&(E||A.svgOrigin)&&(s=D.xOffset,t=D.yOffset,La(a,ha(E),l,A.svgOrigin,A.smoothOrigin),f=ua(D,"xOrigin",(w?D:l).xOrigin,l.xOrigin,f,C),f=ua(D,"yOrigin",(w?D:l).yOrigin,l.yOrigin,f,C),(s!==D.xOffset||t!==D.yOffset)&&(f=ua(D,"xOffset",w?s:D.xOffset,D.xOffset,f,C),f=ua(D,"yOffset",w?t:D.yOffset,D.yOffset,f,C)),E="0px 0px"),(E||Fa&&n&&D.zOrigin)&&(Ca?(o=!0,v=Ea,E=(E||_(a,v,e,!1,"50% 50%"))+"",f=new ta(x,v,0,0,f,-1,C),f.b=x[v],f.plugin=h,Fa?(m=D.zOrigin,E=E.split(" "),D.zOrigin=(E.length>2&&(0===m||"0px"!==E[2])?parseFloat(E[2]):m)||0,f.xs0=f.e=E[0]+" "+(E[1]||"50%")+" 0px",f=new ta(D,"zOrigin",0,0,f,-1,f.n),f.b=m,f.xs0=f.e=D.zOrigin):f.xs0=f.e=E):ha(E+"",D)),o&&(d._transformType=D.svg&&Aa||!n&&3!==this._transformType?2:3),j&&(i[c]=j),k&&(i.scale=k),f},prefix:!0}),ya("boxShadow",{defaultValue:"0px 0px 0px 0px #999",prefix:!0,color:!0,multi:!0,keyword:"inset"}),ya("borderRadius",{defaultValue:"0px",parser:function(a,b,c,f,g,h){b=this.format(b);var i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y=["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],z=a.style;for(q=parseFloat(a.offsetWidth),r=parseFloat(a.offsetHeight),i=b.split(" "),j=0;jp?1:0))||""):(p=parseFloat(n),s=n.substr((p+"").length)),""===s&&(s=d[c]||t),s!==t&&(v=aa(a,"borderLeft",o,t),w=aa(a,"borderTop",o,t),"%"===s?(m=v/q*100+"%",l=w/r*100+"%"):"em"===s?(x=aa(a,"borderLeft",1,"em"),m=v/x+"em",l=w/x+"em"):(m=v+"px",l=w+"px"),u&&(n=parseFloat(m)+p+s,k=parseFloat(l)+p+s)),g=va(z,y[j],m+" "+l,n+" "+k,!1,"0px",g);return g},prefix:!0,formatter:qa("0px 0px 0px 0px",!1,!0)}),ya("borderBottomLeftRadius,borderBottomRightRadius,borderTopLeftRadius,borderTopRightRadius",{defaultValue:"0px",parser:function(a,b,c,d,f,g){return va(a.style,c,this.format(_(a,c,e,!1,"0px 0px")),this.format(b),!1,"0px",f)},prefix:!0,formatter:qa("0px 0px",!1,!0)}),ya("backgroundPosition",{defaultValue:"0 0",parser:function(a,b,c,d,f,g){var h,i,j,k,l,m,n="background-position",o=e||$(a,null),q=this.format((o?p?o.getPropertyValue(n+"-x")+" "+o.getPropertyValue(n+"-y"):o.getPropertyValue(n):a.currentStyle.backgroundPositionX+" "+a.currentStyle.backgroundPositionY)||"0 0"),r=this.format(b);if(-1!==q.indexOf("%")!=(-1!==r.indexOf("%"))&&r.split(",").length<2&&(m=_(a,"backgroundImage").replace(D,""),m&&"none"!==m)){for(h=q.split(" "),i=r.split(" "),R.setAttribute("src",m),j=2;--j>-1;)q=h[j],k=-1!==q.indexOf("%"),k!==(-1!==i[j].indexOf("%"))&&(l=0===j?a.offsetWidth-R.width:a.offsetHeight-R.height,h[j]=k?parseFloat(q)/100*l+"px":parseFloat(q)/l*100+"%");q=h.join(" ")}return this.parseComplex(a.style,q,r,f,g)},formatter:ha}),ya("backgroundSize",{defaultValue:"0 0",formatter:function(a){return a+="",ha(-1===a.indexOf(" ")?a+" "+a:a)}}),ya("perspective",{defaultValue:"0px",prefix:!0}),ya("perspectiveOrigin",{defaultValue:"50% 50%",prefix:!0}),ya("transformStyle",{prefix:!0}),ya("backfaceVisibility",{prefix:!0}),ya("userSelect",{prefix:!0}),ya("margin",{parser:ra("marginTop,marginRight,marginBottom,marginLeft")}),ya("padding",{parser:ra("paddingTop,paddingRight,paddingBottom,paddingLeft")}),ya("clip",{defaultValue:"rect(0px,0px,0px,0px)",parser:function(a,b,c,d,f,g){var h,i,j;return 9>p?(i=a.currentStyle,j=8>p?" ":",",h="rect("+i.clipTop+j+i.clipRight+j+i.clipBottom+j+i.clipLeft+")",
+b=this.format(b).split(",").join(j)):(h=this.format(_(a,this.p,e,!1,this.dflt)),b=this.format(b)),this.parseComplex(a.style,h,b,f,g)}}),ya("textShadow",{defaultValue:"0px 0px 0px #999",color:!0,multi:!0}),ya("autoRound,strictUnits",{parser:function(a,b,c,d,e){return e}}),ya("border",{defaultValue:"0px solid #000",parser:function(a,b,c,d,f,g){var h=_(a,"borderTopWidth",e,!1,"0px"),i=this.format(b).split(" "),j=i[0].replace(w,"");return"px"!==j&&(h=parseFloat(h)/aa(a,"borderTopWidth",1,j)+j),this.parseComplex(a.style,this.format(h+" "+_(a,"borderTopStyle",e,!1,"solid")+" "+_(a,"borderTopColor",e,!1,"#000")),i.join(" "),f,g)},color:!0,formatter:function(a){var b=a.split(" ");return b[0]+" "+(b[1]||"solid")+" "+(a.match(pa)||["#000"])[0]}}),ya("borderWidth",{parser:ra("borderTopWidth,borderRightWidth,borderBottomWidth,borderLeftWidth")}),ya("float,cssFloat,styleFloat",{parser:function(a,b,c,d,e,f){var g=a.style,h="cssFloat"in g?"cssFloat":"styleFloat";return new ta(g,h,0,0,e,-1,c,!1,0,g[h],b)}});var Ua=function(a){var b,c=this.t,d=c.filter||_(this.data,"filter")||"",e=this.s+this.c*a|0;100===e&&(-1===d.indexOf("atrix(")&&-1===d.indexOf("radient(")&&-1===d.indexOf("oader(")?(c.removeAttribute("filter"),b=!_(this.data,"filter")):(c.filter=d.replace(z,""),b=!0)),b||(this.xn1&&(c.filter=d=d||"alpha(opacity="+e+")"),-1===d.indexOf("pacity")?0===e&&this.xn1||(c.filter=d+" alpha(opacity="+e+")"):c.filter=d.replace(x,"opacity="+e))};ya("opacity,alpha,autoAlpha",{defaultValue:"1",parser:function(a,b,c,d,f,g){var h=parseFloat(_(a,"opacity",e,!1,"1")),i=a.style,j="autoAlpha"===c;return"string"==typeof b&&"="===b.charAt(1)&&(b=("-"===b.charAt(0)?-1:1)*parseFloat(b.substr(2))+h),j&&1===h&&"hidden"===_(a,"visibility",e)&&0!==b&&(h=0),U?f=new ta(i,"opacity",h,b-h,f):(f=new ta(i,"opacity",100*h,100*(b-h),f),f.xn1=j?1:0,i.zoom=1,f.type=2,f.b="alpha(opacity="+f.s+")",f.e="alpha(opacity="+(f.s+f.c)+")",f.data=a,f.plugin=g,f.setRatio=Ua),j&&(f=new ta(i,"visibility",0,0,f,-1,null,!1,0,0!==h?"inherit":"hidden",0===b?"hidden":"inherit"),f.xs0="inherit",d._overwriteProps.push(f.n),d._overwriteProps.push(c)),f}});var Va=function(a,b){b&&(a.removeProperty?(("ms"===b.substr(0,2)||"webkit"===b.substr(0,6))&&(b="-"+b),a.removeProperty(b.replace(B,"-$1").toLowerCase())):a.removeAttribute(b))},Wa=function(a){if(this.t._gsClassPT=this,1===a||0===a){this.t.setAttribute("class",0===a?this.b:this.e);for(var b=this.data,c=this.t.style;b;)b.v?c[b.p]=b.v:Va(c,b.p),b=b._next;1===a&&this.t._gsClassPT===this&&(this.t._gsClassPT=null)}else this.t.getAttribute("class")!==this.e&&this.t.setAttribute("class",this.e)};ya("className",{parser:function(a,b,d,f,g,h,i){var j,k,l,m,n,o=a.getAttribute("class")||"",p=a.style.cssText;if(g=f._classNamePT=new ta(a,d,0,0,g,2),g.setRatio=Wa,g.pr=-11,c=!0,g.b=o,k=ca(a,e),l=a._gsClassPT){for(m={},n=l.data;n;)m[n.p]=1,n=n._next;l.setRatio(1)}return a._gsClassPT=g,g.e="="!==b.charAt(1)?b:o.replace(new RegExp("(?:\\s|^)"+b.substr(2)+"(?![\\w-])"),"")+("+"===b.charAt(0)?" "+b.substr(2):""),a.setAttribute("class",g.e),j=da(a,k,ca(a),i,m),a.setAttribute("class",o),g.data=j.firstMPT,a.style.cssText=p,g=g.xfirst=f.parse(a,j.difs,g,h)}});var Xa=function(a){if((1===a||0===a)&&this.data._totalTime===this.data._totalDuration&&"isFromStart"!==this.data.data){var b,c,d,e,f,g=this.t.style,h=i.transform.parse;if("all"===this.e)g.cssText="",e=!0;else for(b=this.e.split(" ").join("").split(","),d=b.length;--d>-1;)c=b[d],i[c]&&(i[c].parse===h?e=!0:c="transformOrigin"===c?Ea:i[c].p),Va(g,c);e&&(Va(g,Ca),f=this.t._gsTransform,f&&(f.svg&&(this.t.removeAttribute("data-svg-origin"),this.t.removeAttribute("transform")),delete this.t._gsTransform))}};for(ya("clearProps",{parser:function(a,b,d,e,f){return f=new ta(a,d,0,0,f,2),f.setRatio=Xa,f.e=b,f.pr=-10,f.data=e._tween,c=!0,f}}),j="bezier,throwProps,physicsProps,physics2D".split(","),wa=j.length;wa--;)za(j[wa]);j=g.prototype,j._firstPT=j._lastParsedTransform=j._transform=null,j._onInitTween=function(a,b,h,j){if(!a.nodeType)return!1;this._target=q=a,this._tween=h,this._vars=b,r=j,k=b.autoRound,c=!1,d=b.suffixMap||g.suffixMap,e=$(a,""),f=this._overwriteProps;var n,p,s,t,u,v,w,x,z,A=a.style;if(l&&""===A.zIndex&&(n=_(a,"zIndex",e),("auto"===n||""===n)&&this._addLazySet(A,"zIndex",0)),"string"==typeof b&&(t=A.cssText,n=ca(a,e),A.cssText=t+";"+b,n=da(a,n,ca(a)).difs,!U&&y.test(b)&&(n.opacity=parseFloat(RegExp.$1)),b=n,A.cssText=t),b.className?this._firstPT=p=i.className.parse(a,b.className,"className",this,null,null,b):this._firstPT=p=this.parse(a,b,null),this._transformType){for(z=3===this._transformType,Ca?m&&(l=!0,""===A.zIndex&&(w=_(a,"zIndex",e),("auto"===w||""===w)&&this._addLazySet(A,"zIndex",0)),o&&this._addLazySet(A,"WebkitBackfaceVisibility",this._vars.WebkitBackfaceVisibility||(z?"visible":"hidden"))):A.zoom=1,s=p;s&&s._next;)s=s._next;x=new ta(a,"transform",0,0,null,2),this._linkCSSP(x,null,s),x.setRatio=Ca?Ta:Sa,x.data=this._transform||Ra(a,e,!0),x.tween=h,x.pr=-1,f.pop()}if(c){for(;p;){for(v=p._next,s=t;s&&s.pr>p.pr;)s=s._next;(p._prev=s?s._prev:u)?p._prev._next=p:t=p,(p._next=s)?s._prev=p:u=p,p=v}this._firstPT=t}return!0},j.parse=function(a,b,c,f){var g,h,j,l,m,n,o,p,s,t,u=a.style;for(g in b)n=b[g],"function"==typeof n&&(n=n(r,q)),h=i[g],h?c=h.parse(a,n,g,this,c,f,b):(m=_(a,g,e)+"",s="string"==typeof n,"color"===g||"fill"===g||"stroke"===g||-1!==g.indexOf("Color")||s&&A.test(n)?(s||(n=na(n),n=(n.length>3?"rgba(":"rgb(")+n.join(",")+")"),c=va(u,g,m,n,!0,"transparent",c,0,f)):s&&J.test(n)?c=va(u,g,m,n,!0,null,c,0,f):(j=parseFloat(m),o=j||0===j?m.substr((j+"").length):"",(""===m||"auto"===m)&&("width"===g||"height"===g?(j=ga(a,g,e),o="px"):"left"===g||"top"===g?(j=ba(a,g,e),o="px"):(j="opacity"!==g?0:1,o="")),t=s&&"="===n.charAt(1),t?(l=parseInt(n.charAt(0)+"1",10),n=n.substr(2),l*=parseFloat(n),p=n.replace(w,"")):(l=parseFloat(n),p=s?n.replace(w,""):""),""===p&&(p=g in d?d[g]:o),n=l||0===l?(t?l+j:l)+p:b[g],o!==p&&""!==p&&(l||0===l)&&j&&(j=aa(a,g,j,o),"%"===p?(j/=aa(a,g,100,"%")/100,b.strictUnits!==!0&&(m=j+"%")):"em"===p||"rem"===p||"vw"===p||"vh"===p?j/=aa(a,g,1,p):"px"!==p&&(l=aa(a,g,l,p),p="px"),t&&(l||0===l)&&(n=l+j+p)),t&&(l+=j),!j&&0!==j||!l&&0!==l?void 0!==u[g]&&(n||n+""!="NaN"&&null!=n)?(c=new ta(u,g,l||j||0,0,c,-1,g,!1,0,m,n),c.xs0="none"!==n||"display"!==g&&-1===g.indexOf("Style")?n:m):W("invalid "+g+" tween value: "+b[g]):(c=new ta(u,g,j,l-j,c,0,g,k!==!1&&("px"===p||"zIndex"===g),0,m,n),c.xs0=p))),f&&c&&!c.plugin&&(c.plugin=f);return c},j.setRatio=function(a){var b,c,d,e=this._firstPT,f=1e-6;if(1!==a||this._tween._time!==this._tween._duration&&0!==this._tween._time)if(a||this._tween._time!==this._tween._duration&&0!==this._tween._time||this._tween._rawPrevTime===-1e-6)for(;e;){if(b=e.c*a+e.s,e.r?b=Math.round(b):f>b&&b>-f&&(b=0),e.type)if(1===e.type)if(d=e.l,2===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2;else if(3===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2+e.xn2+e.xs3;else if(4===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2+e.xn2+e.xs3+e.xn3+e.xs4;else if(5===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2+e.xn2+e.xs3+e.xn3+e.xs4+e.xn4+e.xs5;else{for(c=e.xs0+b+e.xs1,d=1;d-1;)Za(a[e],b,c);else for(d=a.childNodes,e=d.length;--e>-1;)f=d[e],g=f.type,f.style&&(b.push(ca(f)),c&&c.push(f)),1!==g&&9!==g&&11!==g||!f.childNodes.length||Za(f,b,c)};return g.cascadeTo=function(a,c,d){var e,f,g,h,i=b.to(a,c,d),j=[i],k=[],l=[],m=[],n=b._internals.reservedProps;for(a=i._targets||i.target,Za(a,k,m),i.render(c,!0,!0),Za(a,l),i.render(0,!0,!0),i._enabled(!0),e=m.length;--e>-1;)if(f=da(m[e],k[e],l[e]),f.firstMPT){f=f.difs;for(g in d)n[g]&&(f[g]=d[g]);h={};for(g in f)h[g]=k[e][g];j.push(b.fromTo(m[e],c,h,f))}return j},a.activate([g]),g},!0)}),_gsScope._gsDefine&&_gsScope._gsQueue.pop()(),function(a){"use strict";var b=function(){return(_gsScope.GreenSockGlobals||_gsScope)[a]};"function"==typeof define&&define.amd?define(["TweenLite"],b):"undefined"!=typeof module&&module.exports&&(require("../TweenLite.js"),module.exports=b())}("CSSPlugin");
+
+
+/* SPLIT TEXT UTIL */
+/*!
+ * VERSION: 0.5.6
+ * DATE: 2017-01-17
+ * UPDATES AND DOCS AT: http://greensock.com
+ *
+ * @license Copyright (c) 2008-2017, GreenSock. All rights reserved.
+ * SplitText is a Club GreenSock membership benefit; You must have a valid membership to use
+ * this code without violating the terms of use. Visit http://greensock.com/club/ to sign up or get more details.
+ * This work is subject to the software agreement that was issued with your membership.
+ *
+ * @author: Jack Doyle, jack@greensock.com
+ */
+var _gsScope="undefined"!=typeof module&&module.exports&&"undefined"!=typeof global?global:this||window;!function(a){"use strict";var b=a.GreenSockGlobals||a,c=function(a){var c,d=a.split("."),e=b;for(c=0;cb;b++)if(c=a[b],j(c))for(d=c.length,d=0;d":">")}},y=d.SplitText=b.SplitText=function(a,b){if("string"==typeof a&&(a=y.selector(a)),!a)throw"cannot split a null element.";this.elements=j(a)?k(a):[a],this.chars=[],this.words=[],this.lines=[],this._originals=[],this.vars=b||{},this.split(b)},z=function(a,b,c){var d=a.nodeType;if(1===d||9===d||11===d)for(a=a.firstChild;a;a=a.nextSibling)z(a,b,c);else(3===d||4===d)&&(a.nodeValue=a.nodeValue.split(b).join(c))},A=function(a,b){for(var c=b.length;--c>-1;)a.push(b[c])},B=function(a){var b,c=[],d=a.length;for(b=0;b!==d;c.push(a[b++]));return c},C=function(a,b,c){for(var d;a&&a!==b;){if(d=a._next||a.nextSibling)return d.textContent.charAt(0)===c;a=a.parentNode||a._parent}return!1},D=function(a){var b,c,d=B(a.childNodes),e=d.length;for(b=0;e>b;b++)c=d[b],c._isSplit?D(c):(b&&3===c.previousSibling.nodeType?c.previousSibling.nodeValue+=3===c.nodeType?c.nodeValue:c.firstChild.nodeValue:3!==c.nodeType&&a.insertBefore(c.firstChild,c),a.removeChild(c))},E=function(a,b,c,d,e,h,j){var k,l,m,n,o,p,q,r,s,t,u,v,w=g(a),x=i(a,"paddingLeft",w),y=-999,B=i(a,"borderBottomWidth",w)+i(a,"borderTopWidth",w),E=i(a,"borderLeftWidth",w)+i(a,"borderRightWidth",w),F=i(a,"paddingTop",w)+i(a,"paddingBottom",w),G=i(a,"paddingLeft",w)+i(a,"paddingRight",w),H=.2*i(a,"fontSize"),I=i(a,"textAlign",w,!0),J=[],K=[],L=[],M=b.wordDelimiter||" ",N=b.span?"span":"div",O=b.type||b.split||"chars,words,lines",P=e&&-1!==O.indexOf("lines")?[]:null,Q=-1!==O.indexOf("words"),R=-1!==O.indexOf("chars"),S="absolute"===b.position||b.absolute===!0,T=b.linesClass,U=-1!==(T||"").indexOf("++"),V=[];for(P&&1===a.children.length&&a.children[0]._isSplit&&(a=a.children[0]),U&&(T=T.split("++").join("")),l=a.getElementsByTagName("*"),m=l.length,o=[],k=0;m>k;k++)o[k]=l[k];if(P||S)for(k=0;m>k;k++)n=o[k],p=n.parentNode===a,(p||S||R&&!Q)&&(v=n.offsetTop,P&&p&&Math.abs(v-y)>H&&"BR"!==n.nodeName&&(q=[],P.push(q),y=v),S&&(n._x=n.offsetLeft,n._y=v,n._w=n.offsetWidth,n._h=n.offsetHeight),P&&((n._isSplit&&p||!R&&p||Q&&p||!Q&&n.parentNode.parentNode===a&&!n.parentNode._isSplit)&&(q.push(n),n._x-=x,C(n,a,M)&&(n._wordEnd=!0)),"BR"===n.nodeName&&n.nextSibling&&"BR"===n.nextSibling.nodeName&&P.push([])));for(k=0;m>k;k++)n=o[k],p=n.parentNode===a,"BR"!==n.nodeName?(S&&(s=n.style,Q||p||(n._x+=n.parentNode._x,n._y+=n.parentNode._y),s.left=n._x+"px",s.top=n._y+"px",s.position="absolute",s.display="block",s.width=n._w+1+"px",s.height=n._h+"px"),!Q&&R?n._isSplit?(n._next=n.nextSibling,n.parentNode.appendChild(n)):n.parentNode._isSplit?(n._parent=n.parentNode,!n.previousSibling&&n.firstChild&&(n.firstChild._isFirst=!0),n.nextSibling&&" "===n.nextSibling.textContent&&!n.nextSibling.nextSibling&&V.push(n.nextSibling),n._next=n.nextSibling&&n.nextSibling._isFirst?null:n.nextSibling,n.parentNode.removeChild(n),o.splice(k--,1),m--):p||(v=!n.nextSibling&&C(n.parentNode,a,M),n.parentNode._parent&&n.parentNode._parent.appendChild(n),v&&n.parentNode.appendChild(f.createTextNode(" ")),b.span&&(n.style.display="inline"),J.push(n)):n.parentNode._isSplit&&!n._isSplit&&""!==n.innerHTML?K.push(n):R&&!n._isSplit&&(b.span&&(n.style.display="inline"),J.push(n))):P||S?(n.parentNode&&n.parentNode.removeChild(n),o.splice(k--,1),m--):Q||a.appendChild(n);for(k=V.length;--k>-1;)V[k].parentNode.removeChild(V[k]);if(P){for(S&&(t=f.createElement(N),a.appendChild(t),u=t.offsetWidth+"px",v=t.offsetParent===a?0:a.offsetLeft,a.removeChild(t)),s=a.style.cssText,a.style.cssText="display:none;";a.firstChild;)a.removeChild(a.firstChild);for(r=" "===M&&(!S||!Q&&!R),k=0;kl;l++)"BR"!==q[l].nodeName&&(n=q[l],t.appendChild(n),r&&n._wordEnd&&t.appendChild(f.createTextNode(" ")),S&&(0===l&&(t.style.top=n._y+"px",t.style.left=x+v+"px"),n.style.top="0px",v&&(n.style.left=n._x-v+"px")));0===m?t.innerHTML=" ":Q||R||(D(t),z(t,String.fromCharCode(160)," ")),S&&(t.style.width=u,t.style.height=n._h+"px"),a.appendChild(t)}a.style.cssText=s}S&&(j>a.clientHeight&&(a.style.height=j-F+"px",a.clientHeighta.clientWidth&&(a.style.width=h-G+"px",a.clientWidth":" ",G=!0,H=f.createElement("div"),I=a.parentNode;for(I.insertBefore(H,a),H.textContent=a.nodeValue,I.removeChild(a),a=H,g=e(a),v=-1!==g.indexOf("<"),b.reduceWhiteSpace!==!1&&(g=g.replace(m," ").replace(l,"")),v&&(g=g.split("<").join("{{LT}}")),k=g.length,h=(" "===g.charAt(0)?E:"")+c(),i=0;k>i;i++)if(p=g.charAt(i),p===D&&g.charAt(i-1)!==D&&i){for(h+=G?F:"",G=!1;g.charAt(i+1)===D;)h+=E,i++;i===k-1?h+=E:")"!==g.charAt(i+1)&&(h+=E+c(),G=!0)}else"{"===p&&"{{LT}}"===g.substr(i,6)?(h+=B?d()+"{{LT}}"+y+">":"{{LT}}",i+=5):p.charCodeAt(0)>=n&&p.charCodeAt(0)<=o||g.charCodeAt(i+1)>=65024&&g.charCodeAt(i+1)<=65039?(w=u(g.substr(i,2)),x=u(g.substr(i+2,2)),j=w>=q&&r>=w&&x>=q&&r>=x||x>=s&&t>=x?4:2,h+=B&&" "!==p?d()+g.substr(i,j)+""+y+">":g.substr(i,j),i+=j-1):h+=B&&" "!==p?d()+p+""+y+">":p;a.outerHTML=h+(G?F:""),v&&z(I,"{{LT}}","<")},G=function(a,b,c,d){var e,f,g=B(a.childNodes),h=g.length,j="absolute"===b.position||b.absolute===!0;if(3!==a.nodeType||h>1){for(b.absolute=!1,e=0;h>e;e++)f=g[e],(3!==f.nodeType||/\S+/.test(f.nodeValue))&&(j&&3!==f.nodeType&&"inline"===i(f,"display",null,!0)&&(f.style.display="inline-block",f.style.position="relative"),f._isSplit=!0,G(f,b,c,d));return b.absolute=j,void(a._isSplit=!0)}F(a,b,c,d)},H=y.prototype;H.split=function(a){this.isSplit&&this.revert(),this.vars=a=a||this.vars,this._originals.length=this.chars.length=this.words.length=this.lines.length=0;for(var b,c,d,e=this.elements.length,f=a.span?"span":"div",g=("absolute"===a.position||a.absolute===!0,x(a.wordsClass,f)),h=x(a.charsClass,f);--e>-1;)d=this.elements[e],this._originals[e]=d.innerHTML,b=d.clientHeight,c=d.clientWidth,G(d,a,g,h),E(d,a,this.chars,this.words,this.lines,c,b);return this.chars.reverse(),this.words.reverse(),this.lines.reverse(),this.isSplit=!0,this},H.revert=function(){if(!this._originals)throw"revert() call wasn't scoped properly.";for(var a=this._originals.length;--a>-1;)this.elements[a].innerHTML=this._originals[a];return this.chars=[],this.words=[],this.lines=[],this.isSplit=!1,this},y.selector=a.$||a.jQuery||function(b){var c=a.$||a.jQuery;return c?(y.selector=c,c(b)):"undefined"==typeof document?b:document.querySelectorAll?document.querySelectorAll(b):document.getElementById("#"===b.charAt(0)?b.substr(1):b)},y.version="0.5.6"}(_gsScope),function(a){"use strict";var b=function(){return(_gsScope.GreenSockGlobals||_gsScope)[a]};"function"==typeof define&&define.amd?define([],b):"undefined"!=typeof module&&module.exports&&(module.exports=b())}("SplitText");
+
+
+try{
+ window.GreenSockGlobals = null;
+ window._gsQueue = null;
+ window._gsDefine = null;
+
+ delete(window.GreenSockGlobals);
+ delete(window._gsQueue);
+ delete(window._gsDefine);
+ } catch(e) {}
+
+try{
+ window.GreenSockGlobals = oldgs;
+ window._gsQueue = oldgs_queue;
+ } catch(e) {}
+
+if (window.tplogs==true)
+ try {
+ console.groupEnd();
+ } catch(e) {}
+
+(function(e,t){
+ e.waitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage"]};e.expr[":"].uncached=function(t){var n=document.createElement("img");n.src=t.src;return e(t).is('img[src!=""]')&&!n.complete};e.fn.waitForImages=function(t,n,r){if(e.isPlainObject(arguments[0])){n=t.each;r=t.waitForAll;t=t.finished}t=t||e.noop;n=n||e.noop;r=!!r;if(!e.isFunction(t)||!e.isFunction(n)){throw new TypeError("An invalid callback was supplied.")}return this.each(function(){var i=e(this),s=[];if(r){var o=e.waitForImages.hasImageProperties||[],u=/url\((['"]?)(.*?)\1\)/g;i.find("*").each(function(){var t=e(this);if(t.is("img:uncached")){s.push({src:t.attr("src"),element:t[0]})}e.each(o,function(e,n){var r=t.css(n);if(!r){return true}var i;while(i=u.exec(r)){s.push({src:i[2],element:t[0]})}})})}else{i.find("img:uncached").each(function(){s.push({src:this.src,element:this})})}var f=s.length,l=0;if(f==0){t.call(i[0])}e.each(s,function(r,s){var o=new Image;e(o).bind("load error",function(e){l++;n.call(s.element,l,f,e.type=="load");if(l==f){t.call(i[0]);return false}});o.src=s.src})})};
+})(jQuery)
diff --git a/Web Development/Basic/Tourist Places/js/switcher.js b/Web Development/Basic/Tourist Places/js/switcher.js
new file mode 100644
index 000000000..bb2be39a0
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/switcher.js
@@ -0,0 +1,64 @@
+function setActiveStyleSheet(title) {
+ var i, a, main;
+ for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+ if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
+ a.disabled = true;
+ if(a.getAttribute("title") == title) a.disabled = false;
+ }
+ }
+}
+
+function getActiveStyleSheet() {
+ var i, a;
+ for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+ if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title");
+ }
+ return null;
+}
+
+function getPreferredStyleSheet() {
+ var i, a;
+ for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+ if(a.getAttribute("rel").indexOf("style") != -1
+ && a.getAttribute("rel").indexOf("alt") == -1
+ && a.getAttribute("title")
+ ) return a.getAttribute("title");
+ }
+ return null;
+}
+
+function createCookie(name,value,days) {
+ if (days) {
+ var date = new Date();
+ date.setTime(date.getTime()+(days*24*60*60*1000));
+ var expires = "; expires="+date.toGMTString();
+ }
+ else expires = "";
+ document.cookie = name+"="+value+expires+"; path=/";
+}
+
+function readCookie(name) {
+ var nameEQ = name + "=";
+ var ca = document.cookie.split(';');
+ for(var i=0;i < ca.length;i++) {
+ var c = ca[i];
+ while (c.charAt(0)==' ') c = c.substring(1,c.length);
+ if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
+ }
+ return null;
+}
+
+window.onload = function(e) {
+ var cookie = readCookie("style");
+ var title = cookie ? cookie : getPreferredStyleSheet();
+ setActiveStyleSheet(title);
+}
+
+window.onunload = function(e) {
+ var title = getActiveStyleSheet();
+ createCookie("style", title, 365);
+}
+
+var cookie = readCookie("style");
+var title = cookie ? cookie : getPreferredStyleSheet();
+setActiveStyleSheet(title);
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/js/validator.js b/Web Development/Basic/Tourist Places/js/validator.js
new file mode 100644
index 000000000..2b588bc5e
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/js/validator.js
@@ -0,0 +1,385 @@
+/*!
+ * Validator v0.11.5 for Bootstrap 3, by @1000hz
+ * Copyright 2016 Cina Saffary
+ * Licensed under http://opensource.org/licenses/MIT
+ *
+ * https://github.com/1000hz/bootstrap-validator
+ */
+
++function ($) {
+ 'use strict';
+
+ // VALIDATOR CLASS DEFINITION
+ // ==========================
+
+ function getValue($el) {
+ return $el.is('[type="checkbox"]') ? $el.prop('checked') :
+ $el.is('[type="radio"]') ? !!$('[name="' + $el.attr('name') + '"]:checked').length :
+ $el.val()
+ }
+
+ var Validator = function (element, options) {
+ this.options = options
+ this.validators = $.extend({}, Validator.VALIDATORS, options.custom)
+ this.$element = $(element)
+ this.$btn = $('button[type="submit"], input[type="submit"]')
+ .filter('[form="' + this.$element.attr('id') + '"]')
+ .add(this.$element.find('input[type="submit"], button[type="submit"]'))
+
+ this.update()
+
+ this.$element.on('input.bs.validator change.bs.validator focusout.bs.validator', $.proxy(this.onInput, this))
+ this.$element.on('submit.bs.validator', $.proxy(this.onSubmit, this))
+ this.$element.on('reset.bs.validator', $.proxy(this.reset, this))
+
+ this.$element.find('[data-match]').each(function () {
+ var $this = $(this)
+ var target = $this.data('match')
+
+ $(target).on('input.bs.validator', function (e) {
+ getValue($this) && $this.trigger('input.bs.validator')
+ })
+ })
+
+ this.$inputs.filter(function () { return getValue($(this)) }).trigger('focusout')
+
+ this.$element.attr('novalidate', true) // disable automatic native validation
+ this.toggleSubmit()
+ }
+
+ Validator.VERSION = '0.11.5'
+
+ Validator.INPUT_SELECTOR = ':input:not([type="hidden"], [type="submit"], [type="reset"], button)'
+
+ Validator.FOCUS_OFFSET = 20
+
+ Validator.DEFAULTS = {
+ delay: 500,
+ html: false,
+ disable: true,
+ focus: true,
+ custom: {},
+ errors: {
+ match: 'Does not match',
+ minlength: 'Not long enough'
+ },
+ feedback: {
+ success: 'glyphicon-ok',
+ error: 'glyphicon-remove'
+ }
+ }
+
+ Validator.VALIDATORS = {
+ 'native': function ($el) {
+ var el = $el[0]
+ if (el.checkValidity) {
+ return !el.checkValidity() && !el.validity.valid && (el.validationMessage || "error!")
+ }
+ },
+ 'match': function ($el) {
+ var target = $el.data('match')
+ return $el.val() !== $(target).val() && Validator.DEFAULTS.errors.match
+ },
+ 'minlength': function ($el) {
+ var minlength = $el.data('minlength')
+ return $el.val().length < minlength && Validator.DEFAULTS.errors.minlength
+ }
+ }
+
+ Validator.prototype.update = function () {
+ this.$inputs = this.$element.find(Validator.INPUT_SELECTOR)
+ .add(this.$element.find('[data-validate="true"]'))
+ .not(this.$element.find('[data-validate="false"]'))
+
+ return this
+ }
+
+ Validator.prototype.onInput = function (e) {
+ var self = this
+ var $el = $(e.target)
+ var deferErrors = e.type !== 'focusout'
+
+ if (!this.$inputs.is($el)) return
+
+ this.validateInput($el, deferErrors).done(function () {
+ self.toggleSubmit()
+ })
+ }
+
+ Validator.prototype.validateInput = function ($el, deferErrors) {
+ var value = getValue($el)
+ var prevErrors = $el.data('bs.validator.errors')
+ var errors
+
+ if ($el.is('[type="radio"]')) $el = this.$element.find('input[name="' + $el.attr('name') + '"]')
+
+ var e = $.Event('validate.bs.validator', {relatedTarget: $el[0]})
+ this.$element.trigger(e)
+ if (e.isDefaultPrevented()) return
+
+ var self = this
+
+ return this.runValidators($el).done(function (errors) {
+ $el.data('bs.validator.errors', errors)
+
+ errors.length
+ ? deferErrors ? self.defer($el, self.showErrors) : self.showErrors($el)
+ : self.clearErrors($el)
+
+ if (!prevErrors || errors.toString() !== prevErrors.toString()) {
+ e = errors.length
+ ? $.Event('invalid.bs.validator', {relatedTarget: $el[0], detail: errors})
+ : $.Event('valid.bs.validator', {relatedTarget: $el[0], detail: prevErrors})
+
+ self.$element.trigger(e)
+ }
+
+ self.toggleSubmit()
+
+ self.$element.trigger($.Event('validated.bs.validator', {relatedTarget: $el[0]}))
+ })
+ }
+
+
+ Validator.prototype.runValidators = function ($el) {
+ var errors = []
+ var deferred = $.Deferred()
+
+ $el.data('bs.validator.deferred') && $el.data('bs.validator.deferred').reject()
+ $el.data('bs.validator.deferred', deferred)
+
+ function getValidatorSpecificError(key) {
+ return $el.data(key + '-error')
+ }
+
+ function getValidityStateError() {
+ var validity = $el[0].validity
+ return validity.typeMismatch ? $el.data('type-error')
+ : validity.patternMismatch ? $el.data('pattern-error')
+ : validity.stepMismatch ? $el.data('step-error')
+ : validity.rangeOverflow ? $el.data('max-error')
+ : validity.rangeUnderflow ? $el.data('min-error')
+ : validity.valueMissing ? $el.data('required-error')
+ : null
+ }
+
+ function getGenericError() {
+ return $el.data('error')
+ }
+
+ function getErrorMessage(key) {
+ return getValidatorSpecificError(key)
+ || getValidityStateError()
+ || getGenericError()
+ }
+
+ $.each(this.validators, $.proxy(function (key, validator) {
+ var error = null
+ if ((getValue($el) || $el.attr('required')) &&
+ ($el.data(key) || key == 'native') &&
+ (error = validator.call(this, $el))) {
+ error = getErrorMessage(key) || error
+ !~errors.indexOf(error) && errors.push(error)
+ }
+ }, this))
+
+ if (!errors.length && getValue($el) && $el.data('remote')) {
+ this.defer($el, function () {
+ var data = {}
+ data[$el.attr('name')] = getValue($el)
+ $.get($el.data('remote'), data)
+ .fail(function (jqXHR, textStatus, error) { errors.push(getErrorMessage('remote') || error) })
+ .always(function () { deferred.resolve(errors)})
+ })
+ } else deferred.resolve(errors)
+
+ return deferred.promise()
+ }
+
+ Validator.prototype.validate = function () {
+ var self = this
+
+ $.when(this.$inputs.map(function (el) {
+ return self.validateInput($(this), false)
+ })).then(function () {
+ self.toggleSubmit()
+ self.focusError()
+ })
+
+ return this
+ }
+
+ Validator.prototype.focusError = function () {
+ if (!this.options.focus) return
+
+ var $input = this.$element.find(".has-error:first :input")
+ if ($input.length === 0) return
+
+ $('html, body').animate({scrollTop: $input.offset().top - Validator.FOCUS_OFFSET}, 250)
+ $input.focus()
+ }
+
+ Validator.prototype.showErrors = function ($el) {
+ var method = this.options.html ? 'html' : 'text'
+ var errors = $el.data('bs.validator.errors')
+ var $group = $el.closest('.form-group')
+ var $block = $group.find('.help-block.with-errors')
+ var $feedback = $group.find('.form-control-feedback')
+
+ if (!errors.length) return
+
+ errors = $('')
+ .addClass('list-unstyled')
+ .append($.map(errors, function (error) { return $(' ')[method](error) }))
+
+ $block.data('bs.validator.originalContent') === undefined && $block.data('bs.validator.originalContent', $block.html())
+ $block.empty().append(errors)
+ $group.addClass('has-error has-danger')
+
+ $group.hasClass('has-feedback')
+ && $feedback.removeClass(this.options.feedback.success)
+ && $feedback.addClass(this.options.feedback.error)
+ && $group.removeClass('has-success')
+ }
+
+ Validator.prototype.clearErrors = function ($el) {
+ var $group = $el.closest('.form-group')
+ var $block = $group.find('.help-block.with-errors')
+ var $feedback = $group.find('.form-control-feedback')
+
+ $block.html($block.data('bs.validator.originalContent'))
+ $group.removeClass('has-error has-danger has-success')
+
+ $group.hasClass('has-feedback')
+ && $feedback.removeClass(this.options.feedback.error)
+ && $feedback.removeClass(this.options.feedback.success)
+ && getValue($el)
+ && $feedback.addClass(this.options.feedback.success)
+ && $group.addClass('has-success')
+ }
+
+ Validator.prototype.hasErrors = function () {
+ function fieldErrors() {
+ return !!($(this).data('bs.validator.errors') || []).length
+ }
+
+ return !!this.$inputs.filter(fieldErrors).length
+ }
+
+ Validator.prototype.isIncomplete = function () {
+ function fieldIncomplete() {
+ var value = getValue($(this))
+ return !(typeof value == "string" ? $.trim(value) : value)
+ }
+
+ return !!this.$inputs.filter('[required]').filter(fieldIncomplete).length
+ }
+
+ Validator.prototype.onSubmit = function (e) {
+ this.validate()
+ if (this.isIncomplete() || this.hasErrors()) e.preventDefault()
+ }
+
+ Validator.prototype.toggleSubmit = function () {
+ if (!this.options.disable) return
+ this.$btn.toggleClass('disabled', this.isIncomplete() || this.hasErrors())
+ }
+
+ Validator.prototype.defer = function ($el, callback) {
+ callback = $.proxy(callback, this, $el)
+ if (!this.options.delay) return callback()
+ window.clearTimeout($el.data('bs.validator.timeout'))
+ $el.data('bs.validator.timeout', window.setTimeout(callback, this.options.delay))
+ }
+
+ Validator.prototype.reset = function () {
+ this.$element.find('.form-control-feedback')
+ .removeClass(this.options.feedback.error)
+ .removeClass(this.options.feedback.success)
+
+ this.$inputs
+ .removeData(['bs.validator.errors', 'bs.validator.deferred'])
+ .each(function () {
+ var $this = $(this)
+ var timeout = $this.data('bs.validator.timeout')
+ window.clearTimeout(timeout) && $this.removeData('bs.validator.timeout')
+ })
+
+ this.$element.find('.help-block.with-errors')
+ .each(function () {
+ var $this = $(this)
+ var originalContent = $this.data('bs.validator.originalContent')
+
+ $this
+ .removeData('bs.validator.originalContent')
+ .html(originalContent)
+ })
+
+ this.$btn.removeClass('disabled')
+
+ this.$element.find('.has-error, .has-danger, .has-success').removeClass('has-error has-danger has-success')
+
+ return this
+ }
+
+ Validator.prototype.destroy = function () {
+ this.reset()
+
+ this.$element
+ .removeAttr('novalidate')
+ .removeData('bs.validator')
+ .off('.bs.validator')
+
+ this.$inputs
+ .off('.bs.validator')
+
+ this.options = null
+ this.validators = null
+ this.$element = null
+ this.$btn = null
+
+ return this
+ }
+
+ // VALIDATOR PLUGIN DEFINITION
+ // ===========================
+
+
+ function Plugin(option) {
+ return this.each(function () {
+ var $this = $(this)
+ var options = $.extend({}, Validator.DEFAULTS, $this.data(), typeof option == 'object' && option)
+ var data = $this.data('bs.validator')
+
+ if (!data && option == 'destroy') return
+ if (!data) $this.data('bs.validator', (data = new Validator(this, options)))
+ if (typeof option == 'string') data[option]()
+ })
+ }
+
+ var old = $.fn.validator
+
+ $.fn.validator = Plugin
+ $.fn.validator.Constructor = Validator
+
+
+ // VALIDATOR NO CONFLICT
+ // =====================
+
+ $.fn.validator.noConflict = function () {
+ $.fn.validator = old
+ return this
+ }
+
+
+ // VALIDATOR DATA-API
+ // ==================
+
+ $(window).on('load', function () {
+ $('form[data-toggle="validator"]').each(function () {
+ var $form = $(this)
+ Plugin.call($form, $form.data())
+ })
+ })
+
+}(jQuery);
diff --git a/Web Development/Basic/Tourist Places/jw.html b/Web Development/Basic/Tourist Places/jw.html
new file mode 100644
index 000000000..6c855f5d4
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/jw.html
@@ -0,0 +1,378 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
JW Marriott Mumbai Hotel
+
Hello Visiters !!!
+
+
+Unparalleled luxury and world-class service await you at JW Marriott Mumbai Sahar in India.
+Our 5-star hotel accommodations feature 588 spacious rooms with pillow-top beds, marble bathrooms and high-speed Wi-Fi, as well as generous work desks and 24-hour room service. Sample a mélange of cuisines, including authentic Italian, Japanese or classic Indian at any one of our luxury hotel's restaurants. Our well-appointed indoor convention spaces are ideal for corporate gatherings, award ceremonies, social functions or weddings. The hotel's Spa By JW, fitness center and poolside lounge area with cabanas offer the perfect places to unwind and soak up the warm sun. Our hotel is conveniently located in Andheri East, just a short drive from Mumbai's international and domestic airport terminals and convenient to the area's business hubs.
+Reserve your stay at the JW Marriott Mumbai Sahar for a 5-star luxury hotel experience.
+LOCAL ATTRACTIONS ,Gateway of India ,Shivaji Maharaj Marg, Colaba ,Juhu Beach ,Juhu ,Flora Fountain ,Hutatma Chowk, Fort ,Isckon Temple Elephanta Caves Haji Ali Dargah
+Film City ,Siddhivinayak temple ,Prabhadevi ,Khotachiwadi ,Girgaon ,Mumbadevi Temple ,Borivali ,Kala Ghoda ,Fort
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/kc.html b/Web Development/Basic/Tourist Places/kc.html
new file mode 100644
index 000000000..80766b167
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/kc.html
@@ -0,0 +1,389 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
KC Residency Hotel
+Hello Visiters !!!
+
+
+About HOTEL KC RESIDENCY
+Parking facility is available nearby
+Located at sector 35B which is at the heart of the city..
+Location & Surroundings :
+Hotel is 13.2 km from Chandigarh International Airport.
+The hotel is also accesible from ISBT Chandigarh (2.4 km) .
+For car or cabs, paid public parking is available at the hotel.
+The hotel is at the distance of (9.5 km) from Bus Stand,(11.2 km) from Chandigarh Railway Station and (11.2 km) from Chandigarh International Airport.A 3 star hotel, HOTEL KC RESIDENCY is located in Sector 35. To make trip memorable one can visit well known places like (4.9 km) Zakir Hussain Rose Garden,(5.4 km)Government Museum and Art Gallery,(6.0 km)Rock Garden,(7.9 km)Sukhna Lake and many more. More than 75 travellers have appreciated the property's location during their stay here.
+
+
+Restaurants at the property :
+Restaurant within the property serves variety of dishes.
+ You can enjoy drinks at the bar. The multi cuisine restaurant serves choicest dishes from around the world to cater to the varied taste of travelers.The availability of good breakfast at the property is liked by travellers.
+
+Room details and Amenities
+The hotel has rooms. They come with Wi-Fi and Electric Kettle.
+The hotel has conference room for meetings and events.
+Experience a memorable stay at Hotel KC Residency!.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/lalit.html b/Web Development/Basic/Tourist Places/lalit.html
new file mode 100644
index 000000000..bc41e604d
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/lalit.html
@@ -0,0 +1,389 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Lalit Hotel Mumbai
+Hello Visiters !!!
+
+
+About The Lalit Mumbai:
+
+An Island of Tranquility nestled in close proximity to the hustle and bustle of Takeoffs and Landings.
+ 5-Star luxury next to the Mumbai International Airport.
+
+
+
+The Lalit Mumbai
+An Island of Tranquility nestled in close proximity to the hustle and bustle of Takeoffs and Landings. 5-Star luxury next to the Mumbai International Airport.
+Property Highlights
+The 369 hotel rooms and suites are comfortable, spacious and a perfect blend of modern and traditional, with Indian touches added to the decor. The property has an expansive outdoor swimming pool. The Lalit has five restaurants and bars which are among the most acclaimed fine dining options in the city of Mumbai. It has a shopping arena for souvenir shopping. 46,000 square feet of conference and banqueting space for both indoor and outdoor events, this is among the largest in the city. It offers airport transfer facilities , turn down service and 24-hour room and concierge services.
+
+
+Room details and Amenities
+The property's accommodation units are Suites, Rooms and Apartments.
+Different categories of suites are Executive Suite, Spa Suite, Luxury Suite and The Lalit Legacy Suite.
+The different rooms are Deluxe Room, Premier Room and Club Room.
+One-Bedroom, Two-Bedroom and Three-Bedroom are the varied types of apartments on-site.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/login.html b/Web Development/Basic/Tourist Places/login.html
new file mode 100644
index 000000000..0cb6c6c5f
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/login.html
@@ -0,0 +1,381 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/manali.html b/Web Development/Basic/Tourist Places/manali.html
new file mode 100644
index 000000000..9ce9cddc7
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/manali.html
@@ -0,0 +1,383 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
MANALI
+Lover's Paradise - India's Honeymoon capital"
+
Manali Tourism :
+Nestled in between the snow-capped slopes of the Pir Panjal and the Dhauladhar ranges,
+ Manali is one of the most popular hill stations in the country. With jaw-dropping views,
+ lush green forests, sprawling meadows carpeted with flowers, gushing blue streams, a perpetual
+ fairy-tale like mist lingering in the air, and a persistent fragrance of pines - Manali has been
+ blessed with extraordinary scenic beauty. From museums to temples, from quaint little hippie
+ villages to bustling upscale streets, river adventures to trekking trails, Manali has every reason
+ to be the tourist magnet it is, all year round.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Web Development/Basic/Tourist Places/mumbai.html b/Web Development/Basic/Tourist Places/mumbai.html
new file mode 100644
index 000000000..60e1e5074
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/mumbai.html
@@ -0,0 +1,384 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Mumbai Tourism
+
+"The City of Dreams"
+
+Mumbai, the capital city of the Indian state of Maharashtra, is a spectacular paradox of chaos and hope, glamour and squalor, modernity and tradition. Famously known as the City of Dreams, Mumbai – formerly known as Bombay - Mumbai is a beautifully blended melting pot of cultures and lifestyles.
+
+The city soaks in everything into its fabric, making it its very own.
+ From upcoming actors struggling to make it big on the silver screen; from Bolly superstars to big industrialists to tribes of fisherman and slum dwellers, Mumbai is a city that proudly boasts of stories from different walks of human survival.
+
+One of the main centres in the country of art, culture, music, dance and theatre, Mumbai is a dynamic, cosmopolitan city that has been running for years solely on the indomitable spirit of the Mumbaikars.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Web Development/Basic/Tourist Places/oberoi.html b/Web Development/Basic/Tourist Places/oberoi.html
new file mode 100644
index 000000000..c7c4b6cb4
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/oberoi.html
@@ -0,0 +1,386 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Oberoi Hotel
+Hello Visiters !!!
+
+
+Originally a collection of seven islands, the modern city of Mumbai came into being during the mid eighteenth century by reclaiming land from the sea. As well as being the financial and commercial capital of India, Mumbai is also home to Bollywood; one of the largest centres of film production in the world.
+
+The Oberoi, Mumbai is a striking example of modern architecture that lifts you up over Marine Drive to enjoy magnificent views of the ocean and 'Queen’s Necklace' lights along the shoreline. Only at the best 5 star hotel in Mumbai.
+
+Spacious accommodation, fine cuisines and our genuine hospitality are complemented by a range of services for all guests; with special care taken for single lady travellers at the best hotel in Mumbai. We aim to ensure that your stay with us will be as comfortable, convenient and pleasant as can be.
+
+
+
+
Email:Generalmanager.mumbai@oberoihotels.com
+
++91 22 6632 5757
+ Local Time 12:49 AM
+
+Phone : +91 22 6632 6205
+Location :The Oberoi, Nariman Point, Mumbai 400021, India
+Timings :6.30 am to 11.30 pm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/scss/_global-styles.scss b/Web Development/Basic/Tourist Places/scss/_global-styles.scss
new file mode 100644
index 000000000..a4419e466
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/scss/_global-styles.scss
@@ -0,0 +1,804 @@
+//Global Styles Start
+
+body {
+ font-family: $lato-font;
+ color: $text-color;
+ font-size: 15px;
+ line-height: 25px;
+ font-weight: 400;
+ overflow-x: hidden;
+ text-rendering: optimizeLegibility !important;
+ -webkit-font-smoothing: antialiased !important;
+}
+
+#container {
+ background: #fff;
+ position: relative;
+ overflow-x: hidden;
+ margin: 0 auto;
+}
+
+.boxed-page {
+ position: relative;
+ overflow-x: hidden;
+ width: 1220px;
+ margin: 0 auto;
+ background-color: #fff;
+ -webkit-box-shadow:0 0 10px rgba(0,0,0,0.3);
+ -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
+ -o-box-shadow: 0 0 10px rgba(0,0,0,0.3);
+ box-shadow: 0 0 10px rgba(0,0,0,0.3);
+
+ .tp-leftarrow {
+ left: 70px !important;
+ }
+ .tp-rightarrow {
+ left: 95% !important;
+ }
+
+ .navbar-fixed-top {
+ max-width: 1220px;
+ margin: 0 auto;
+ }
+}
+
+ul, ol {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ text-transform: uppercase;
+ margin: 0;
+ padding: 0;
+ font-weight:600;
+ color: $title-color;
+ letter-spacing: 1px;
+ font-family: $lato-font!important;
+}
+
+img {
+ max-width: 100%;
+ height: auto;
+}
+
+//preloader styles
+
+//#preloader {
+// position : fixed;
+// z-index : 9999;
+// top : 0;
+// left : 0;
+// overflow : visible;
+// width : 100%;
+// height : 100%;
+// background: #fff url( '../images/loading.gif') no-repeat center center;
+//}
+
+.text-left {
+ text-align: left;
+}
+.text-right {
+ text-align: right;
+}
+
+.text-brand-color {
+ color: $brand-primary;
+}
+
+.img-center {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.circle {
+ -webkit-border-radius: 100%;
+ border-radius: 100%;
+}
+
+
+.white {
+ color: #fff !important;
+}
+
+a {
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ text-decoration: none;
+ &:hover {
+ text-decoration: none;
+ }
+ &:focus {
+ text-decoration: none;
+ color: $text-color;
+ outline: 0;
+ }
+}
+
+::-moz-selection {
+ background: $brand-primary;
+ color: #fff;
+ text-shadow: none;
+ outline: none;
+}
+
+::selection {
+ background: $brand-primary;
+ color: #fff;
+ text-shadow: none;
+ outline: none;
+}
+
+.main-container {
+ overflow: hidden;
+}
+.dropcap {
+ font-size: 38px;
+ font-weight: 400;
+ line-height: 58px;
+ float: left;
+ width: 60px;
+ height: 60px;
+ padding: 0 10px 0 14px;
+
+ &.bg {
+ margin-right: 10px;
+ margin-bottom: 0;
+ color: $white;
+ background: $brand-primary;
+ text-align: center;
+ color: #fff;
+ }
+
+ &.yellow-bg {
+ background: $yellow;
+ margin-right: 10px;
+ }
+
+ &.circle {
+ border-radius: 50%;
+ }
+
+ &.rounded {
+ border-radius: 5px;
+ }
+}
+
+
+
+hr {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.btn {
+ -webkit-border-radius: 0;
+ border-radius: 0;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+}
+.btn-primary {
+ font-size: 14px;
+ font-style: normal !important;
+ line-height: 17px;
+ margin: 0;
+ padding: 12px 25px;
+ letter-spacing: 0;
+ text-transform: uppercase;
+ color: $white !important;
+ border: 0;
+ background: $brand-primary;
+ text-shadow: none;
+ -webkit-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+
+ &:hover {
+ background: $black-russian-grey;
+ color: #fff !important;
+ }
+
+ &.white {
+ background: #fff;
+ color: $brand-primary !important;
+ &:hover {
+ background: $black-russian-grey;
+ }
+ }
+
+ &.black {
+ background: $black-russian-grey;
+ color: #fff;
+
+ &:hover {
+ background: $brand-primary;
+ color: #fff !important;
+ }
+ }
+
+ &.yellow {
+ background: $yellow;
+ color: $white !important;
+ &:hover {
+ background: $black-russian-grey;
+ }
+ }
+
+ &.blue {
+ background: $light-blue;
+ color: $white !important;
+ &:hover {
+ background: $black-russian-grey;
+ }
+ }
+}
+
+
+.right-half, .left-half {
+ position: absolute;
+ right: 0;
+ top: 0;
+ height: 100%;
+ background-position: center center;
+ background-size: cover;
+
+ &.width33 {
+ width: 33%;
+ }
+ &.width50 {
+ width: 50%;
+ }
+}
+
+.left-half {
+ left: 0;
+}
+
+.breadcrumb-section {
+ padding: 100px 0;
+}
+
+.breadcrumb {
+ background: transparent;
+ border-radius: 0;
+ color: #fff;
+ //float: right;
+ text-align: center;
+ font-size: 12px;
+ font-weight: 600;
+ text-transform: uppercase;
+ margin-bottom: 0;
+ letter-spacing: 0.4em;
+
+ li {
+ display: inline-block;
+ padding: 0 5px;
+
+ a {
+ color: #fff;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ &:hover {
+ color: $brand-primary;
+ }
+ }
+
+ &:last-child {
+ color: $brand-primary;
+ }
+
+ &:after {
+ content: "/";
+ padding-left: 5px;
+ }
+
+ &:first-child, &:last-child {
+ &:after {
+ content: "";
+ }
+ }
+ }
+}
+
+.page-title {
+ text-align: center;
+ margin-bottom: 30px;
+
+ h1 {
+ font-size: 30px;
+ line-height: 54px;
+ letter-spacing: 0.3em;
+ font-weight: 700;
+ text-transform: uppercase;
+ margin: 0;
+ color: #fff;
+ }
+}
+
+// Navbar Fixed Top
+
+.navbar-fixed-top {
+ position: fixed !important;
+ right: 0;
+ left: 0;
+ z-index: 1100;
+ -webkit-animation-name: fadeInDown;
+ animation-name: fadeInDown;
+ animation-duration: .8s;
+ -webkit-animation-duration: .8s;
+ animation-timing-function: ease-in-out;
+ -webkit-animation-timing-function: ease-in-out;
+}
+
+.space-30 {
+ margin-top: 30px;
+}
+
+//margins start
+.mt60 {
+ margin-top: 60px;
+}
+.mt65 {
+ margin-top: 65px;
+}
+.mt50 {
+ margin-top: 50px;
+}
+.mt30 {
+ margin-top: 30px;
+}
+.mt25 {
+ margin-top: 25px !important;
+}
+.mt20 {
+ margin-top: 20px !important;
+}
+.mb10 {
+ margin-bottom: 10px !important;
+}
+.mb15 {
+ margin-bottom: 15px !important;
+}
+.mb20 {
+ margin-bottom: 20px;
+}
+.mb25 {
+ margin-bottom: 25px;
+}
+.mb30 {
+ margin-bottom: 30px;
+}
+.mb40 {
+ margin-bottom: 40px;
+}
+.mb50 {
+ margin-bottom: 50px !important;
+}
+.mb60 {
+ margin-bottom: 60px;
+}
+.mr10 {
+ margin-right: 10px;
+}
+.mr50 {
+ margin-right: 50px !important;
+}
+.ml50 {
+ margin-left: 50px !important;
+}
+//margins end
+//paddings start
+.pad15 {
+ padding: 15px 0;
+}
+.pad30 {
+ padding: 30px 0;
+}
+.pad50 {
+ padding: 50px 0;
+}
+.pad60 {
+ padding: 60px 0;
+}
+.pad80 {
+ padding: 80px 0;
+}
+.pad100 {
+ padding: 100px 0;
+}
+.pad120 {
+ padding: 120px 0;
+}
+
+.pad-t100 {
+ padding-top: 100px;
+}
+.pad-t80 {
+ padding-top: 80px;
+}
+.pad-t30 {
+ padding-top: 30px;
+}
+.pad-t60 {
+ padding-top: 60px;
+}
+.pad-t90 {
+ padding-top: 90px;
+}
+.pad-t120 {
+ padding-top: 120px;
+}
+.pad-b10 {
+ padding-bottom: 10px;
+}
+.pad-b30 {
+ padding-bottom: 30px;
+}
+.pad-b40 {
+ padding-bottom: 40px;
+}
+.pad-b50 {
+ padding-bottom: 50px;
+}
+.pad-b60 {
+ padding-bottom: 60px;
+}
+.pad-b70 {
+ padding-bottom: 70px;
+}
+.pad-b80 {
+ padding-bottom: 80px;
+}
+.pad-b100 {
+ padding-bottom: 100px;
+}
+//paddings start
+
+
+.br {
+ border-right: 1px solid #ddd;
+}
+
+.bt {
+ border-top: 1px solid #ddd;
+}
+
+
+
+.section-title{
+ position: relative;
+ margin: 0 0 80px;
+
+ h3 {
+ position: relative;
+ font-size: 40px;
+ line-height: 42px;
+ color: rgba(34, 34, 34, 1);
+
+ span {
+ color: $brand-primary !important
+ }
+
+ &:after {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: 70px;
+ height: 2px;
+ margin: -20px auto;
+ content: '';
+ opacity: 1;
+ background: $brand-primary;
+ }
+ }
+
+ &.white {
+ h3 {
+ color: $white;
+
+ &:after {
+ //background: #fff !important;
+ }
+ }
+ }
+
+ &.left {
+ h3:after {
+ left: 0;
+ right: 100%;
+ }
+ }
+
+
+ span {
+ // &:before {
+ // content: '...';
+ // display: inline-block;
+ // color: $brand-primary;
+ // font-size: 40px;
+ // }
+ i {
+ &:before {
+ font-size: 40px;
+ color: $brand-primary;
+ }
+ }
+ }
+}
+
+.footer-title {
+
+ h3 {
+ font-size: 17px;
+ text-transform: uppercase;
+ color: #ffffff;
+ position: relative;
+ margin-bottom: 20px;
+ }
+}
+
+.section-title-sm {
+ h3 {
+ font-size: 30px;
+ line-height: 30px;
+ text-transform: uppercase;
+ span {
+ color: $brand-primary;
+ }
+ }
+}
+
+.section-title-2{
+ position: relative;
+ margin: 0 0 50px;
+ h3 {
+ color: #d2d2d2;
+ font-size: 18px;
+ line-height: 22px;
+ margin-bottom: 50px;
+ font-weight: normal;
+
+ span {
+ color: $brand-primary !important
+ }
+ }
+ &:after {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 40px;
+ height: 2px;
+ margin: -27px auto;
+ content: '';
+ opacity: 1;
+ background: $brand-primary;
+ }
+ &.white {
+ h3 {
+ color: $white;
+ }
+ }
+ span {
+ // &:before {
+ // content: '...';
+ // display: inline-block;
+ // color: $brand-primary;
+ // font-size: 40px;
+ // }
+ i {
+ &:before {
+ font-size: 40px;
+ color: $brand-primary;
+ }
+ }
+ }
+
+ &.center {
+ text-align: center;
+
+ &:after {
+ left: 0;
+ right: 0;
+ width: 40px;
+ height: 3px;
+ margin: -28px auto;
+
+ }
+ }
+}
+
+blockquote {
+ padding: 12.5px 25px;
+ margin: 0 0 25px;
+ font-style: italic;
+ border-left: 3px solid $black-russian-grey;
+
+ p {
+ font-size: 18px;
+ color: #888;
+ line-height: 25px;
+ font-weight: 400;
+ }
+
+ &.primary {
+ border-left-color: $brand-primary;
+ }
+
+ &.ash-bg {
+ background-color: #f7f7f7;
+ }
+}
+
+.divider {
+ margin-top: 20px;
+ margin-bottom: 20px;
+ border-top: 1px solid #999;
+
+ &.dotted {
+ border-top: 1px dotted #999;
+ }
+
+ &.dashed {
+ border-top: 1px dashed #999;
+ }
+}
+
+.bg-color-1 {
+ background: #1f2125;
+}
+
+.bg-color-2 {
+ background: #111010;
+}
+
+.parallax {
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-position: 50% 0;
+ background-size: cover;
+}
+
+
+
+// flaticon override start
+[class^="flaticon-"]:before,
+[class*=" flaticon-"]:before,
+[class^="flaticon-"]:after,
+[class*=" flaticon-"]:after {
+ margin-left: 0;
+}
+//flaticon override end
+
+//FontAwesome override start
+.fa-ul {
+ li {
+ padding: 5px 0;
+ .fa-li {
+ margin-top: 8px;
+ color: $brand-primary;
+ }
+ }
+}
+//FontAwesome override end
+
+//FlexSlider override start
+.flex-control-thumbs {
+ margin: 20px 0 0;
+ position: static;
+ overflow: visible;
+ li {
+ float: none;
+ width: 60px;
+ height: 60px;
+ overflow: hidden;
+ transform: rotate(-45deg);
+ margin: 0 8px;
+ }
+ img {
+ border: 2px solid #545454;
+ opacity: 0.4;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ position: relative;
+ z-index: 0;
+ &.flex-active {
+ border: 2px solid $brand-primary;
+ z-index: 1;
+ }
+ &:hover {
+ border: 2px solid $brand-primary;
+ z-index: 1;
+ }
+ }
+}
+//FlexSlider override end
+
+.hvr-in {
+ display: inline-block;
+ vertical-align: middle;
+ -webkit-transform: perspective(1px) translateZ(0);
+ transform: perspective(1px) translateZ(0);
+ box-shadow: 0 0 1px transparent;
+ position: relative;
+ background: $brand-primary;
+ -webkit-transition-property: color;
+ transition-property: color;
+ -webkit-transition-duration: 0.3s;
+ transition-duration: 0.3s;
+ &:before {
+ content: "";
+ position: absolute;
+ z-index: -1;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ background: #1f2125;
+ -webkit-transform: scaleX(1);
+ transform: scaleX(1);
+ -webkit-transform-origin: 50%;
+ transform-origin: 50%;
+ -webkit-transition-property: transform;
+ transition-property: transform;
+ -webkit-transition-duration: 0.3s;
+ transition-duration: 0.3s;
+ -webkit-transition-timing-function: ease-out;
+ transition-timing-function: ease-out;
+ }
+ &:hover, &:focus, &:active {
+ color: white;
+ &:before, &:before, &:before {
+ -webkit-transform: scaleX(0);
+ transform: scaleX(0);
+ }
+ }
+}
+
+.hvr-out {
+ display: inline-block;
+ vertical-align: middle;
+ -webkit-transform: perspective(1px) translateZ(0);
+ transform: perspective(1px) translateZ(0);
+ box-shadow: 0 0 1px transparent;
+ position: relative;
+ background: $brand-primary;
+ -webkit-transition-property: color;
+ transition-property: color;
+ -webkit-transition-duration: 0.3s;
+ transition-duration: 0.3s;
+ &:before {
+ content: "";
+ position: absolute;
+ z-index: -1;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ background: #000;
+ -webkit-transform: scaleX(0);
+ transform: scaleX(0);
+ -webkit-transform-origin: 50%;
+ transform-origin: 50%;
+ -webkit-transition-property: transform;
+ transition-property: transform;
+ -webkit-transition-duration: 0.3s;
+ transition-duration: 0.3s;
+ -webkit-transition-timing-function: ease-out;
+ transition-timing-function: ease-out;
+ }
+ &:hover, &:focus, &:active {
+ color: white;
+ &:before, &:before, &:before {
+ -webkit-transform: scaleX(1);
+ transform: scaleX(1);
+ }
+ }
+}
+
+.shadow {
+ box-shadow: -25px 0 30px -15px rgba(0, 0, 0, 0.15), 25px 0 30px -15px rgba(0, 0, 0, 0.15);
+}
+
+
+//Global Styles End
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/scss/_navbar.scss b/Web Development/Basic/Tourist Places/scss/_navbar.scss
new file mode 100644
index 000000000..2e19a8740
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/scss/_navbar.scss
@@ -0,0 +1,643 @@
+
+
+//Navbar Start
+@media screen and (min-width: 768px) {
+
+
+ .navbar.navbar-default {
+ box-shadow: 0 0 8px rgba(0,0,0,0.8);
+ margin-bottom: 0;
+ background: #fff;
+ border: none;
+ border-radius: 0;
+ //border-bottom: 1px solid #d7d7d7;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+
+ .navbar-brand {
+ margin-top: 10px;
+ }
+
+ .navbar-collapse {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+
+ .navbar-nav {
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+
+ > li {
+ position: inherit;
+
+ > a {
+ color: #333;
+ font-size: 13px;
+ font-weight: 600;
+ text-transform: uppercase;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+ padding: 35px 20px;
+
+
+
+ &:hover,
+ &.active {
+ color: $brand-primary !important;
+ }
+ }
+ }
+
+ li.drop {
+ position: relative;
+
+ ul.drop-down {
+ margin: 0;
+ position: absolute;
+ top: 80%;
+ left: 0px;
+ width: 240px;
+ visibility: hidden;
+ opacity: 0;
+ z-index: 3;
+ text-align: left;
+ padding: 10px 20px;
+ background: #ffffff;
+ box-shadow: 0 0 4px #bdbdbd;
+ -webkit-box-shadow: 0 0 4px #bdbdbd;
+ -moz-box-shadow: 0 0 4px #bdbdbd;
+ -o-box-shadow: 0 0 4px #bdbdbd;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+
+ li {
+ list-style: none;
+ display: block;
+ margin: 0;
+ position: relative;
+ //border-bottom: 1px solid rgba(220, 220, 220, 0.5);
+ &:last-child {
+ border-bottom: 0;
+ }
+
+ a {
+ display: inline-block;
+ text-transform: uppercase;
+ text-decoration: none;
+ transition: all 0.3s ease-in-out;
+ -moz-transition: all 0.3s ease-in-out;
+ -webkit-transition: all 0.3s ease-in-out;
+ -o-transition: all 0.3s ease-in-out;
+ display: block;
+ color: #333;
+ font-size: 13px;
+ padding: 10px;
+ font-weight: 400;
+ margin: 0;
+
+ i {
+ float: right;
+ }
+
+ &:hover,
+ &.active {
+ background: $brand-primary;
+ color: #fff;
+ }
+ }
+
+ ul.drop-down.level3 {
+ top: 0px;
+ left: 80%;
+ width: 200px;
+ border-bottom: none;
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+ }
+
+ &:hover {
+ ul.drop-down.level3 {
+ opacity: 1;
+ left: 100%;
+ visibility: visible;
+ }
+ }
+
+
+
+ input[type="search"] {
+ margin: 10px 25px;
+ box-shadow: 0;
+ border: 1px solid #ccc;
+ outline: none;
+ font-size: 13px;
+ padding-left: 10px;
+
+ &:focus {
+ border: 1px solid $brand-primary;
+ }
+ }
+ }
+
+ &.right-side {
+ left: inherit;
+ right: 0;
+ }
+ }
+
+ &:hover {
+ > ul.drop-down {
+ visibility: visible;
+ opacity: 1;
+ top: 100%;
+ }
+ }
+ }
+
+ li.megadrop {
+
+ &:hover {
+ .megadrop-down {
+ visibility: visible;
+ opacity: 1;
+ top: 100%;
+ }
+ }
+
+ .megadrop-down {
+ background: transparent;
+ z-index: 999;
+ position: absolute;
+ width: 100%;
+ top: 80%;
+ left: 0;
+ visibility: hidden;
+ opacity: 0;
+ transition: all 0.3s ease-in;
+ -moz-transition: all 0.3s ease-in;
+ -webkit-transition: all 0.3s ease-in;
+ -o-transition: all 0.3s ease-in;
+
+ .dropdown {
+ background: #ffffff;
+ text-align: left;
+ padding: 25px;
+ box-shadow: 0 0 4px #bdbdbd;
+ -webkit-box-shadow: 0 0 4px #bdbdbd;
+ -moz-box-shadow: 0 0 4px #bdbdbd;
+ -o-box-shadow: 0 0 4px #bdbdbd;
+
+ ul {
+
+ &:last-child {
+ li {
+ border-right: none;
+ }
+ }
+
+ li {
+ list-style: none;
+
+ &:last-child {
+ padding-bottom: 0;
+ border: 0;
+ }
+
+ a {
+ color: #333;
+ display: inline-block;
+ text-decoration: none;
+ text-transform: uppercase;
+ transition: all 0.3s ease-in-out;
+ -moz-transition: all 0.3s ease-in-out;
+ -webkit-transition: all 0.3s ease-in-out;
+ -o-transition: all 0.3s ease-in-out;
+ display: block;
+ padding: 10px;
+ font-size: 13px;
+ font-weight: 400;
+ margin: 0;
+
+ i {
+ padding-right: 5px;
+ }
+
+ &:hover,
+ &.active {
+ background: $brand-primary;
+ color: #fff;
+ }
+ }
+ }
+ }
+
+ }
+ }
+ }
+
+
+
+ }
+
+
+
+
+ &.primary-color {
+ background-color: $brand-primary;
+ }
+
+ &.dark-color {
+ background-color: #222;
+ }
+
+ &.boxed-width.primary-color {
+ background-color: transparent;
+ .navbar-collapse {
+ background-color: $brand-primary;
+ }
+
+ box-shadow: none;
+ }
+
+ &.boxed-width.dark-color {
+ background-color: transparent;
+ .navbar-collapse {
+ background-color: #222;
+ }
+
+ box-shadow: none;
+ }
+
+ &.primary-color {
+
+ .navbar-nav {
+
+ > li {
+
+ > a {
+ color: #333 !important;
+
+ &:hover,
+ &.active {
+ color: #fff !important;
+
+ }
+ }
+ }
+
+ li.drop {
+
+ ul.drop-down {
+ background: $brand-primary;
+
+ li {
+ a {
+ color: #333;
+
+ &:hover,
+ &.active {
+ color: #fff;
+ }
+ }
+ }
+ }
+ }
+
+ li.megadrop {
+
+ .megadrop-down {
+
+ .dropdown {
+ background: lighten( $brand-primary, 5% );
+
+ ul {
+
+ li {
+
+ a {
+ color: #333;
+
+ &:hover,
+ &.active {
+ color: #fff;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ &.dark-color {
+
+ .navbar-nav {
+
+ > li {
+
+ > a {
+ color: #fff !important;
+
+ &:hover,
+ &.active {
+ color: $brand-primary !important;
+
+ }
+ }
+ }
+
+ li.drop {
+
+ ul.drop-down {
+ background: #222;
+
+ li {
+ a {
+ color: #fff;
+
+ &:hover,
+ &.active {
+ color: #fff;
+ }
+ }
+ }
+ }
+ }
+
+ li.megadrop {
+
+ .megadrop-down {
+
+ .dropdown {
+ background: lighten( #222, 5% );
+
+ ul {
+
+ li {
+
+ a {
+ color: #fff;
+
+ &:hover,
+ &.active {
+ color: #fff;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+ // For Bottom Menu
+
+ &.bottom-nav {
+
+ .navbar-brand {
+ margin-top: 0;
+ }
+
+ .navbar-nav {
+
+ > li {
+
+ > a {
+ padding: 20px 30px;
+ }
+ }
+ }
+
+ &.primary-color {
+
+ .navbar-nav {
+
+ > li {
+
+ > a {
+
+ &:hover,
+ &.active {
+ background: darken( $brand-primary, 5% );
+
+ }
+ }
+ }
+ }
+ }
+
+ &.dark-color {
+
+ .navbar-nav {
+
+ > li {
+
+ > a {
+
+ &:hover,
+ &.active {
+ background: darken( #222, 5% );
+
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+
+ }
+
+
+}
+//Navbar End
+
+@media screen and (min-width: 768px) and (max-width: 992px) {
+
+ .navbar-default {
+
+ .navbar-brand {
+ padding: 20px 15px 10px !important;
+ }
+ }
+}
+
+@media screen and (max-width: 767px) {
+ .navbar-default {
+ text-align: left;
+ margin-bottom: 0;
+
+ .navbar-brand {
+ img {
+ margin-top: 10px;
+ }
+ }
+
+ .navbar-collapse.collapse.in {
+ max-height: 300px;
+ overflow-y : scroll;
+ }
+ }
+
+ .navbar-nav {
+
+ > li {
+
+ > a {
+ padding: 5px 15px;
+ font-weight: 700;
+ text-transform: uppercase;
+ }
+ }
+
+ li {
+
+ ul.drop-down {
+ position: relative;
+ top: inherit;
+ left: inherit;
+ width: 100%;
+ visibility: visible;
+ opacity: 1;
+ padding: 5px 0;
+ background: transparent;
+ border-top: none;
+ box-shadow: none;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ -o-box-shadow: none;
+
+ li {
+
+ a {
+ padding: 3px 30px;
+ text-transform: uppercase;
+ color: $brand-primary;
+ }
+
+ ul.drop-down {
+
+ &.level3 {
+ top: inherit;
+ left: inherit;
+ width: 100%;
+ position: relative;
+ visibility: visible;
+ box-shadow: none;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ -o-box-shadow: none;
+ opacity: 1;
+
+ li {
+ padding-left: 10px;
+
+ a {
+ color: $brand-primary;
+ }
+ }
+ }
+ }
+
+ input[type="search"] {
+ margin: 10px 25px;
+ box-shadow: 0;
+ border: 1px solid #ccc;
+ outline: none;
+ font-size: 13px;
+ padding-left: 10px;
+
+ &:focus {
+ border: 1px solid $brand-primary;
+ }
+ }
+ }
+ }
+ }
+
+ li.megadrop {
+
+ .megadrop-down {
+ position: relative;
+ top: inherit;
+ left: inherit;
+ visibility: visible;
+ opacity: 1;
+
+ .dropdown {
+ //text-align: left;
+ padding: 0 15px;
+ background: transparent;
+ border-top: none;
+ box-shadow: none;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ -o-box-shadow: none;
+
+ ul {
+ margin-bottom: 0;
+
+ li {
+ padding-bottom: 5px !important;
+ border-right: none;
+
+ a {
+ color: $brand-primary;
+ text-transform: uppercase;
+
+ i {
+ display: none;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+ .navbar-default.primary-color {
+
+ background-color: $brand-primary;
+ border-color: $brand-primary;
+
+ .navbar-collapse.collapse.in {
+ background: #fff;
+ }
+ }
+
+ .hidden {
+ display: none !important;
+ }
+
+}
+
+
+
+
+//----------------------------------------------
+// Start Navbar Full Width Styling
+//----------------------------------------------
+
+
+.navbar-brand.separate {
+ padding-left: 0;
+}
diff --git a/Web Development/Basic/Tourist Places/scss/_variable.scss b/Web Development/Basic/Tourist Places/scss/_variable.scss
new file mode 100644
index 000000000..8f0c1a441
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/scss/_variable.scss
@@ -0,0 +1,37 @@
+$brand-primary : #fe4157;
+$yellow : #f6d014;
+$light-blue : #00bcd4;
+$text-color : #888;
+$title-color : #222;
+$headings-color : #f3f3f3;
+
+$white : #ffffff;
+$light-grey : #f7f7f7;
+$black : #000;
+$black-russian-grey : #24252a;
+$suva-grey : #888888;
+
+
+$lato-font : 'Lato', sans-serif;
+$fontawesome : 'FontAwesome';
+
+
+$navbar-link-color : $black-russian-grey;
+$navbar-hover-color : $brand-primary;
+$navbar-hover-bg : $brand-primary;
+$navbar-active-color : $brand-primary;
+$navbar-active-bg : transparent;
+
+$hover-line-color : $brand-primary;
+$active-line-color : $hover-line-color;
+
+
+$dropdown-bg : rgba(26, 28, 39, 0.8);
+$dropdown-wrap-color : $black;
+$dropdown-link-color : $white;
+
+$dropdown-hover-color : $white;
+$dropdown-hover-bg : $brand-primary;
+
+$dropdown-active-color : $brand-primary;
+$dropdown-active-bg : $brand-primary;
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/scss/responsive.scss b/Web Development/Basic/Tourist Places/scss/responsive.scss
new file mode 100644
index 000000000..e23c934b8
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/scss/responsive.scss
@@ -0,0 +1,331 @@
+@media (max-width: 1024px){
+
+ .tp-leftarrow, .tp-rightarrow {
+ width: 40px !important;
+ height: 40px !important;
+ }
+
+ .tp-leftarrow {
+ left: -15px !important;
+ }
+
+ .tp-rightarrow {
+ left: 101% !important;
+ }
+
+ .tparrows:before {
+ line-height: 25px !important;
+ }
+
+}
+
+
+@media (max-width: 992px){
+
+ .navbar {
+ min-height: 60px;
+ }
+ .navbar-brand>img {
+ width: 140px;
+ height: auto;
+ }
+ .navbar.navbar-default .navbar-nav > li > a {
+ padding: 10px 8px;
+ }
+ .navbar-collapse.collapse {
+ margin-top: 10px;
+ }
+}
+
+@media (max-width: 767px){
+
+ .pad100 {
+ padding: 50px 0;
+ }
+ .pad80 {
+ padding: 40px 0;
+ }
+ .pad-t100 {
+ padding-top: 50px;
+ }
+ .pad-b70 {
+ padding-bottom: 25px;
+ }
+
+ .topbar {
+ .social-icons {
+ display: none;
+ }
+ .contact-info {
+ text-align: center;
+ }
+ }
+ .navbar-header {
+ text-align: center;
+ }
+ .navbar-brand {
+ float: none;
+ >img {
+ width: 110px;
+ height: auto;
+ display: inline-block;
+ }
+ }
+ .navbar {
+ min-height: 70px;
+ }
+ .navbar-toggle {
+ margin-top: 15px;
+ }
+
+ .text-section {
+ text-align: center;
+
+ .underline {
+ &:after {
+ left: 41% !important;
+ }
+ }
+ }
+
+ .max-tab .nav-tabs > li {
+ width: 22%;
+ }
+ .image-content-img {
+ position: inherit !important;
+ width: 100% !important;
+ height: 300px !important;
+ }
+ .image-content {
+ margin-top: 40px;
+ }
+ .image-content-list {
+ li {
+ margin-bottom: 30px;
+ &:last-child {
+ margin-bottom: 0;
+ }
+ }
+ }
+
+ .sidebar-post {
+ li {
+ display: table;
+ }
+ }
+
+ .switcher-box {
+ display: none;
+ }
+
+
+ ul.filter {
+ margin-bottom: 30px;
+ }
+ .portfolio-box.col-4 .portfolio-post {
+ width: 50%;
+ }
+
+
+ .right-half, .left-half {
+ display: none;
+ }
+
+
+ .breadcrumb-section {
+ text-align: center;
+ }
+
+ .banner {
+ h1 {
+ font-size: 50px;
+ line-height: 50px;
+ }
+ }
+
+ .mbl-mar-bottom {
+ margin-bottom: 30px
+ }
+
+ .mbl-mar-top {
+ margin-top: 30px
+ }
+
+ .feature-box {
+ li {
+ width: 50%;
+ }
+ }
+
+ .br, .bt {
+ border: none;
+ }
+
+ .call-to-action-2 {
+ text-align: center;
+
+ a {
+ float: none;
+ margin-top: 30px;
+ }
+ }
+
+ .pricing-box.pricing-featured {
+ margin-top: 0;
+ }
+
+ .max-tab-2 {
+
+ .nav-tabs {
+
+ >li {
+ display: inline-block;
+ width: 32.9%;
+
+ a:after {
+ display: none;
+ }
+ }
+ }
+ }
+
+ .portfolio-box {
+
+ &.width33 {
+ li {
+ width: 100%;
+ }
+ }
+
+ &.width50 {
+ li {
+ width: 100%;
+ }
+ }
+
+ &.width25 {
+ li {
+ width: 100%;
+ }
+ }
+ }
+
+ ul.countdown li {
+ width: 100% !important;
+ margin-bottom: 50px;
+ border: 0;
+
+ &:last-child {
+ border-right: none;
+ }
+ }
+
+ .header-address {
+ display: none;
+ }
+
+ .mb-text-center {
+ text-align: center;
+ }
+
+ .blog-post .blog-post-content .post-format,
+ .single-blog-post .blog-post-content .post-format {
+ width: 10%;
+ }
+
+ .client-logo {
+ text-align: center;
+ }
+
+}
+
+@media (max-width: 480px){
+
+ .navbar-default .navbar-brand {
+
+ img {
+ width: 110px ;
+ margin-top: 11px;
+ }
+ }
+
+ .parallax-slide-text-2 {
+ h1 {
+ font-size: 32px;
+ line-height: 55px;
+ }
+ }
+
+ ul.filter li {
+ margin-bottom: 30px;
+ a {
+ padding: 6px 15px;
+ }
+ }
+ .portfolio-box.col-4 .portfolio-post {
+ width: 100%;
+ }
+ .portfolio-post {
+ img {
+ width: 100% !important;
+ }
+ }
+
+ .right-half, .left-half {
+ display: none;
+ }
+ .call-to-action-btn {
+ float: none !important;
+ }
+
+ .banner {
+ h1 {
+ font-size: 45px;
+ line-height: 50px;
+ }
+ }
+
+ .pagination>li {
+ float: left;
+ padding-bottom: 5px;
+ }
+
+ .mbl-mar-bottom-20 {
+ margin-bottom: 20px
+ }
+
+ .feature-box li {
+ width: 100% !important;
+ }
+
+ .max-tab-2 {
+
+ .nav-tabs {
+
+ >li {
+ display: inline-block;
+ width: 49%;
+ }
+ }
+ }
+}
+
+
+@media (max-width: 320px){
+
+ .banner {
+ h1 {
+ font-size: 35px;
+ line-height: 40px;
+ }
+ }
+
+ .mini-mar-top {
+ margin-top: 20px !important;
+ }
+
+ .mini-mar-bottom {
+ margin-bottom: 20px !important;
+ }
+
+}
diff --git a/Web Development/Basic/Tourist Places/scss/style.scss b/Web Development/Basic/Tourist Places/scss/style.scss
new file mode 100644
index 000000000..a039f822e
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/scss/style.scss
@@ -0,0 +1,3279 @@
+
+
+
+
+
+//------------------------------------
+// Imported File
+//------------------------------------
+
+@import 'variable';
+@import 'global-styles';
+@import 'navbar';
+
+
+//--------------------------------------
+// Start Top Header Section
+//--------------------------------------
+
+.topbar {
+ background-color: $brand-primary;
+ color: #ffffff;
+ padding: 8px 0 10px 0;
+
+ a {
+ color: #fff;
+ &:hover {
+ color: #222;
+ }
+ }
+
+ .contact-info {
+ text-align: right;
+ li {
+ display: inline-block;
+ list-style: none;
+ margin-right: 10px;
+ }
+ }
+
+ &.black {
+ background-color: #333;
+ }
+}
+
+ul.social-icons {
+ list-style: none;
+ padding: 0;
+ margin: -5px;
+ display: inline-block;
+
+ li {
+ display: inline-block;
+ margin: 5px 12px;
+ }
+}
+
+//--------------------------------------
+// Start Header Section
+//--------------------------------------
+
+.header-address {
+ margin-top: 5px;
+
+ a {
+ display: inline-block;
+ text-align: center;
+ font-size: 34px;
+ width: 50px;
+ height: 50px;
+ color: $brand-primary;
+ }
+
+ i {
+ margin-top: 12px;
+ margin-left: 2px;
+ }
+
+ .header-content {
+ display: inline-block;
+
+ h5 {
+ font-size: 13px;
+ text-transform: uppercase;
+ }
+ p {
+ font-size: 13px;
+ }
+ }
+}
+
+
+
+//--------------------------------------
+// Start Banner Section
+//--------------------------------------
+
+.banner {
+ padding: 200px 0;
+
+ h1 {
+ font-size: 70px;
+ line-height: 70px;
+ font-weight: 700;
+ margin-bottom: 40px;
+ }
+
+ p {
+ margin-bottom: 50px;
+ }
+
+ &.white {
+ h1,p {
+ color: #fff;
+ }
+ }
+
+ &.primary {
+ h1,p {
+ color: $brand-primary;
+ }
+ }
+}
+
+
+.slogan-section {
+
+ a {
+ float: right;
+ margin-top: 30px;
+ }
+
+}
+.slogan {
+
+ i {
+ &::before {
+ font-size: 65px;
+ margin-right: 15px;
+ }
+ }
+
+ h3 {
+ font-weight: normal;
+ span {
+ font-size: 80px;
+ padding-right: 10px;
+ font-weight: 700;
+ }
+ }
+
+ &.white {
+ h3 {
+ color: #fff;
+ }
+ }
+}
+
+
+
+//---------------------------------------
+// Start Revolution Slideshow
+//---------------------------------------
+
+.rev_slider_wrapper {
+
+ text-shadow: rgba(0,0,0,0.498) 0px 2px 5px;
+
+ .tp-leftarrow.hermes {
+ position: absolute;
+ left: 0 !important;
+ }
+ .tp-rightarrow.hermes {
+ position: absolute;
+ right: 0 !important;
+ }
+
+ .btn.btn-primary {
+ &:hover {
+ color: #fff !important;
+ }
+ }
+
+
+ .tp-caption {
+
+ &.max-style {
+ span {
+ color: $brand-primary !important;
+ }
+ }
+ }
+
+
+}
+
+.rev_slider {
+ .slide-title, .slide-sub-title {
+ text-shadow: rgba(0,0,0,0.498) 0px 2px 5px;
+
+ span {
+ color: $brand-primary !important;
+ }
+ }
+
+
+}
+
+@media (max-width: 767px){
+
+ .rev_slider_wrapper {
+
+ .slider-text {
+ text-align: center !important;
+ }
+ }
+}
+
+
+@media (max-width: 480px){
+ .rev_slider_wrapper{
+
+ .btn {
+ padding: 5px 10px;
+ font-size: 12px;
+ }
+ }
+}
+
+
+
+//-----------------------------------------
+// Start Bootstrap Default Slideshow
+//-----------------------------------------
+
+
+#main-slide .item {
+ //height: 700px;
+}
+
+#main-slide {
+
+ .item {
+
+ img {
+ width: 100%;
+ }
+
+ .slider-content {
+ z-index: 0;
+ opacity: 0;
+ -webkit-transition: opacity 500ms;
+ -moz-transition: opacity 500ms;
+ -o-transition: opacity 500ms;
+ transition: opacity 500ms;
+ }
+
+ &.active {
+
+ .slider-content {
+ z-index: 0;
+ opacity: 1;
+ -webkit-transition: opacity 100ms;
+ -moz-transition: opacity 100ms;
+ -o-transition: opacity 100ms;
+ transition: opacity 100ms;
+ }
+ }
+ }
+
+ .carousel-indicators {
+ bottom: 30px;
+
+ li{
+ width: 14px !important;
+ height: 14px !important;
+ border: 2px solid #fff !important;
+ margin: 1px !important;
+ }
+ }
+
+ .carousel-control {
+
+ &.left, &.right {
+ opacity: 1;
+ filter: alpha(opacity=100);
+ background-image: none;
+ background-repeat: no-repeat;
+ text-shadow: none;
+ }
+
+ &.left span {
+ padding: 15px;
+ }
+
+ &.right span {
+ padding: 15px;
+ }
+
+ .fa-angle-left,
+ .fa-angle-right{
+ position: absolute;
+ top: 40%;
+ z-index: 5;
+ display: inline-block;
+ }
+
+ .fa-angle-left{
+ left: 0;
+ }
+
+ .fa-angle-right{
+ right: 0;
+ }
+
+ i {
+ background: rgba(0,0,0,.7);
+ color: #fff;
+ line-height: 36px;
+ font-size: 32px;
+ padding: 15px 20px;
+ -moz-transition: all 500ms ease;
+ -webkit-transition: all 500ms ease;
+ -ms-transition: all 500ms ease;
+ -o-transition: all 500ms ease;
+ transition: all 500ms ease;
+ }
+ }
+
+
+ .slider-content{
+ top: 45%;
+ margin-top: -70px;
+ left: 0;
+ padding: 0;
+ text-align: center;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ color: #fff;
+
+ h1{
+ font-size: 50px;
+ font-weight: 700;
+ line-height: 50px;
+ letter-spacing: 5px;
+ margin-bottom: 55px;
+ color: #fff;
+ text-transform: uppercase;
+
+ strong {
+ color: $brand-primary;
+ }
+ }
+
+ p {
+ font-size: 30px;
+ font-weight: 300;
+ line-height: 35px;
+ letter-spacing: 1px;
+ margin-bottom: 55px;
+ color: #fff;
+ }
+ }
+
+}
+
+
+
+#main-slide .slider-content h2.white, #main-slide .slider-content h3.white {
+ color: #fff;
+}
+
+
+.slider.btn{
+ padding: 10px 40px;
+ font-size: 20px;
+ border-radius: 2px;
+ text-transform: uppercase;
+ line-height: 28px;
+ font-weight: 300;
+ border: 0;
+ -moz-transition: all 300ms ease;
+ -webkit-transition: all 300ms ease;
+ -ms-transition: all 300ms ease;
+ -o-transition: all 300ms ease;
+ transition: all 300ms ease;
+}
+
+.slider.btn.btn-default{
+ margin-left: 4px;
+ background: #ECECEC
+}
+
+.slider.btn.btn-default:hover{
+ background: #000;
+ color: #fff;
+}
+
+.slider-content-left {
+ position: relative;
+ margin: 0 0 0 40px;
+}
+
+.slider-content-right{
+ position: relative;
+}
+
+/*-- Animation --*/
+.carousel .item.active .animated1 {
+ -webkit-animation: lightSpeedIn 1s ease-in 800ms both;
+ animation: lightSpeedIn 1s ease-in 800ms both;
+}
+
+.carousel .item.active .animated2 {
+ -webkit-animation: bounceIn 1s ease-in 800ms both;
+ animation: bounceIn 1s ease-in 800ms both;
+}
+
+.carousel .item.active .animated3 {
+ -webkit-animation: flipInX 2s ease-in-out 800ms both;
+ animation: flipInX 2s ease-in-out 800ms both;
+}
+
+
+@media (min-width : 992px) {
+
+ #main-slide .slider-content h1{
+ font-size: 68px;
+ }
+}
+
+
+@media (min-width : 768px) and (max-width: 991px) {
+
+ #main-slide .slider-content h1{
+ font-size: 35px;
+ margin-bottom: 10px;
+ margin-top: 0;
+ }
+ #main-slide .slider-content p{
+ font-size: 20px;
+ margin-top: 0;
+ line-height: 25px;
+ }
+
+ .slider.btn{
+ padding: 5px 25px;
+ margin-top: 5px;
+ font-size: 16px;
+ }
+
+ #main-slide .item {
+ //height: 550px;
+ }
+
+}
+
+
+@media (max-width : 767px) {
+
+ #main-slide .slider-content h1{
+ font-size: 28px;
+ line-height: normal;
+ margin-bottom: 0;
+ }
+ #main-slide .slider-content p{
+ font-size: 14px;
+ line-height: 18px;
+ margin-top: 25px;
+ }
+ .slider.btn{
+ padding: 0 15px;
+ margin-top: 0;
+ font-size: 12px;
+ }
+ #main-slide .carousel-indicators{
+ bottom: 0;
+ }
+
+ #main-slide .carousel-control {
+ display: none;
+ }
+
+
+ #main-slide .item {
+ //height: 400px;
+ }
+
+}
+
+
+@media (max-width : 480px) {
+
+ #main-slide .slider-content h1{
+ font-size: 22px;
+ line-height: 26px;
+ margin-bottom: 0;
+ }
+
+ #main-slide .slider-content p{
+ font-size: 12px;
+ }
+
+ #main-slide .slider-content a{
+ display: none;
+ }
+
+ #main-slide .carousel-control {
+ display: none;
+ }
+
+}
+
+
+
+
+//-------------------------------------
+// Start Feature Style Section
+//-------------------------------------
+
+
+.feature-1 {
+
+ margin-bottom: 30px;
+
+ i {
+ font-size: 50px;
+ width: 50px;
+ height: 50px;
+ line-height: 50px;
+ color: $title-color;
+ margin-right: 20px;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+
+ h3 {
+ margin-top: 0px;
+ margin-bottom: 5px;
+ color: $title-color;
+ font-size: 18px;
+ line-height: 18px;
+ line-height: 18px;
+ text-transform: none;
+ font-weight: 400;
+ }
+
+ h4 {
+ color: $brand-primary;
+ font-size: 20px;
+ font-weight: 500 !important;
+ margin-bottom: 10px;
+ }
+
+ &:hover {
+ i {
+ color: $brand-primary;
+ }
+ }
+}
+
+
+//Start Feature 2 Styling
+
+.feature-box {
+
+ li {
+ width: 33.3%;
+ float: left;
+ }
+}
+
+.feature-2 {
+ padding: 30px;
+
+ img {
+ margin-bottom: 25px;
+ }
+
+ a {
+
+ h4 {
+ margin-bottom: 25px;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+ }
+
+ &:hover {
+ h4 {
+ color: $brand-primary;
+ }
+ }
+
+}
+
+
+
+//Start Feature 3 Styling
+
+.feature-3 {
+ padding: 30px;
+ margin-bottom: 30px;
+ border: 1px solid #ddd;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+
+ img {
+ margin-bottom: 25px;
+ }
+
+ a {
+
+ h4 {
+ margin-bottom: 25px;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+ }
+
+ &:hover {
+ border-color: $brand-primary;
+ h4 {
+ color: $brand-primary;
+ }
+ }
+
+}
+
+
+
+//Start Feature 4 Styling
+
+.feature-4 {
+ border: 1px solid #ddd;
+ background: #fff;
+ margin-bottom: 30px;
+
+ .fetaure-image {
+ position: relative;
+
+ &:before {
+ position: absolute;
+ content: "\e02e";
+ font-family: 'et-line' !important;
+ font-size: 30px;
+ font-weight: bold;
+ top: 50%;
+ left: 50%;
+ margin: -12px 0 0 -14px;
+ text-align: center;
+ opacity: 1;
+ transition: all 0.4s ease;
+ transform: scale(0);
+ color: #fff;
+ z-index: 999;
+ background: transparent;
+ }
+
+ &:after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ content: '';
+ transition: all 0.4s ease;
+ transform: scale(0);
+ background: rgba(254,65,87,0.5);
+ }
+
+ img {
+ -webkit-transition: 0.4s;
+ transition: 0.4s;
+ }
+ }
+
+ h4 {
+ font-size: 14px;
+ font-weight: 600;
+ line-height: 24px;
+ margin: 0;
+ text-transform: uppercase;
+ padding: 18px 15px 15px;
+ text-align: left;
+
+ a {
+ color: #222;
+
+ &:hover {
+ color: $brand-primary;
+ }
+ }
+ }
+
+ .intro-text {
+ position: relative;
+ width: 100%;
+ padding: 0 15px 4px;
+ }
+
+ &:hover {
+
+ .fetaure-image {
+ &:before {
+ opacity: 1;
+ transform: scale(1);
+ }
+ &:after {
+ transform: scale(1);
+ }
+ }
+ }
+}
+
+
+
+//Start Feature-5 Styling
+
+.feature-5 {
+ margin-bottom: 30px;
+
+ .media-left, .pull-left {
+ padding-right: 20px;
+
+ &.primary {
+ i {
+ color: $brand-primary;
+ }
+ }
+ }
+
+ i {
+ font-size: 36px;
+ width: 36px;
+ height: 36px;
+ line-height: 36px;
+ color: #222;
+ -webkit-transition: 0.4s;
+ transition: 0.4s;
+ }
+
+ h4 {
+ margin-bottom: 25px;
+ font-size: 22px;
+ line-height: 22px;
+ font-weight: 400;
+ -webkit-transition: 0.4s;
+ transition: 0.4s;
+ }
+
+ &:hover {
+ i, h4 {
+ color: $brand-primary;
+ }
+ }
+}
+
+
+//------------------------------------
+// Start Text Section
+//------------------------------------
+
+.text-section {
+
+ h2 {
+ font-size: 45px;
+ }
+
+ h3 {
+ font-size: 40px;
+ line-height: 50px;
+ position: relative;
+ span {
+ color: $brand-primary;
+ }
+
+ &.underline {
+ margin-bottom: 50px;
+
+ &:after {
+ position: absolute;
+ right: 100%;
+ bottom: 0;
+ left: 0;
+ width: 70px;
+ height: 2px;
+ margin: -20px auto;
+ content: '';
+ opacity: 1;
+ background: $brand-primary;
+ }
+ }
+ }
+
+ h4 {
+ font-size: 28px;
+ line-height: 32px;
+ }
+
+ h5 {
+ font-size: 18px;
+ letter-spacing: 1px;
+ }
+
+ a {
+ margin-right: 15px;
+ }
+
+ &.white {
+ color: #fff;
+ h2,h3,h4,h5,a {
+ color: #fff;
+ }
+
+ a:hover {
+ color: $brand-primary;
+ }
+ }
+
+ h2,h3,h4,h5,p, a {
+ span {
+ color: $brand-primary;
+ }
+ }
+}
+
+
+.text-section-2 {
+ h4 {
+ margin-bottom: 20px;
+ }
+
+ ul {
+ li {
+ i {
+ margin-right: 10px;
+ }
+ }
+ }
+}
+
+
+
+//------------------------------------
+// Start Running Project
+//------------------------------------
+
+.running-project-2 {
+ text-align: center;
+ margin-bottom: 30px;
+ position: relative;
+ overflow: hidden;
+
+ .project-details {
+ background: fade-out($brand-primary, 0.15);
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ //top: 0;
+ bottom: 100%;
+ color: #fff;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ opacity: 0;
+
+ h4 {
+ padding-top: 20%;
+ margin-bottom: 30px;
+ color: #fff;
+ }
+
+ a {
+ color: #fff;
+ font-size: 20px;
+ margin-top: 10px;
+ }
+ }
+
+ &:hover {
+ .project-details {
+ opacity: 1;
+ bottom: 0;
+ }
+ }
+}
+
+
+
+//-----------------------------------
+// Start Call to Action
+//-----------------------------------
+
+.call-to-action {
+
+ h3 {
+ font-size: 40px;
+ text-transform: uppercase;
+ margin-bottom: 36px;
+ font-weight: 700;
+ }
+
+ p {
+ padding: 0 10%;
+ margin-bottom: 40px;
+ font-size: 14px;
+ }
+
+ &.white {
+ h3,p {
+ color: #fff;
+ }
+ }
+}
+
+
+.call-to-action-2 {
+
+ h3 {
+ color: #fff;
+ font-size: 26px;
+ line-height: 35px;
+ letter-spacing: 1px;
+
+ span {
+ color: $brand-primary;
+ }
+ }
+
+ p {
+ margin-top: 30px;
+ }
+
+ a {
+ padding: 15px 30px;
+ font-size: 15px;
+ letter-spacing: 1px;
+ float: right;
+ }
+}
+
+
+
+//----------------------------------------
+// Start Pop Up Video Section
+//----------------------------------------
+
+.popup-video {
+ text-align: center;
+
+ h4 {
+ font-size: 30px;
+ color: #fff;
+ font-weight: bold;
+ margin: 30px 0;
+ }
+}
+
+
+
+//----------------------------------------
+// Start Max Tab Section
+//----------------------------------------
+
+//Start Max Tab 1 Styling
+.max-tab {
+
+ .nav-tabs {
+ text-align: center;
+ border-bottom: none;
+
+ >li {
+ display: inline-block;
+ float: inherit;
+ text-align: center;
+ height: 100px;
+ margin-right: 30px;
+
+ a {
+ font-size: 18px;
+ font-weight: 400;
+ line-height: 1.2;
+ width: 85px;
+ height: 70px;
+ padding: 0;
+ letter-spacing: 0;
+ border: none;
+ border-radius: 0;
+ text-transform: capitalize;
+ background: #f6f6f6;
+ -webkit-transition: .3s;
+ -o-transition: .3s;
+ transition: .3s;
+
+ i {
+ font-size: 40px;
+ line-height: 64px;
+ display: block;
+ margin-bottom: 20px;
+ text-align: center;
+ vertical-align: middle;
+ color: #222;
+ border-radius: 3px;
+ -webkit-transition: .3s;
+ -o-transition: .3s;
+ transition: .3s;
+ }
+
+ &:hover,
+ &:focus {
+ background-color: transparent;
+ border: 0;
+ }
+ }
+
+ &.active, &:hover {
+ a,
+ a:focus,
+ a:hover {
+ background-color: $brand-primary;
+ color: #fff;
+ box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
+ }
+
+ i {
+ color: #fff;
+ }
+ }
+ }
+ }
+
+ .tab-content {
+ position: relative;
+
+ .tab-pane {
+ padding: 50px 0 30px;
+ }
+
+ .tab-text {
+
+ h4 {
+ font-size: 28px;
+ line-height: 31px;
+ margin-bottom: 30px;
+ }
+
+ a {
+ color: $brand-primary;
+ }
+ }
+
+ blockquote {
+ font-size: 17px;
+ margin: 0;
+ padding: 8px 20px;
+ border-left: 3px solid #32c5d2;
+
+ strong {
+ font-weight: normal;
+ color: $brand-primary;
+ }
+ }
+
+ }
+
+}
+
+
+
+//Start Max Tab 2 Styling
+.max-tab-2 {
+
+ .nav-tabs {
+ border-bottom: 2px solid $brand-primary;
+ >li {
+ position: relative;
+ float: inherit;
+ text-align: center;
+
+ a {
+ color: $title-color;
+ font-size: 18px;
+ line-height: 22px;
+ font-weight: 600;
+ text-transform: uppercase;
+ padding: 0;
+ padding-bottom: 30px;
+ border: 0;
+ -webkit-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+
+ &:after {
+ position: absolute;
+ bottom: -10px;
+ left: 48%;
+ width: 15px;
+ height: 15px;
+ content: '';
+ border: 2px solid #fe4157;
+ border-radius: 4px;
+ background: #fff;
+ -webkit-transition: all .3s;
+ -o-transition: all .3s;
+ transition: all .3s;
+ }
+
+ }
+
+ &.active, &:hover {
+
+ a{
+ border: 0;
+ background: transparent;
+
+ &:hover,
+ &:focus {
+ background-color: transparent;
+ border: 0;
+ }
+
+ &:after {
+ background: $brand-primary;
+ }
+ }
+ }
+ }
+ }
+
+ .tab-content {
+ position: relative;
+
+ a {
+ color: $brand-primary;
+ }
+
+ .tab-pane {
+ padding-top: 50px;
+ }
+
+ .tab-text {
+ h4 {
+ margin-bottom: 20px;
+ }
+ }
+
+ blockquote {
+ font-size: 17px;
+ margin: 0;
+ padding: 8px 20px;
+ border-left: 3px solid #32c5d2;
+
+ strong {
+ font-weight: normal;
+ color: $brand-primary;
+ }
+ }
+
+ }
+
+ &.white {
+ color: #bababa;
+
+ .nav-tabs {
+ li {
+ a {
+ color: #bababa;
+ &:after {
+ background: transparent;
+ }
+ }
+
+ &.active {
+ a:after {
+ background: $brand-primary;
+ }
+ }
+ }
+ }
+
+ .tab-content {
+ color: #bababa;
+
+ h4 {
+ color: #fff;
+ }
+ }
+ }
+
+}
+
+
+
+//-------------------------------------
+// Start Portfolio Section Styling
+//-------------------------------------
+
+
+
+//Filter Styling
+
+ul.filter {
+ margin: 0;
+ padding: 0;
+ text-align: center;
+ margin-bottom: 60px;
+}
+ul.filter li {
+ display: inline-block;
+ margin: 0 5px;
+}
+ul.filter li a {
+ display: inline-block;
+ text-decoration: none;
+ font-size: 15px;
+ font-weight: 600;
+ padding: 5px 20px;
+ color: #282828;
+ text-transform: uppercase;
+ transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+}
+
+ul.filter li a:hover,
+ul.filter li a.active {
+ color: $brand-primary;
+}
+
+
+
+.isotope-item {
+ z-index: 2;
+}
+.isotope-hidden.isotope-item {
+ pointer-events: none;
+ z-index: 1;
+}
+.isotope,
+.isotope .isotope-item {
+ /* change duration value to whatever you like */
+ -webkit-transition-duration: 0.8s;
+ -moz-transition-duration: 0.8s;
+ transition-duration: 0.8s;
+}
+.isotope {
+ -webkit-transition-property: height, width;
+ -moz-transition-property: height, width;
+ transition-property: height, width;
+}
+.isotope .isotope-item {
+ -webkit-transition-property: -webkit-transform, opacity;
+ -moz-transition-property: -moz-transform, opacity;
+ transition-property: transform, opacity;
+}
+
+.portfolio-box {
+
+ &.width33 {
+ li {
+ width: 33%;
+ }
+ }
+
+ &.width50 {
+ li {
+ width: 50%;
+ }
+ }
+
+ &.width25 {
+ li {
+ width: 25%;
+ }
+ }
+
+ img {
+ width: 100%!important;
+ }
+}
+
+
+
+// Portfolio Style 1
+
+.portfolio-post-1 {
+ position: relative;
+ overflow: hidden;
+
+ img {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ -webkit-transition: all 400ms;
+ transition: all 400ms;
+ }
+
+ .portfolio-details {
+ opacity: 0;
+ transition: opacity 400ms;
+ -webkit-transition: opacity 400ms;
+ position: absolute;
+ top: 0;
+ left: 0;
+ text-align: center;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.5);
+ color: #fff;
+
+
+ .portfolio-icon {
+ margin-top: 35%;
+ -webkit-transition: opacity 0.3s;
+ transition: opacity 0.3s;
+
+ a {
+ font-size: 28px;
+ margin: 3px;
+ padding: 7px 12px;
+ color: #fff;
+ background: transparent;
+ -webkit-transform: translate3d(0, 15px, 0);
+ transform: translate3d(0, 15px, 0);
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+ }
+
+ .portfolio-title {
+ margin-top: 20px;
+
+ h4 {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 15px, 0);
+ transform: translate3d(0, 15px, 0);
+ -webkit-transition: all 400ms;
+ transition: all 400ms;
+ color: #fff;
+ }
+ .portfolio-tags {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 15px, 0);
+ transform: translate3d(0, 15px, 0);
+ -webkit-transition: all 400ms;
+ transition: all 400ms;
+ }
+ }
+
+
+ }
+
+
+ &:hover {
+
+ img {
+ -webkit-transform: scale3d(1.15, 1.15, 1);
+ transform: scale3d(1.15, 1.15, 1);
+ }
+
+ .portfolio-details {
+ opacity: 1;
+
+ .portfolio-icon {
+ a {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ }
+
+ .portfolio-title {
+ h4, .portfolio-tags {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 5px, 0);
+ transform: translate3d(0, 5px, 0);
+ }
+ }
+
+ }
+ }
+}
+
+
+
+// Portfolio Style 2
+
+.portfolio-post-2 {
+
+
+ .portfolio-details {
+ position: relative;
+ overflow: hidden;
+
+ img {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ -webkit-transition: all 400ms;
+ transition: all 400ms;
+ }
+
+ .portfolio-icon {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ text-align: center;
+ background: rgba(0, 0, 0, 0.5);
+ opacity: 0;
+ -webkit-transition: opacity 0.3s;
+ transition: opacity 0.3s;
+
+ a {
+ position: absolute;
+ top: 50%;
+ -webkit-transform: scale3d(0, 0, 0);
+ transform: scale3d(0, 0, 0);
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ color: #fff;
+ font-size: 26px;
+
+ &.zoom {
+ margin-left: -10%;
+ }
+ &.link {
+ margin-left: 5%;
+ }
+ }
+ }
+ }
+
+ .portfolio-title {
+ border: 1px solid #ddd;
+ padding: 20px;
+ display: block;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ h4 {
+ font-size: 20px;
+ text-transform: none;
+ }
+
+ &:hover {
+ border-color: #111;
+ background: #111;
+ h4 {
+ color: #fff;
+ }
+ }
+ }
+
+
+ &:hover {
+
+ .portfolio-details {
+ img {
+ -webkit-transform: scale3d(1.15, 1.15, 1);
+ transform: scale3d(1.15, 1.15, 1);
+ }
+
+ .portfolio-icon {
+ opacity: 1;
+ a {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ &:hover {
+ color: $brand-primary;
+ font-size: 30px;
+ }
+ }
+ }
+ }
+
+ .portfolio-title {
+
+ }
+ }
+}
+
+
+
+
+
+//-----------------------------------------
+// Start Animated Number Section
+//-----------------------------------------
+.animated-counter {
+ margin-bottom: 30px;
+
+ .animated-icon {
+ span {
+ font-size: 40px;
+ padding-bottom: 28px;
+ }
+ }
+ .animated-number {
+ font-size: 60px;
+ font-weight: 700;
+ line-height: 60px;
+ position: relative;
+ margin: 0;
+ padding: 0;
+
+ &:after {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: 60px;
+ height: 2px;
+ margin: -30px auto;
+ content: '';
+ background: $brand-primary;
+ }
+ }
+
+ h4 {
+ font-size: 20px;
+ line-height: 22px;
+ margin: 70px 0 0;
+ padding: 0;
+ }
+
+ &.white {
+ .animated-icon, .animated-number, h4 {
+ color: #fff !important;
+ }
+ .animated-number {
+ &:after {
+ background: $brand-primary;
+ }
+ }
+ }
+}
+
+
+.animated-counter-2 {
+ margin-bottom: 30px;
+ border: 1px solid #fff;
+ padding: 30px 0;
+
+ .animated-number {
+ font-size: 50px;
+ font-weight: normal;
+ line-height: 50px;
+ position: relative;
+ margin: 0;
+ padding: 0;
+ color: $brand-primary;
+ }
+
+ h4 {
+ font-size: 20px;
+ line-height: 20px;
+ margin: 20px 0 0;
+ padding: 0;
+ text-transform: none;
+ color: #fff;
+ font-weight: normal;
+ }
+}
+
+
+
+//------------------------------------
+// Start Team Member Section
+//------------------------------------
+
+.team-member-1 {
+ margin-bottom: 30px;
+ border: 1px solid #ddd;
+ -webkit-transition: 0.3s;
+ transition: 0.3s;
+ text-align: center;
+ position: relative;
+ overflow: hidden;
+
+ .team-member-img {
+ position: relative;
+ overflow: hidden;
+
+ &:after {
+ position: absolute;
+ z-index: 10;
+ top: 0;
+ right: 100%;
+ bottom: 0;
+ left: 0;
+ content: '';
+ -webkit-transition: 0.3s;
+ transition: 0.3s;
+ background: rgba(0,0,0,0.85);
+ }
+ }
+
+ .team-info {
+ padding: 20px 0;
+
+ .team-name {
+ font-size: 18px;
+ line-height: 24px;
+ text-transform: uppercase;
+ color: #222;
+ font-weight: bold;
+ }
+
+ .team-designation {
+ font-size: 14px;
+ }
+
+ p {
+ padding: 15px 15px 0 15px;
+ }
+ }
+
+ .social-icon {
+ position: absolute;
+ z-index: 11;
+ top: 43%;
+ left: 200%;
+ width: 100%;
+ transform: translate(0%, 0%);
+ -webkit-transition: transform .3s ease 0s;
+ transition: transform .3s ease 0s;
+
+ ul {
+ list-style: none;
+ display: block;
+ padding: 0;
+ margin: 0 -8px;
+
+ li {
+ margin: 0 12px;
+ display: inline-block;
+
+ a {
+ display: block;
+ font-size: 16px;
+ line-height: 16px;
+ color: #fff;
+ }
+ }
+ }
+ }
+
+
+ &:hover {
+ border-color: $brand-primary;
+
+ .social-icon {
+ left: 50%;
+ transform: translate(-50%, -50%);
+ }
+
+ .team-member-img {
+ &:after {
+ right: 0;
+ }
+ }
+ }
+}
+
+
+//Start Team Member Style 2
+
+.team-member-2 {
+ position: relative;
+ overflow: hidden;
+ color: #fff;
+ margin-bottom: 30px;
+
+ .team-details {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ margin-top: 0;
+ padding: 15px 20px;
+ text-align: center;
+ opacity: 0;
+ color: #fff;
+ background: rgba(0,0,0,0.85);
+ -webkit-transition: 350ms;
+ -o-transition: 350ms;
+ transition: 350ms;
+
+ h4 {
+ font-size: 18px;
+ line-height: normal;
+ margin: 0;
+ color: #fff;
+ text-transform: none;
+ }
+
+ .designation {
+ font-size: 14px;
+ font-weight: 500;
+ margin-bottom: 15px;
+ }
+
+ p {
+ margin-top: 100px;
+ opacity: 0;
+ -webkit-transition: 350ms;
+ -o-transition: 350ms;
+ transition: 350ms;
+ }
+
+ ul {
+ margin-top: 100px;
+ opacity: 0;
+ -webkit-transition: 350ms;
+ -o-transition: 350ms;
+ transition: 350ms;
+
+ li {
+ display: inline-block;
+ margin: 0 8px;
+
+ a {
+ font-size: 16px;
+ color: #fff;
+
+ &:hover {
+ color: $brand-primary;
+ }
+ }
+ }
+ }
+ }
+
+
+ &:hover {
+
+ .team-details {
+ top: 0;
+ padding-top: 50px;
+ opacity: 1;
+
+ p {
+ margin-top: 0;
+ opacity: 1;
+ }
+
+ ul {
+ margin-top: 0;
+ opacity: 1;
+ }
+ }
+ }
+}
+
+
+//Team member style 3
+
+.team-member-3 {
+
+ .team-member-details {
+ h4 {
+ font-size: 22px;
+ letter-spacing: 1.08px;
+ margin-bottom: 20px;
+ }
+
+ h6 {
+ font-size: 16px;
+ font-weight: 700;
+ text-transform: none;
+ letter-spacing: 0;
+ margin: 10px 0;
+ }
+
+ .team-social {
+ margin-top: 30px;
+ li {
+ display: inline-block;
+ margin-right: 15px;
+
+ a {
+ padding: 10px;
+ background: #222;
+ color: #fff;
+ border-radius: 2px;
+ text-align: center;
+ font-size: 20px;
+
+ i {
+ width: 25px;
+ height: 20px;
+ }
+
+ &.facebook {
+ background: #306199;
+ }
+ &.twitter {
+ background: #26c4f1;
+ }
+ &.google-plus {
+ background: #e93f2e;
+ }
+ &.linkedin {
+ background: #007bb6;
+ }
+ &.pinterest {
+ background: #b81621;
+ }
+ }
+ }
+ }
+ }
+}
+
+
+
+//---------------------------------------
+// Start Skill Section
+//---------------------------------------
+.skill-section {
+ margin-top: 20px;
+
+ .skill {
+ padding-bottom: 25px;
+ }
+
+ .skill-name {
+ font-size: 16px;
+ font-weight: 500;
+ color: #333;
+ text-transform: uppercase;
+ }
+
+ .progress-bar-percentage {
+ font-size: 13px;
+ font-weight: 500;
+ background: $black-russian-grey;
+ color: $white;
+ padding: 3px 8px;
+ margin-top: -26px;
+ }
+
+ .progress {
+ overflow: visible;
+ height: 5px;
+ margin-bottom: 10px;
+ margin-top: 5px;
+ background: #f9f9f9;
+ border-radius: 0px;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .progress-bar {
+ background: $brand-primary;
+ float: left;
+ height: 100%;
+ font-size: 12px;
+ color: #ffffff;
+ text-align: center;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ -webkit-transition: width 0.6s ease;
+ transition: width 0.6s ease;
+ position:relative;
+
+ &.yellow {
+ background: $yellow;
+ }
+
+ &.blue {
+ background: $light-blue;
+ }
+ }
+
+ .skill-style-2 {
+ padding-bottom: 30px;
+ }
+
+ .skill-style-2 .progress {
+ height: 20px;
+ }
+
+ &.white {
+ .skill-name {
+ color: #fff;
+ }
+ }
+
+
+}
+
+
+
+.striped-progress-bar {
+
+ .progress {
+ height: 25px;
+ margin-bottom: 30px;
+ border-radius: 0;
+ background: #ddd;
+ box-shadow: none;
+ }
+
+ .progress-bar {
+ line-height: 25px;
+ background: $brand-primary;
+ }
+
+ .progress-bar-brand {
+ background-color: $brand-primary;
+ }
+
+}
+
+
+
+//=====================================
+// Start Round Progress Bar
+//=====================================
+
+.progress-chart-feature {
+ text-align: center;
+
+ .chart {
+ position: relative;
+ display: inline-block;
+ width: 130px;
+ height: 130px;
+ text-align: center;
+ }
+
+ .chart-icon {
+ display: inline-block;
+ line-height: 140px;
+ z-index: 2;
+
+ span {
+ font-size:26px;
+ line-height:50px;
+ font-weight: 700;
+ width:50px;
+ height:50px;
+ }
+ }
+
+ .chart canvas {
+ position: absolute;
+ top: 0;
+ left: 0;
+ }
+
+ h4 {
+ font-size: 18px;
+ letter-spacing: 1px;
+ position: relative;
+ margin-top: 20px;
+ margin-bottom: 25px;
+ text-transform: uppercase;
+ color: #24252a;
+ -webkit-transition: all 0.3s;
+ -o-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+
+ &.white {
+ color: $white;
+ h4, p {
+ color: $white;
+ }
+
+ .chart-icon span {
+ color: #fff;
+ }
+ }
+}
+
+
+
+//---------------------------------------
+// Start Latest News Section
+//---------------------------------------
+
+
+.latest-news{
+ margin-bottom: 30px;
+ border: 1px solid #ddd;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+
+ h4 {
+ font-size: 14px;
+ position: relative;
+ line-height: 24px;
+ margin-bottom: 10px;
+ text-transform: uppercase;
+ display: inline-block;
+
+ a {
+ color: #282828;
+ text-decoration: none;
+ -webkit-transition: all.5s ;
+ -o-transition: all.5s ;
+ transition: all.5s ;
+
+ &:hover {
+ color: $brand-primary;
+ -webkit-transition: all.5s ;
+ -o-transition: all.5s ;
+ transition: all.5s ;
+ }
+ }
+
+ }
+
+ .latest-news-img{
+ position: relative;
+
+ img {
+ width: 100%;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+
+ div {
+ position: absolute;
+ background: $brand-primary;
+ text-align: center;
+ right: 0;
+ top: 0;
+ display: inline-block;
+ text-decoration: none;
+ padding: 7px 10px;
+ }
+
+ span:first-child {
+ font-size: 12px;
+ color: #fdfdfd;
+ display: block;
+ }
+
+ span:last-child{
+ font-size: 26px;
+ color: #fdfdfd;
+ font-weight: bold;
+ margin-top: 0;
+ display: block;
+ position: relative;
+ }
+ }
+
+ .news-details {
+ padding: 20px;
+ display: inline-block;
+
+ a.read-more {
+ color: #222;
+ }
+ }
+
+ &:hover {
+ border-color: $brand-primary;
+
+ .news-details {
+ a.read-more {
+ color: $brand-primary;
+ }
+ }
+
+ .latest-news-img {
+ img {
+ -webkit-filter: grayscale(100%);
+ filter: grayscale(100%)
+ }
+ }
+ }
+
+
+}
+
+
+
+//---------------------------------------
+// Start Testimonial Section
+//---------------------------------------
+.testimonial-carousel {
+ position: relative;
+ max-width: 800px;
+ margin: 0 auto;
+ border-radius: 2px;
+ background: transparent !important;
+ -webkit-transition: .4s;
+ -o-transition: .4s;
+ transition: .4s;
+
+ &.bordered {
+ border: 1px solid #ccc;
+ }
+
+ &.bg-white {
+ background-color: #fff !important;
+ }
+
+ .testimonial-item {
+ padding: 40px 5%;
+ text-align: center;
+
+ img {
+ width: 80px;
+ margin-bottom: 30px;
+ }
+
+ p {
+ margin-bottom: 30px;
+ }
+
+ .client {
+ font-size: 20px;
+ text-transform: uppercase;
+ color: #222;
+ }
+
+ &.white {
+ p,.client {
+ color: #fff;
+ }
+ }
+ }
+
+ &.bg-white:hover {
+ background-color: $brand-primary !important;
+
+ p {
+ color: #fff;
+ }
+ }
+}
+
+
+//-------------------------------------
+// Start Client Section
+//-------------------------------------
+
+.client-section {
+
+ img {
+ margin-bottom: 50px;
+ }
+}
+
+.client-logo {
+ margin-bottom: 30px;
+}
+
+
+//-------------------------------------
+// Start Pricing Section
+//-------------------------------------
+
+.pricing-box {
+ margin-bottom: 30px;
+ padding: 30px 40px 25px;
+ border: none;
+ border: 1px solid #ddd;
+ text-align: center;
+ -webkit-transition: .3s;
+ transition: .3s;
+
+ .pricing-header {
+
+ h4 {
+ font-size: 25px;
+ font-weight: 600;
+ line-height: 1.3;
+ margin-bottom: 50px;
+ color: #222;
+ }
+
+ .pricing-price {
+ font-size: 80px;
+ font-weight: 300;
+ line-height: 1;
+ color: #fe4157;
+
+ span {
+ font-size: 20px !important;
+ font-weight: 400;
+ vertical-align: middle;
+ color: #222;
+ }
+ }
+ }
+
+ .pricing-feature {
+ padding: 40px 0 30px;
+
+ li {
+ font-size: 18px;
+ font-weight: 500;
+ padding: 10px 0 !important;
+ border-top: 1px solid #e1e1e1;
+
+ &:last-child {
+ border-bottom: 1px solid #e1e1e1;
+ }
+ }
+ }
+
+ .pricing-footer {
+ a {
+ font-size: 16px;
+ color: #222;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+
+ &:hover {
+ color: $brand-primary;
+ }
+ }
+ }
+
+ &.pricing-featured {
+ margin-top: -30px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 11px 30px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 11px 30px 0 rgba(0,0,0,0.1);
+ }
+
+ &:hover {
+ webkit-box-shadow: 0 11px 30px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 11px 30px 0 rgba(0,0,0,0.1);
+ }
+}
+
+
+
+//-------------------------------------
+// Start Client Logo Section
+//-------------------------------------
+
+.client-logo {
+
+ img {
+ -webkit-transition: all 0.3s ease-in-out;
+ transition: all 0.3s ease-in-out;
+ -webkit-transform: scale(.90);
+ transform: scale(.90);
+ opacity: 0.80;
+ }
+
+ &:hover {
+ img {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ opacity: 1;
+ }
+ }
+}
+
+
+//---------------------------------------
+// Start Accordion Section
+//---------------------------------------
+
+.max-accordion {
+
+ .panel {
+ border-left: 0;
+ border-right: 0;
+ border-top: 0;
+ border-radius: 0;
+ box-shadow: 0;
+ -webkit-box-shadow: 0;
+ background: transparent;
+ border: 0;
+ }
+
+ .panel-heading {
+ background: transparent;
+ border: 0;
+ border-radius: 0;
+ font-weight: 400;
+ padding: 0;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+
+ .panel-title {
+
+ a {
+ display: block;
+ font-size: 18px;
+ font-weight: bold;
+ color: $brand-primary;
+ text-transform: uppercase;
+ padding: 0;
+ transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+
+ &:before {
+ font-family: 'FontAwesome';
+ content: "\f103";
+ font-size: 20px;
+ line-height: 36px;
+ padding-right: 10px;
+ color: $brand-primary;
+ -webkit-transition: all 0.3s;
+ -o-transition: all 0.3s;
+ transition: all 0.3s;
+ }
+
+ &.collapsed {
+ color: #222;
+
+ &:hover {
+ color: $brand-primary;
+ }
+
+ &:before {
+ font-family: 'FontAwesome';
+ content: "\f101";
+ }
+ }
+ }
+
+
+ }
+ }
+
+ .panel-body {
+ padding: 15px;
+ border: 0 !important;
+ font-size: 15px;
+ line-height: 24px;
+ background-color: transparent !important;
+ }
+
+ &.white {
+ .panel-title a {
+ &.collapsed {
+ color: #fff;
+ }
+ }
+ }
+
+
+}
+
+
+.panel-title a .control-icon {
+ position: absolute;
+ top: 50%;
+ right: 10px;
+ margin-top: -11px;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+ display: none;
+}
+
+.panel-title a.collapsed .control-icon {
+ display: block;
+}
+
+.panel-title a i {
+ font-size: 22px;
+ padding-right: 5px;
+ color: $brand-primary;
+}
+
+
+
+
+//----------------------------------------
+// Start Count Down // Coming Soon Section
+//----------------------------------------
+
+.coming-soon-section {
+
+ .coming-soon-desc {
+ h1 {
+ color: $brand-primary;
+ font-size: 90px;
+ font-weight: 700;
+ letter-spacing: 3px;
+ margin: 20px 0;
+ }
+
+
+ h3 {
+ color: #fff;
+ margin-top: 50px;
+ font-size: 50px;
+ font-weight: 700;
+ letter-spacing: 5px;
+ }
+ }
+}
+.countdown-wrap {
+ width: auto;
+ float: none;
+ margin: 0;
+ padding: 0;
+ margin: 15% 0;
+}
+
+.countdown {
+ margin: 0;
+ padding: 0;
+}
+
+ul.countdown li {
+ display: inline-block;
+ width: 24%;
+ text-align: left;
+ text-align: center;
+ border-left: 1px solid #ddd;
+}
+
+ul.countdown li:last-child {
+ border-right: 1px solid #ddd;
+}
+
+ul.countdown li span {
+ font-size: 60px;
+ color: #fe4157;
+ position: relative;
+ font-weight: 700;
+}
+
+ul.countdown li span::before {
+ content: '';
+ width: 100%;
+ height: 1px;
+ position: absolute;
+}
+
+ul.countdown li p.timeRefDays,
+ul.countdown li p.timeRefHours,
+ul.countdown li p.timeRefMinutes,
+ul.countdown li p.timeRefSeconds {
+ color: #fff;
+ text-transform: uppercase;
+ font-size: 12px;
+ margin: 0;
+ padding: 10px 0 5px 0;
+}
+
+ul.countdown li p.timeRefSeconds {
+ color: #fff;
+}
+
+
+
+//----------------------------------------
+// Start Blog Section
+//----------------------------------------
+
+.blog-post, .single-blog-post {
+ margin-bottom: 50px;
+
+ .blog-img {
+ margin: 0 0 8px;
+
+ img {
+ width: 100%;
+ }
+ }
+
+ .blog-post-content {
+ position: relative;
+ width: 100%;
+ display: block;
+ margin-top: 30px;
+
+ .post-format {
+ float: left;
+ display: block;
+ width: 5%;
+ background: $brand-primary;
+ padding: 15px;
+ font-size: 20px;
+ text-align: center;
+ color: #fff;
+ border-radius: 2px;
+ margin-right: 30px;
+
+ &.width10 {
+ width: 10% !important;
+ }
+ }
+
+ .post-description {
+ width: 95%;
+
+ .post-meta {
+ li {
+ display: inline-block;
+ text-transform: uppercase;
+ margin-right: 15px;
+
+ i {
+ margin-right: 5px;
+ }
+ }
+ }
+
+ h1 {
+ font-size: 24px;
+ margin-top: 5px;
+ }
+ }
+
+ .post-text {
+ margin-top: 30px;
+ margin-bottom: 20px;
+ }
+
+ a.read-more {
+ letter-spacing: 2px;
+ }
+
+ .post-tag {
+ color: #888;
+ font-size: 15px;
+ letter-spacing: 2px;
+ text-transform: uppercase;
+ margin-top: 20px;
+
+ li {
+ display: inline-block;
+
+ a {
+ color: $brand-primary;
+ text-transform: none;
+ letter-spacing: 0;
+ }
+ }
+ }
+ }
+
+ .blog-author {
+ margin: 40px 0;
+ padding: 30px;
+ border-radius: 2px;
+ border: 1px solid #ddd;
+
+ img {
+ width: 80px;
+ display: block;
+ background: #fff;
+ border: 1px solid #ddd;
+ margin: 0 20px 0 0;
+ border-radius: 50%;
+ }
+
+ .author-name {
+ margin-top: 20px;
+
+ a {
+ color: $black-russian-grey;
+ font-weight: 500;
+ font-size: 16px;
+ }
+ }
+ }
+
+ .comment-section {
+ margin-top: 80px;
+
+ h2 {
+ color: #222222;
+ font-size: 15px;
+ font-weight: 700;
+ margin: 0 0 15px;
+ text-transform: uppercase;
+ padding-bottom: 35px;
+ border-bottom: 1px solid #e0e0e0;
+ margin-bottom: 40px;
+ }
+
+ .comment-box {
+ overflow: hidden;
+ padding-bottom: 35px;
+ border-bottom: 1px solid #f3f3f3;
+ margin-bottom: 40px;
+
+ img {
+ width: 70px;
+ float: left;
+ border-radius: 50%;
+ border: 2px solid $brand-primary;
+ }
+
+ .comment-content {
+ margin-left: 100px;
+
+ h4 {
+ color: #222222;
+ font-size: 13px;
+ text-transform: uppercase;
+ margin: 0;
+
+ a {
+ color: #222222;
+ display: inline-block;
+ text-decoration: none;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+ float: right;
+ font-size: 11px;
+ font-weight: 400;
+ }
+ }
+
+ span {
+ font-size: 13px;
+ color: #999999;
+ line-height: 20px;
+ margin: 0 0 10px;
+ font-size: 11px;
+ display: inline-block;
+ font-weight: 400;
+ margin-bottom: 16px;
+ text-transform: uppercase;
+ }
+ }
+ }
+
+ ul.depth .comment-box {
+ padding-left: 100px;
+ }
+
+ .comment-form {
+
+ h2 {
+ padding-bottom: 0;
+ border-bottom: none;
+ margin-bottom: 30px;
+ }
+
+ input[type="text"],
+ textarea {
+ width: 100%;
+ display: block;
+ padding: 12px;
+ background: #fff;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #999999;
+ font-size: 13px;
+ border: 1px solid #ccc;
+ outline: none;
+ margin: 0 0 20px;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+
+ &:focus {
+ border: 1px solid $brand-primary;
+ }
+ }
+
+ textarea {
+ min-height: 193px;
+ margin-bottom: 30px;
+ }
+
+ }
+ }
+}
+
+.single-blog-post {
+ border-bottom: none;
+ margin-bottom: 0;
+ padding-bottom: 0;
+}
+
+
+.pagination {
+
+ li {
+ a, a:hover, a:focus {
+ color: #adadad;
+ padding: 6px 12px;
+ border-radius: 0;
+ border: solid 1px #e1e1e1;
+ background: transparent;
+ -webkit-transition: 400ms;
+ -o-transition: 400ms;
+ transition: 400ms;
+ }
+
+ &.active a, &.active a:hover {
+ color: #fff;
+ border: solid 1px $brand-primary;
+ background-color: $brand-primary;
+ }
+
+ &:first-child a {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+ &:last-child a {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+ }
+}
+
+.widget {
+ margin-bottom: 40px;
+}
+
+.widget-title {
+ margin: 0 0 20px 0;
+ h3 {
+ font-size: 16px;
+ margin-bottom: 10px;
+ letter-spacing: normal;
+ text-transform: uppercase;
+ color: #333333;
+ }
+}
+
+.widget-search {
+
+ input[type="search"] {
+ width: 100%;
+ display: block;
+ padding: 8px;
+ background: #fff;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #999999;
+ font-size: 13px;
+ border: 1px solid #ccc;
+ outline: none;
+ margin: 0 0 20px;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+
+ &:focus {
+ border: 1px solid $brand-primary;
+ }
+ }
+}
+
+.widget-archive,
+.widget-category {
+
+ li {
+ //margin-bottom: 15px;
+ a {
+ font-weight: 400;
+ //text-transform: uppercase;
+ color: #333;
+ -webkit-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+ &:hover {
+ color: $brand-primary;
+ }
+ }
+ }
+}
+
+.widget-tag {
+
+ li {
+ display: inline-block;
+ margin-bottom: 15px;
+ margin-right: 2px;
+ }
+
+ a {
+ font-size: 14px;
+ font-style: normal !important;
+ line-height: 17px;
+ margin: 0;
+ padding: 8px 15px;
+ letter-spacing: 0;
+ text-transform: uppercase;
+ color: $white !important;
+ border: 0;
+ background: $brand-primary;
+ text-shadow: none;
+ -webkit-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+
+ &:hover {
+ background: $black-russian-grey;
+ }
+ }
+}
+
+.widget-social {
+
+ li {
+ font-size: 16px;
+ line-height: 16px;
+ float: left;
+ margin: 0 1px 0 0;
+ padding: 5px 15px 5px 13px;
+ list-style: none;
+ text-align: center;
+ background: #1a1a1a;
+ -webkit-transition: all 0.3s;
+ -o-transition: all 0.3s;
+ transition: all 0.3s;
+ a {
+ color: #fff;
+ }
+
+ &:hover {
+ background: $brand-primary;
+ }
+ }
+}
+
+.widget-navigation {
+
+ .side-navigation {
+ li {
+ border: 1px solid #ddd;
+ border-bottom: none;
+ &:last-child {
+ border-bottom: 1px solid #ddd;
+ }
+
+ a {
+ padding: 13px 18px;
+ text-transform: uppercase;
+ background: #f7f7f7;
+ color: #222;
+ font-weight: normal;
+ display: block;
+
+ &:hover {
+ background: #222;
+ color: $brand-primary
+ }
+ }
+ }
+ }
+}
+
+
+
+//-------------------------------------
+// Start Project Post Section
+//-------------------------------------
+
+.project-post {
+
+ .blog-img {
+ margin-bottom: 30px;
+ }
+
+ .project-post-content {
+
+ h1 {
+ font-size: 35px;
+ letter-spacing: 2px;
+ margin-bottom: 30px;
+ }
+
+ h3 {
+ font-size: 20px;
+ margin-bottom: 30px;
+ margin-top: 30px;
+ }
+ }
+}
+
+
+
+//-------------------------------------
+// Start Contact Page Section
+//-------------------------------------
+
+.contact-form, .quotation-form {
+
+ input[type="text"],
+ input[type="email"],
+ textarea, select {
+ width: 100%;
+ display: block;
+ padding: 8px 12px;
+ background: transparent;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #999999;
+ font-size: 13px;
+ border: 1px solid #ccc;
+ outline: none;
+ margin: 0 0 20px;
+ transition: all 0.2s ease-in-out;
+ -moz-transition: all 0.2s ease-in-out;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+
+ &:focus {
+ border: 1px solid $brand-primary;
+ }
+ }
+
+ textarea {
+ //min-height: 193px;
+ margin-bottom: 30px;
+ }
+}
+
+
+
+
+//--------------------------------------
+// Start Footer Element Section
+//--------------------------------------
+
+.footer-section {
+ p {
+ color: #bfbfbf;
+ }
+}
+
+.footer-address {
+ margin-bottom: 30px;
+
+ p {
+ span {
+ color: $brand-primary;
+ }
+ }
+}
+
+.sidebar-post {
+
+ li {
+ display: inline-block;
+ margin-bottom: 10px;
+ img {
+ float: left;
+ width: 60px;
+ height: 45px;
+ margin-right: 10px;
+ }
+
+ a {
+ float: left;
+ color: #bababa;
+ margin-top: 10px;
+ font-size: 14px;
+
+ &:hover {
+ color: #fff;
+ }
+ }
+ }
+}
+
+
+.sidebar-gallery {
+ display: inline-block;
+
+ li {
+ float: left;
+ width: 29%;
+ margin-bottom: 10px;
+ margin-right: 10px;
+ overflow: hidden;
+ }
+}
+
+
+
+.footer-subscribe {
+ margin-top: 20px;
+ margin-bottom: 30px;
+ position: relative;
+
+ input,
+ input:focus {
+ background: #fff;
+ border-radius: 0px;
+ border: 0px solid;
+ height: 40px;
+ outline: none;
+ box-shadow: none;
+ }
+
+ button {
+ position: absolute;
+ right: 0;
+ top: 0;
+ background: #222;
+ width: 60px;
+ height: 100%;
+ font-size: 13px;
+ color: #fff;
+ font-weight: 600;
+ border: 0px solid;
+ border-radius: 0px;
+ outline: none;
+ -webkit-transition: all 0.3s;
+ transition: all 0.3s;
+
+ &:hover,
+ &:focus {
+ background: $brand-primary;
+ color: #fff;
+ }
+ }
+}
+
+
+.footer-social {
+
+ li {
+ display: inline-block;
+
+ a {
+ background: #222;
+ padding: 10px 13px;
+ color: #fff;
+ }
+
+ &:hover {
+ a {
+ background: $brand-primary;
+ }
+ }
+ }
+}
+
+.copyright-section {
+ background: #07040d;
+ color: #dddddd;
+ border-top: 1px ridge #333;
+ padding: 20px 0px 15px 0;
+
+ .copyright-text {
+ p {
+ color: #9b9b9b;
+ }
+ a {
+ color: $brand-primary;
+ font-weight: 600;
+ }
+ }
+}
+
+
+
+//--------------------------------------
+// Error Page
+//--------------------------------------
+
+.error-page {
+ text-align: center;
+
+ h1 {
+ font-size: 120px;
+ margin-bottom: 40px;
+ color: #fff;
+ }
+ h3 {
+ font-size: 60px;
+ color: #fff;
+ }
+
+ p {
+ //font-size: 20px;
+ font-weight: 700;
+ margin-bottom: 30px;
+ color: #fff;
+ }
+}
+
+
+//-----------------------------
+// Back to Top
+//-----------------------------
+
+.back-to-top.reveal {
+ cursor: pointer;
+ -webkit-transition: all .3s;
+ -moz-transition: all .3s;
+ -ms-transition: all .3s;
+ -o-transition: all .3s;
+ transition: all .3s;
+ opacity: 30;
+ filter: alpha(opacity=3000);
+
+ &:focus,
+ &:active,
+ &:hover {
+ //background-color: $black-russian-grey;
+ opacity: 100;
+ filter: alpha(opacity=10000);
+ }
+}
+
+.back-to-top {
+ position: fixed;
+ z-index: 1000;
+ right: 25px;
+ bottom: 15px;
+ width: 40px;
+ height: 40px;
+ margin: 0;
+ //background-color: $brand-primary;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ -webkit-transition: opacity 350ms;
+ -o-transition: opacity 350ms;
+ transition: opacity 350ms;
+
+ i {
+ position: absolute;
+ top: 50%;
+ left: 35%;
+ margin-top: -15px;
+ margin-left: -3px;
+ color: #ffffff;
+ }
+}
+
+
+
+//----------------------------------
+// STart Switcher Section
+//----------------------------------
+
+/******* Style Switcher *******/
+.switcher-box {
+ width: 212px;
+ position: fixed;
+ left: -212px;
+ top: 40%;
+ text-align: center;
+ z-index: 99999999999;
+ background-color: #fff;
+ border-radius: 0 0 2px 0;
+ border-radius: 0 5px 5px 0;
+ -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0 0 5px rgba(0,0,0,0.2);
+ box-shadow: 0 0 5px rgba(0,0,0,0.2);
+ transition: all 0.4s ease-in-out;
+ -moz-transition: all 0.4s ease-in-out;
+ -webkit-transition: all 0.4s ease-in-out;
+ -o-transition: all 0.4s ease-in-out;
+}
+.switcher-box i {
+ color: $brand-primary;
+}
+.switcher-box h4 {
+ display: block;
+ height: 40px;
+ line-height: 42px;
+ font-size: 14px;
+ font-weight: 700;
+ color: #fff;
+ background-color: #333;
+ margin-bottom: 10px;
+}
+.switcher-box span {
+ display: block;
+ padding: 5px 20px;
+ text-align: left;
+}
+.switcher-box .colors-list {
+ padding: 0 18px 0 18px;
+ margin-bottom: 8px;
+ line-height: 20px;
+}
+.switcher-box .colors-list li {
+ display: inline-block;
+ margin-right: 2px;
+}
+.switcher-box .colors-list li a {
+ display: block;
+ width: 24px;
+ height: 18px;
+ cursor: pointer;
+}
+
+.switcher-box .bg-list {
+ padding: 0 18px 0 18px;
+ margin-bottom: 18px;
+}
+.switcher-box .bg-list li {
+ display: inline-block;
+ margin-right: 2px;
+}
+.switcher-box .bg-list li a {
+ display: block;
+ width: 20px;
+ height: 20px;
+}
+.switcher-box .bg-list li a.bg1 {
+ background: url(../images/patterns/1.png) repeat;
+}
+.switcher-box .bg-list li a.bg2 {
+ background: url(../images/patterns/2.png) repeat;
+}
+.switcher-box .bg-list li a.bg3 {
+ background: url(../images/patterns/3.png) repeat;
+}
+.switcher-box .bg-list li a.bg4 {
+ background: url(../images/patterns/4.png) repeat;
+}
+.switcher-box .bg-list li a.bg5 {
+ background: url(../images/patterns/5.png) repeat;
+}
+.switcher-box .bg-list li a.bg6 {
+ background: url(../images/patterns/6.png) repeat;
+}
+.switcher-box .bg-list li a.bg7 {
+ background: url(../images/patterns/7.png) repeat;
+}
+.switcher-box .bg-list li a.bg8 {
+ background: url(../images/patterns/8.png) repeat;
+}
+.switcher-box .bg-list li a.bg9 {
+ background: url(../images/patterns/9.png) repeat;
+}
+.switcher-box .bg-list li a.bg10 {
+ background: url(../images/patterns/10.png) repeat;
+}
+.switcher-box .bg-list li a.bg11 {
+ background: url(../images/patterns/11.png) repeat;
+}
+.switcher-box .bg-list li a.bg12 {
+ background: url(../images/patterns/12.png) repeat;
+}
+.switcher-box .bg-list li a.bg13 {
+ background: url(../images/patterns/13.png) repeat;
+}
+.switcher-box .bg-list li a.bg14 {
+ background: url(../images/patterns/14.png) repeat;
+}
+
+.switcher-box .open-switcher {
+ width: 40px;
+ height: 40px;
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 100%;
+ border-radius: 0 2px 2px 0;
+ background: #444 center no-repeat;
+ -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0 0 4px rgba(0,0,0,0.2);
+ box-shadow: 0 0 4px rgba(0,0,0,0.2);
+}
+
+.switcher-box .open-switcher:hover {
+ background: #444 center no-repeat;
+ -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0 0 4px rgba(0,0,0,0.2);
+ box-shadow: 0 0 4px rgba(0,0,0,0.2);
+ color: #fff;
+}
+
+.switcher-box .open-switcher i {
+ text-align: center;
+ padding-top: 7px;
+}
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/shimla.html b/Web Development/Basic/Tourist Places/shimla.html
new file mode 100644
index 000000000..2eae1848b
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/shimla.html
@@ -0,0 +1,386 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SHIMLA
+
+"The Hill-Station with Rich Colonial History"
+Shimla is the capital Himachal Pradesh in India and a popular hill-station among Indian families and honeymooners. Situated at the height of 2200m, Shimla was the summer capital of British India. Shimla still retains its old-world charm with beautiful colonial architecture, pedestrian-friendly Mall Road and the ridge lined up with multiple shops, cafes and restaurants.
+
+The weather is pleasant for most of the months with tourists flocking especially during the summer months. The winters are cold with some days of snow from mid-December till February end.
+
+Shimla is well connected with many cities and is just 4 hours from the nearby city of Chandigarh.
+The city has an airport as well; however, there aren't many daily flights from here. The railway station connects Shimla with the plans and is famous for the Kalka-Shimla train route; a UNESCO listed World Heritage site.
+
+Shimla is often covered with nearby towns of Kufri, a hill-station almost always covered by snow and Chail, famous for a huge palace and the highest cricket ground in the world. Tourists also visit the famous Jakhu Temple and engage in sightseeing at various viewpoints during their trip to Shimla.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Web Development/Basic/Tourist Places/signup.html b/Web Development/Basic/Tourist Places/signup.html
new file mode 100644
index 000000000..d8d428626
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/signup.html
@@ -0,0 +1,381 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development/Basic/Tourist Places/udaipur.html b/Web Development/Basic/Tourist Places/udaipur.html
new file mode 100644
index 000000000..36f2c47d1
--- /dev/null
+++ b/Web Development/Basic/Tourist Places/udaipur.html
@@ -0,0 +1,382 @@
+
+
+
+
+
+ Tourist places
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
UDAIPUR
+
+" UDAIPUR - The city of Lakes"
+
+Udaipur, also known as the City of Lakes, is the crown jewel of the state of Rajasthan. It is surrounded by the beautiful Aravalli Hills in all directions, making this city as lovely as it is. This 'Venice of the East' has an abundance of natural beauty, mesmerising temples and breathtaking architecture which makes it a must-visit destination in India. A boat ride through the serene waters of Lake Pichola will be enough to prove to you why Udaipur is the pride of Rajasthan.
+
+Located in a valley and surrounded by four lakes, Udaipur has natural offerings with a grandeur multiplied by human effort, to make it one of the most enchanting and memorable tourist destinations. It justifies all names ever offered to its charm from 'Jewel of Mewar' to 'Venice of the East'. And though the entire city's architecture is flattering, the Lake Palace hotel is something that offers the city a visual definition. The revered Nathdwara temple is about 60 km from Udaipur.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Style Switcher
+
Layout Style
+
+ Wide
+ Boxed
+
+
Patterns for Boxed Version
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+