PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
jQuery(function ($) {
'use strict';
// Header Sticky
$(window).on('scroll',function() {
if ($(this).scrollTop() > 30){
$('.navbar-area').addClass("is-sticky");
}
else{
$('.navbar-area').removeClass("is-sticky");
}
});
// Mean Menu
jQuery('.mean-menu').meanmenu({
meanScreenWidth: "1199"
});
// Others Option For Responsive JS
$(".others-option-for-responsive .dot-menu").on("click", function(){
$(".others-option-for-responsive .container .container").toggleClass("active");
});
// Language Switcher
$(".language-option").each(function() {
var each = $(this)
each.find(".lang-name").html(each.find(".language-dropdown-menu a:nth-child(1)").text());
var allOptions = $(".language-dropdown-menu").children('a');
each.find(".language-dropdown-menu").on("click", "a", function() {
allOptions.removeClass('selected');
$(this).addClass('selected');
$(this).closest(".language-option").find(".lang-name").html($(this).text());
});
})
// Amount Currency Select Dropdown
$(".amount-currency-select").each(function() {
var each = $(this)
each.find(".currency-name").html(each.find(".currency-dropdown-menu a:nth-child(1)").text());
var allOptions = $(".currency-dropdown-menu").children('a');
each.find(".currency-dropdown-menu").on("click", "a", function() {
allOptions.removeClass('selected');
$(this).addClass('selected');
$(this).closest(".amount-currency-select").find(".currency-name").html($(this).text());
});
})
// TweenMax JS
$('.main-banner-area').mousemove(function(e){
var wx = $(window).width();
var wy = $(window).height();
var x = e.pageX - this.offsetLeft;
var y = e.pageY - this.offsetTop;
var newx = x - wx/2;
var newy = y - wy/2;
$('.main-banner-image, .main-banner-shape, .main-banner-shape-2').each(function(){
var speed = $(this).attr('data-speed');
if($(this).attr('data-revert')) speed *= -.4;
TweenMax.to($(this), 1, {x: (1 - newx*speed), y: (1 - newy*speed)});
});
});
$('.why-choose-us-area').mousemove(function(e){
var wx = $(window).width();
var wy = $(window).height();
var x = e.pageX - this.offsetLeft;
var y = e.pageY - this.offsetTop;
var newx = x - wx/2;
var newy = y - wy/2;
$('.choose-shape, .choose-shape-2').each(function(){
var speed = $(this).attr('data-speed');
if($(this).attr('data-revert')) speed *= -.4;
TweenMax.to($(this), 1, {x: (1 - newx*speed), y: (1 - newy*speed)});
});
});
$('.security-area').mousemove(function(e){
var wx = $(window).width();
var wy = $(window).height();
var x = e.pageX - this.offsetLeft;
var y = e.pageY - this.offsetTop;
var newx = x - wx/2;
var newy = y - wy/2;
$('.security-shape, .security-shape-2').each(function(){
var speed = $(this).attr('data-speed');
if($(this).attr('data-revert')) speed *= -.4;
TweenMax.to($(this), 1, {x: (1 - newx*speed), y: (1 - newy*speed)});
});
});
$(".main-banner-wrap-image").each(function() {
var tl = new TimelineMax();
if(tl.isActive()){
return false;
}
var cov = $(this).find(".overlay");
tl.from(cov, .6, { scaleX: 0, transformOrigin: "left" });
tl.to(cov, .6, { scaleX: 0, transformOrigin: "right" }, "reveal");
var scene = new ScrollMagic.Scene({
triggerElement: this,
triggerHook: 0.7
});
});
// Review Slides
$('.review-slides').owlCarousel({
loop: true,
nav: false,
dots: false,
smartSpeed: 500,
margin: 25,
autoplayHoverPause: true,
autoplay: true,
responsive: {
0: {
items: 1
},
576: {
items: 1
},
768: {
items: 2
},
1200: {
items: 3
}
}
});
$('.review-slides-two').owlCarousel({
loop: true,
nav: false,
dots: false,
smartSpeed: 500,
margin: 25,
autoplayHoverPause: true,
autoplay: true,
responsive: {
0: {
items: 1
},
576: {
items: 1
},
768: {
items: 1
},
1024: {
items: 2
},
1200: {
items: 2
}
}
});
// Partner Slides
$('.partner-slides').owlCarousel({
loop: true,
nav: false,
dots: false,
smartSpeed: 500,
margin: 30,
autoplayHoverPause: true,
autoplay: true,
responsive: {
0: {
items: 2
},
576: {
items: 4
},
768: {
items: 5
},
1200: {
items: 6
}
}
});
// Popup Video
$('.popup-youtube').magnificPopup({
disableOn: 320,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: false
});
// Subscribe form
$(".newsletter-form").validator().on("submit", function (event) {
if (event.isDefaultPrevented()) {
formErrorSub();
submitMSGSub(false, "Please enter your email correctly.");
}
else {
event.preventDefault();
}
});
function callbackFunction (resp) {
if (resp.result === "success") {
formSuccessSub();
}
else {
formErrorSub();
}
}
function formSuccessSub(){
$(".newsletter-form")[0].reset();
submitMSGSub(true, "Thank you for subscribing!");
setTimeout(function() {
$("#validator-newsletter").addClass('hide');
}, 4000)
}
function formErrorSub(){
$(".newsletter-form").addClass("animated shake");
setTimeout(function() {
$(".newsletter-form").removeClass("animated shake");
}, 1000)
}
function submitMSGSub(valid, msg){
if(valid){
var msgClasses = "validation-success";
}
else {
var msgClasses = "validation-danger";
}
$("#validator-newsletter").removeClass().addClass(msgClasses).text(msg);
}
// AJAX MailChimp
$(".newsletter-form").ajaxChimp({
url: "https://envytheme.us20.list-manage.com/subscribe/post?u=60e1ffe2e8a68ce1204cd39a5&id=42d6d188d9", // Your url MailChimp
callback: callbackFunction
});
// Count Time
function makeTimer() {
var endTime = new Date("September 20, 2025 17:00:00 PDT");
var endTime = (Date.parse(endTime)) / 1000;
var now = new Date();
var now = (Date.parse(now) / 1000);
var timeLeft = endTime - now;
var days = Math.floor(timeLeft / 86400);
var hours = Math.floor((timeLeft - (days * 86400)) / 3600);
var minutes = Math.floor((timeLeft - (days * 86400) - (hours * 3600 )) / 60);
var seconds = Math.floor((timeLeft - (days * 86400) - (hours * 3600) - (minutes * 60)));
if (hours < "10") { hours = "0" + hours; }
if (minutes < "10") { minutes = "0" + minutes; }
if (seconds < "10") { seconds = "0" + seconds; }
$("#days").html(days + "<span>Days</span>");
$("#hours").html(hours + "<span>Hours</span>");
$("#minutes").html(minutes + "<span>Minutes</span>");
$("#seconds").html(seconds + "<span>Seconds</span>");
}
setInterval(function() { makeTimer(); }, 0);
// Odometer JS
$('.odometer').appear(function(e) {
var odo = $(".odometer");
odo.each(function() {
var countNumber = $(this).attr("data-count");
$(this).html(countNumber);
});
});
// AOS JS
AOS.init();
// WOW Animation JS
if($('.wow').length){
var wow = new WOW({
mobile: false
});
wow.init();
}
// Go to Top
$(window).on('scroll', function(){
var scrolled = $(window).scrollTop();
if (scrolled > 600) $('.go-top').addClass('active');
if (scrolled < 600) $('.go-top').removeClass('active');
});
$('.go-top').on('click', function() {
$("html, body").animate({ scrollTop: "0" }, 500);
});
// Preloader JS
jQuery(window).on('load',function(){
jQuery(".preloader").fadeOut(500);
});
}(jQuery));
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E