/** * @author rs-theme * @since 1.0 * @version 1.0 */ if ( ! function_exists( 'konstruk_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function konstruk_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on konstruk, use a find and replace * to change 'konstruk' to the name of your theme in all the template files. */ load_theme_textdomain( 'konstruk', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); function konstruk_change_excerpt( $text ) { $pos = strrpos( $text, '['); if ($pos === false) { return $text; } return rtrim (substr($text, 0, $pos) ) . '...'; } add_filter('get_the_excerpt', 'konstruk_change_excerpt'); // Limit Excerpt Length by number of Words function konstruk_custom_excerpt( $limit ) { $excerpt = explode(' ', get_the_excerpt(), $limit); if (count($excerpt)>=$limit) { array_pop($excerpt); $excerpt = implode(" ",$excerpt).'...'; } else { $excerpt = implode(" ",$excerpt); } $excerpt = preg_replace('`[[^]]*]`','',$excerpt); return $excerpt; } function content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/[.+]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary Menu', 'konstruk' ), 'menu-2' => esc_html__( 'Single Menu', 'konstruk' ), 'menu-3' => esc_html__( 'Footer Menu', 'konstruk' ), 'menu-4' => esc_html__( 'Menu Left', 'konstruk' ), 'menu-5' => esc_html__( 'Menu Right', 'konstruk' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'konstruk_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); //add support posts format add_theme_support( 'post-formats', array( 'aside', 'gallery', 'audio', 'video', 'image', 'quote', 'link', ) ); add_theme_support( 'align-wide' ); } endif; add_action( 'after_setup_theme', 'konstruk_setup' ); /** *Custom Image Size */ add_image_size( 'konstruk_portfolio-slider', 520, 640, true ); add_image_size( 'konstruk_blog-slider', 760, 560, true ); add_image_size( 'konstruk_blog-footer', 100, 100, true ); add_image_size( 'konstruk_team_size', 310, 270, true ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function konstruk_content_width() { $GLOBALS['content_width'] = apply_filters( 'konstruk_content_width', 640 ); } add_action( 'after_setup_theme', 'konstruk_content_width', 0 ); /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Enqueue scripts and styles. */ require_once get_template_directory() . '/inc/template-scripts.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/template-functions.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/template-sidebar.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; require_once get_template_directory() . '/libs/theme-option/config.php'; $licenseKey = get_option("KonstrukWordPressTheme_lic_Key",""); if (!empty($licenseKey)){ require_once get_template_directory() . '/framework/custom.php'; } if (is_admin() && isset($_GET['activated'])){ wp_redirect(admin_url("themes.php?page=activate-konstruk")); } if (is_admin()) { require_once get_template_directory() . '/framework/ini/theme-base.php'; } /** * WooCommerce additions. */ require_once get_template_directory() . '/inc/woocommerce-functions.php'; function konstruk_remove_demo_mode_link() { // Be sure to rename this function to something more unique if ( class_exists('ReduxFrameworkPlugin') ) { remove_action( 'plugin_row_meta', array( ReduxFrameworkPlugin::get_instance(), 'plugin_metalinks'), null, 2 ); } if ( class_exists('ReduxFrameworkPlugin') ) { remove_action('admin_notices', array( ReduxFrameworkPlugin::get_instance(), 'admin_notices' ) ); } } add_action('init', 'konstruk_remove_demo_mode_link'); /** * Registers an editor stylesheet for the theme. */ function konstruk_theme_add_editor_styles() { add_editor_style( 'css/custom-editor-style.css' ); } add_action( 'admin_init', 'konstruk_theme_add_editor_styles' ); //remove revolution slid metabox function konstruk_remove_revolution_slider_meta_boxes() { remove_meta_box( 'mymetabox_revslider_0', 'teams', 'normal' ); remove_meta_box( 'mymetabox_revslider_0', 'page', 'normal' ); remove_meta_box( 'mymetabox_revslider_0', 'post', 'normal' ); remove_meta_box( 'mymetabox_revslider_0', 'rsclient', 'normal' ); remove_meta_box( 'mymetabox_revslider_0', 'gallery', 'normal' ); } add_action( 'do_meta_boxes', 'konstruk_remove_revolution_slider_meta_boxes' ); //------------------------------------------------------------------------ //Organize Comments form field //----------------------------------------------------------------------- function konstruk_wpb_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'konstruk_wpb_move_comment_field_to_bottom' ); add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; }); function konstruk_comment_textarea_placeholder( $args ) { $replace_comment = __('Comment*', 'konstruk'); $args['comment_field'] = str_replace( '<textarea', '<textarea placeholder="'.$replace_comment.'"', $args['comment_field'] ); return $args; } add_filter( 'comment_form_defaults', 'konstruk_comment_textarea_placeholder' ); /** * Comment Form Fields Placeholder * */ function konstruk_comment_form_fields( $fields ) { $replace_author = __('Name*', 'konstruk'); $replace_email = __('Email*', 'konstruk'); $website_url = __('Website', 'konstruk'); foreach( $fields as &$field ) { $field = str_replace( 'id="author"', 'id="author" placeholder="'.$replace_author.'"', $field ); $field = str_replace( 'id="email"', 'id="email" placeholder="'.$replace_email.'"', $field ); $field = str_replace( 'id="url"', 'id="url" placeholder="'.$website_url.'"', $field ); } return $fields; } add_filter( 'comment_form_default_fields', 'konstruk_comment_form_fields' ); <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="https://prestigewaterproofingtn.com/xmlrpc.php" /> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://prestigewaterproofingtn.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fprestigewaterproofingtn.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://prestigewaterproofingtn.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fprestigewaterproofingtn.com%2F&format=xml" /> <style id="wp-img-auto-sizes-contain-inline-css"> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <link rel='stylesheet' id='hfe-widgets-style-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/header-footer-elementor/inc/widgets-css/frontend.css?ver=2.7.1' media='all' /> <style id="wp-emoji-styles-inline-css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id="classic-theme-styles-inline-css"> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <style id="global-styles-inline-css"> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :root :where(.wp-block-icon svg){width: 24px;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='hfe-style-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/header-footer-elementor/assets/css/header-footer-elementor.css?ver=2.7.1' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.45.0' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='elementor-post-7-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/css/post-7.css?ver=1779317403' media='all' /> <link rel='stylesheet' id='ps-dragon-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/bdthemes-prime-slider-lite/assets/css/ps-dragon.css?ver=4.1.2' media='all' /> <link rel='stylesheet' id='e-animation-wobble-vertical-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-heading-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-icon-box-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-icon-list-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-video-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-video.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-gallery-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/css/widget-gallery.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='elementor-gallery-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css?ver=1.2.0' media='all' /> <link rel='stylesheet' id='e-transitions-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/css/conditionals/transitions.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-form-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/css/widget-form.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='elementor-post-16435-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/css/post-16435.css?ver=1779321171' media='all' /> <link rel='stylesheet' id='elementor-post-16506-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/css/post-16506.css?ver=1779317404' media='all' /> <link rel='stylesheet' id='materialize-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/css/materialize.css?ver=7.0' media='all' /> <link rel='stylesheet' id='rsaddons-floaticon-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/fonts/flaticon.css?ver=7.0' media='all' /> <link rel='stylesheet' id='headding-title-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/css/headding-title.css?ver=7.0' media='all' /> <link rel='stylesheet' id='rsaddons-pro-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/css/rsaddons.css?ver=7.0' media='all' /> <link rel='stylesheet' id='cherry-handler-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/cherry-framework/modules/cherry-handler/assets/css/cherry-handler-styles.min.css?ver=1.5.11' media='all' /> <link rel='stylesheet' id='jet-widgets-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/assets/css/jet-widgets.css?ver=1.0.21' media='all' /> <link rel='stylesheet' id='jet-widgets-skin-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/assets/css/jet-widgets-skin.css?ver=1.0.21' media='all' /> <link rel='stylesheet' id='jet-juxtapose-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/assets/css/lib/juxtapose/juxtapose.css?ver=1.3.0' media='all' /> <link rel='stylesheet' id='hfe-elementor-icons-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.34.0' media='all' /> <link rel='stylesheet' id='hfe-icons-list-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.24.3' media='all' /> <link rel='stylesheet' id='hfe-social-icons-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.24.0' media='all' /> <link rel='stylesheet' id='hfe-social-share-icons-brands-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='hfe-social-share-icons-fontawesome-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='hfe-nav-menu-icons-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='hfe-widget-blockquote-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor-pro/assets/css/widget-blockquote.min.css?ver=3.25.0' media='all' /> <link rel='stylesheet' id='hfe-mega-menu-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor-pro/assets/css/widget-mega-menu.min.css?ver=3.26.2' media='all' /> <link rel='stylesheet' id='hfe-nav-menu-widget-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=3.26.0' media='all' /> <link rel='stylesheet' id='eael-general-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.5.4' media='all' /> <link rel='stylesheet' id='wpr-animations-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/css/lib/animations/wpr-animations.min.css?ver=1.7.1043' media='all' /> <link rel='stylesheet' id='wpr-text-animations-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/css/lib/animations/text-animations.min.css?ver=1.7.1043' media='all' /> <link rel='stylesheet' id='wpr-addons-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/css/frontend.min.css?ver=1.7.1043' media='all' /> <link rel='stylesheet' id='font-awesome-5-all-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.11.62' media='all' /> <link rel='stylesheet' id='site-reviews-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/site-reviews/assets/styles/default.css?ver=7.2.13' media='all' /> <style id="site-reviews-inline-css"> :root{--glsr-star-empty:url(https://prestigewaterproofingtn.com/wp-content/plugins/site-reviews/assets/images/stars/default/star-empty.svg);--glsr-star-error:url(https://prestigewaterproofingtn.com/wp-content/plugins/site-reviews/assets/images/stars/default/star-error.svg);--glsr-star-full:url(https://prestigewaterproofingtn.com/wp-content/plugins/site-reviews/assets/images/stars/default/star-full.svg);--glsr-star-half:url(https://prestigewaterproofingtn.com/wp-content/plugins/site-reviews/assets/images/stars/default/star-half.svg)} /*# sourceURL=site-reviews-inline-css */ </style> <link rel='stylesheet' id='bdt-uikit-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/bdthemes-prime-slider-lite/assets/css/bdt-uikit.css?ver=3.21.7' media='all' /> <link rel='stylesheet' id='prime-slider-site-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/bdthemes-prime-slider-lite/assets/css/prime-slider-site.css?ver=4.1.2' media='all' /> <link rel='stylesheet' id='elementor-gf-local-roboto-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1754402533' media='all' /> <link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1754402541' media='all' /> <link rel='stylesheet' id='elementor-gf-local-rubik-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/rubik.css?ver=1754402552' media='all' /> <link rel='stylesheet' id='elementor-gf-local-jost-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/jost.css?ver=1754402571' media='all' /> <link rel='stylesheet' id='elementor-gf-local-montserrat-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/montserrat.css?ver=1754402582' media='all' /> <link rel='stylesheet' id='elementor-gf-local-lato-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/lato.css?ver=1754402543' media='all' /> <link rel='stylesheet' id='elementor-gf-local-poppins-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/poppins.css?ver=1754402588' media='all' /> <link rel='stylesheet' id='elementor-gf-local-kumbhsans-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/kumbhsans.css?ver=1754402592' media='all' /> <link rel='stylesheet' id='elementor-gf-local-barlowcondensed-css' href='https://prestigewaterproofingtn.com/wp-content/uploads/elementor/google-fonts/css/barlowcondensed.css?ver=1754402558' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-regular-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.15.3' media='all' /> <script id="jquery-core-js" data-cfasync="false" src="https://prestigewaterproofingtn.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> <script id="jquery-migrate-js" data-cfasync="false" src="https://prestigewaterproofingtn.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> <script id="jquery-js-after"> !function($){"use strict";$(document).ready(function(){$(this).scrollTop()>100&&$(".hfe-scroll-to-top-wrap").removeClass("hfe-scroll-to-top-hide"),$(window).scroll(function(){$(this).scrollTop()<100?$(".hfe-scroll-to-top-wrap").fadeOut(300):$(".hfe-scroll-to-top-wrap").fadeIn(300)}),$(".hfe-scroll-to-top-wrap").on("click",function(){$("html, body").animate({scrollTop:0},300);return!1})})}(jQuery); !function($){'use strict';$(document).ready(function(){var bar=$('.hfe-reading-progress-bar');if(!bar.length)return;$(window).on('scroll',function(){var s=$(window).scrollTop(),d=$(document).height()-$(window).height(),p=d? s/d*100:0;bar.css('width',p+'%')});});}(jQuery); //# sourceURL=jquery-js-after </script> <script id="bdt-uikit-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/bdthemes-prime-slider-lite/assets/js/bdt-uikit.min.js?ver=3.21.7"></script> <link rel="https://api.w.org/" href="https://prestigewaterproofingtn.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://prestigewaterproofingtn.com/wp-json/wp/v2/pages/16435" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://prestigewaterproofingtn.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0" /> <link rel="canonical" href="https://prestigewaterproofingtn.com/" /> <link rel='shortlink' href='https://prestigewaterproofingtn.com/' /> <meta name="ti-site-data" content="eyJyIjoiMTowITc6MCEzMDowIiwibyI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWFkbWluXC9hZG1pbi1hamF4LnBocD9hY3Rpb249dGlfb25saW5lX3VzZXJzX2dvb2dsZSZhbXA7cD0lMkYmYW1wO193cG5vbmNlPTgwOTJlMThiNDYifQ==" /><meta name="generator" content="Elementor 3.34.0; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <link rel="icon" href="https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/cropped-logo-32x32.png" sizes="32x32" /> <link rel="icon" href="https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/cropped-logo-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/cropped-logo-180x180.png" /> <meta name="msapplication-TileImage" content="https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/cropped-logo-270x270.png" /> <style id="wp-custom-css"> .single-post .breadcrumbs-title { display: none; } body.tax-portfolio-category .breadcrumbs-title { max-width: 400px; } body.tax-portfolio-category .breadcrumbs-title span { color: #fff; } .btn_poly{ clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); -webkit-clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); } .gaming_btn_yes .rs_button{ clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); -webkit-clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); } .gaming__btn_here .submit-btn .wpcf7-submit{ clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); -webkit-clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); } .gaming_btn_yes .rs_button:hover{ clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); -webkit-clip-path: polygon(88% 0, 100% 37%, 100% 82%, 100% 100%, 15% 103%, 0 66%, 0 0); } .home11_team .team-inner-wrap .image-wrap img{ clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 90% 100%, 100% 100%, 0% 100%); } .service_content_hide_yes .services-part .services-text .services-txt{ opacity: 0; transition: all .5s ease; margin-top: -25px; } .service_content_hide_yes .services-btn i{ transform: rotate(-36deg); } .service_content_hide_yes .services-part:hover .services-text .services-txt{ opacity: 1; margin-top: 0; } .service_content_hide_yes .services-part { min-height: 335px; } @media only screen and (max-width: 1600px) { .rs-portfolio-style4 .rs-portfolio4 .portfolio-item .portfolio-inner .p-category { margin-bottom: 0; } .rs-portfolio-style4 .rs-portfolio4 .portfolio-item .portfolio-inner { bottom: -43px; padding: 15px 17px 16px; } } .home-13-select-form .request-a-services .select-selected { padding:7px 30px; background:transparent; border-radius:0px; } .testi-home14 .rsaddon-unique-slider { filter: drop-shadow(0px 40px 60px rgba(0, 0, 1, 0.05)); } .home-13-select-form .request-a-services .Services:before { top: 9px; } body .rs-footer .footer-top .mc4wp-form-fields input[type="email"] { border: 1px solid; } /* .home13-portfolio-slider .rs-addon-slider .slick-dots li.slick-active button { background: #db4f4f !important; } .home13-portfolio-slider .rs-addon-slider .slick-dots li.slick-active button { background: #fff !important; } */ body .home13-portfolio-slider .rs-addon-slider .slick-dots li.slick-active button { background: #fff !important; } @media only screen and (max-width: 1366px) { .column_wrap_enable .elementor-container, .rs-flex-wrap .elementor-container { flex-wrap: wrap !important; } } @media only screen and (max-width: 1199) { .rs-service-home-13 .rs-service-col-home13 { width:50%!important; } } body .rev-scroll-btn span { background: #fff!important; } </style> <style id="wpr_lightbox_styles"> .lg-backdrop { background-color: rgba(0,0,0,0.6) !important; } .lg-toolbar, .lg-dropdown { background-color: rgba(0,0,0,0.8) !important; } .lg-dropdown:after { border-bottom-color: rgba(0,0,0,0.8) !important; } .lg-sub-html { background-color: rgba(0,0,0,0.8) !important; } .lg-thumb-outer, .lg-progress-bar { background-color: #444444 !important; } .lg-progress { background-color: #a90707 !important; } .lg-icon { color: #efefef !important; font-size: 20px !important; } .lg-icon.lg-toogle-thumb { font-size: 24px !important; } .lg-icon:hover, .lg-dropdown-text:hover { color: #ffffff !important; } .lg-sub-html, .lg-dropdown-text { color: #efefef !important; font-size: 14px !important; } #lg-counter { color: #efefef !important; font-size: 14px !important; } .lg-prev, .lg-next { font-size: 35px !important; } /* Defaults */ .lg-icon { background-color: transparent !important; } #lg-counter { opacity: 0.9; } .lg-thumb-outer { padding: 0 10px; } .lg-thumb-item { border-radius: 0 !important; border: none !important; opacity: 0.5; } .lg-thumb-item.active { opacity: 1; } </style></head> <body class="home wp-singular page-template-default page page-id-16435 wp-theme-konstruk ehf-header ehf-template-konstruk ehf-stylesheet-konstruk elementor-default elementor-kit-7 elementor-page elementor-page-16435"> <div id="page" class="hfeed site"> <header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader"> <p class="main-title bhf-hidden" itemprop="headline"><a href="https://prestigewaterproofingtn.com" title="Prestige Water Proofing" rel="home">Prestige Water Proofing</a></p> <div data-elementor-type="wp-post" data-elementor-id="16506" class="elementor elementor-16506" data-elementor-post-type="elementor-hf"> <section class="elementor-section elementor-top-section elementor-element elementor-element-0254224 elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="0254224" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6f6b707" data-id="6f6b707" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7c5e24f elementor-icon-list--layout-inline elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="7c5e24f" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-envelope"></i> </span> <span class="elementor-icon-list-text"> info@prestigewaterproofingtn.com</span> </li> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-icon-list-text">(615) 732-9172</span> </li> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-map-marker-alt"></i> </span> <span class="elementor-icon-list-text">1697 Classic View Dr. Lebanon TN</span> </li> </ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0f2e6fe" data-id="0f2e6fe" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2c9fd48 elementor-icon-list--layout-inline elementor-widget__width-auto elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="2c9fd48" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="far fa-clock"></i> </span> <span class="elementor-icon-list-text">Hours: Mon-Fri: 9.00 am - 7.00 pm</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-485c226 elementor-widget__width-auto elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="485c226" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid" role="list"> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-15642f2" href="https://www.facebook.com/profile.php?id=100094012667932" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i aria-hidden="true" class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-266a2d2" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i aria-hidden="true" class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-4560862" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i aria-hidden="true" class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-whatsapp elementor-repeater-item-a62f69f" target="_blank"> <span class="elementor-screen-only">Whatsapp</span> <i aria-hidden="true" class="fab fa-whatsapp"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-40393ce elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="40393ce" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-866134f" data-id="866134f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-db3a483 elementor-widget__width-auto elementor-widget elementor-widget-image" data-id="db3a483" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://prestigewaterproofingtn.com/"> <img src="https://prestigewaterproofingtn.com/wp-content/uploads/elementor/thumbs/logo-qcyury9btra9tzxbjrvdpd5s62swpd3r550wdsicjk.png" title="logo" alt="logo" loading="lazy" /> </a> </div> </div> <div class="elementor-element elementor-element-9849bf8 elementor-widget__width-auto elementor-widget elementor-widget-icon-box" data-id="9849bf8" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <a href="https://prestigewaterproofingtn.com/" > PRESTIGE </a> </h3> <p class="elementor-icon-box-description"> WATERPROOFING </p> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-316fe4e" data-id="316fe4e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1a629cc elementor-widget__width-auto elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="1a629cc" data-element_type="widget" data-settings="{"submenu_icon":{"value":"<i class=\"fas fa-angle-down\" aria-hidden=\"true\"><\/i>","library":"fa-solid"},"layout":"horizontal","toggle":"burger"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-1a629cc" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-16659"><a href="https://prestigewaterproofingtn.com/" aria-current="page" class="elementor-item elementor-item-active">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16661"><a href="https://prestigewaterproofingtn.com/about/" class="elementor-item">About</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16663"><a href="#" class="elementor-item elementor-item-anchor">Our Services</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16699"><a href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" class="elementor-sub-item">Drains in the Crawl Space and Water Pump</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16901"><a href="https://prestigewaterproofingtn.com/spee-d-channel-drains/" class="elementor-sub-item">Spee-D Channel Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16904"><a href="https://prestigewaterproofingtn.com/concrete-services-and-construccion/" class="elementor-sub-item">Concrete Services and Construcción</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16907"><a href="https://prestigewaterproofingtn.com/fungus-moultrie-services/" class="elementor-sub-item">Fungus Moultrie Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16910"><a href="https://prestigewaterproofingtn.com/foundation-settlement-piering-services/" class="elementor-sub-item">Foundation Settlement Piering Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16913"><a href="https://prestigewaterproofingtn.com/jacks-posts-stabilization/" class="elementor-sub-item">Jacks Posts Stabilization</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16916"><a href="https://prestigewaterproofingtn.com/basement-drains/" class="elementor-sub-item">Basement Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18860"><a href="https://prestigewaterproofingtn.com/downspout-extension/" class="elementor-sub-item">Downspout Extension</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16940"><a href="#" class="elementor-item elementor-item-anchor">More Services</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16919"><a href="https://prestigewaterproofingtn.com/drywall-installation/" class="elementor-sub-item">Drywall Installation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16926"><a href="https://prestigewaterproofingtn.com/framed/" class="elementor-sub-item">Framed</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16929"><a href="https://prestigewaterproofingtn.com/exterior-painting/" class="elementor-sub-item">Exterior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16932"><a href="https://prestigewaterproofingtn.com/interior-painting/" class="elementor-sub-item">Interior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16935"><a href="https://prestigewaterproofingtn.com/pressure-washing-services/" class="elementor-sub-item">Pressure Washing Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16938"><a href="https://prestigewaterproofingtn.com/fencing-installation/" class="elementor-sub-item">Fencing Installation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18028"><a href="#" class="elementor-item elementor-item-anchor">Our Projects</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16777"><a href="https://prestigewaterproofingtn.com/our-projects/" class="elementor-sub-item">Our Projects</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18026"><a href="https://prestigewaterproofingtn.com/our-projects-video/" class="elementor-sub-item">Our Projects Video</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16662"><a href="https://prestigewaterproofingtn.com/contact/" class="elementor-item">Contact</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-1a629cc" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-16659"><a href="https://prestigewaterproofingtn.com/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16661"><a href="https://prestigewaterproofingtn.com/about/" class="elementor-item" tabindex="-1">About</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16663"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Our Services</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16699"><a href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" class="elementor-sub-item" tabindex="-1">Drains in the Crawl Space and Water Pump</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16901"><a href="https://prestigewaterproofingtn.com/spee-d-channel-drains/" class="elementor-sub-item" tabindex="-1">Spee-D Channel Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16904"><a href="https://prestigewaterproofingtn.com/concrete-services-and-construccion/" class="elementor-sub-item" tabindex="-1">Concrete Services and Construcción</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16907"><a href="https://prestigewaterproofingtn.com/fungus-moultrie-services/" class="elementor-sub-item" tabindex="-1">Fungus Moultrie Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16910"><a href="https://prestigewaterproofingtn.com/foundation-settlement-piering-services/" class="elementor-sub-item" tabindex="-1">Foundation Settlement Piering Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16913"><a href="https://prestigewaterproofingtn.com/jacks-posts-stabilization/" class="elementor-sub-item" tabindex="-1">Jacks Posts Stabilization</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16916"><a href="https://prestigewaterproofingtn.com/basement-drains/" class="elementor-sub-item" tabindex="-1">Basement Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18860"><a href="https://prestigewaterproofingtn.com/downspout-extension/" class="elementor-sub-item" tabindex="-1">Downspout Extension</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16940"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">More Services</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16919"><a href="https://prestigewaterproofingtn.com/drywall-installation/" class="elementor-sub-item" tabindex="-1">Drywall Installation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16926"><a href="https://prestigewaterproofingtn.com/framed/" class="elementor-sub-item" tabindex="-1">Framed</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16929"><a href="https://prestigewaterproofingtn.com/exterior-painting/" class="elementor-sub-item" tabindex="-1">Exterior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16932"><a href="https://prestigewaterproofingtn.com/interior-painting/" class="elementor-sub-item" tabindex="-1">Interior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16935"><a href="https://prestigewaterproofingtn.com/pressure-washing-services/" class="elementor-sub-item" tabindex="-1">Pressure Washing Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16938"><a href="https://prestigewaterproofingtn.com/fencing-installation/" class="elementor-sub-item" tabindex="-1">Fencing Installation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18028"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Our Projects</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16777"><a href="https://prestigewaterproofingtn.com/our-projects/" class="elementor-sub-item" tabindex="-1">Our Projects</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18026"><a href="https://prestigewaterproofingtn.com/our-projects-video/" class="elementor-sub-item" tabindex="-1">Our Projects Video</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16662"><a href="https://prestigewaterproofingtn.com/contact/" class="elementor-item" tabindex="-1">Contact</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-2de1e2c elementor-widget__width-auto wpr-button-icon-style-inline wpr-button-icon-position-right elementor-widget elementor-widget-wpr-button" data-id="2de1e2c" data-element_type="widget" data-widget_type="wpr-button.default"> <div class="elementor-widget-container"> <div class="wpr-button-wrap elementor-clearfix"> <a class="wpr-button wpr-button-effect wpr-button-bounce-to-right" data-text="" href="https://prestigewaterproofingtn.com/contact/"> <span class="wpr-button-content"> <span class="wpr-button-text">GET A QUOTE </span> <span class="wpr-button-icon"><i class="far fa-paper-plane"></i></span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-b9eef04 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="b9eef04" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-33372c4" data-id="33372c4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ac5cef1 wpr-main-menu-align-left wpr-main-menu-align--tabletleft wpr-main-menu-align--mobileleft wpr-pointer-underline wpr-pointer-line-fx wpr-pointer-fx-fade wpr-sub-icon-caret-down wpr-sub-menu-fx-fade wpr-nav-menu-bp-mobile wpr-mobile-menu-full-width wpr-mobile-menu-item-align-center wpr-mobile-toggle-v1 wpr-sub-divider-yes wpr-mobile-divider-yes elementor-widget elementor-widget-wpr-nav-menu" data-id="ac5cef1" data-element_type="widget" data-settings="{"menu_layout":"horizontal"}" data-widget_type="wpr-nav-menu.default"> <div class="elementor-widget-container"> <nav class="wpr-nav-menu-container wpr-nav-menu-horizontal" data-trigger="hover"><ul id="menu-1-ac5cef1" class="wpr-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-16659"><a href="https://prestigewaterproofingtn.com/" aria-current="page" class="wpr-menu-item wpr-pointer-item wpr-active-menu-item">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16661"><a href="https://prestigewaterproofingtn.com/about/" class="wpr-menu-item wpr-pointer-item">About</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16663"><a aria-haspopup="true" aria-expanded="false" href="#" class="wpr-menu-item wpr-pointer-item">Our Services<i class="wpr-sub-icon fas" aria-hidden="true"></i></a> <ul class="sub-menu wpr-sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16699"><a href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" class="wpr-sub-menu-item">Drains in the Crawl Space and Water Pump</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16901"><a href="https://prestigewaterproofingtn.com/spee-d-channel-drains/" class="wpr-sub-menu-item">Spee-D Channel Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16904"><a href="https://prestigewaterproofingtn.com/concrete-services-and-construccion/" class="wpr-sub-menu-item">Concrete Services and Construcción</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16907"><a href="https://prestigewaterproofingtn.com/fungus-moultrie-services/" class="wpr-sub-menu-item">Fungus Moultrie Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16910"><a href="https://prestigewaterproofingtn.com/foundation-settlement-piering-services/" class="wpr-sub-menu-item">Foundation Settlement Piering Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16913"><a href="https://prestigewaterproofingtn.com/jacks-posts-stabilization/" class="wpr-sub-menu-item">Jacks Posts Stabilization</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16916"><a href="https://prestigewaterproofingtn.com/basement-drains/" class="wpr-sub-menu-item">Basement Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18860"><a href="https://prestigewaterproofingtn.com/downspout-extension/" class="wpr-sub-menu-item">Downspout Extension</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16940"><a aria-haspopup="true" aria-expanded="false" href="#" class="wpr-menu-item wpr-pointer-item">More Services<i class="wpr-sub-icon fas" aria-hidden="true"></i></a> <ul class="sub-menu wpr-sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16919"><a href="https://prestigewaterproofingtn.com/drywall-installation/" class="wpr-sub-menu-item">Drywall Installation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16926"><a href="https://prestigewaterproofingtn.com/framed/" class="wpr-sub-menu-item">Framed</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16929"><a href="https://prestigewaterproofingtn.com/exterior-painting/" class="wpr-sub-menu-item">Exterior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16932"><a href="https://prestigewaterproofingtn.com/interior-painting/" class="wpr-sub-menu-item">Interior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16935"><a href="https://prestigewaterproofingtn.com/pressure-washing-services/" class="wpr-sub-menu-item">Pressure Washing Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16938"><a href="https://prestigewaterproofingtn.com/fencing-installation/" class="wpr-sub-menu-item">Fencing Installation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18028"><a aria-haspopup="true" aria-expanded="false" href="#" class="wpr-menu-item wpr-pointer-item">Our Projects<i class="wpr-sub-icon fas" aria-hidden="true"></i></a> <ul class="sub-menu wpr-sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16777"><a href="https://prestigewaterproofingtn.com/our-projects/" class="wpr-sub-menu-item">Our Projects</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18026"><a href="https://prestigewaterproofingtn.com/our-projects-video/" class="wpr-sub-menu-item">Our Projects Video</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16662"><a href="https://prestigewaterproofingtn.com/contact/" class="wpr-menu-item wpr-pointer-item">Contact</a></li> </ul></nav><nav class="wpr-mobile-nav-menu-container"><div class="wpr-mobile-toggle-wrap"><div class="wpr-mobile-toggle"><span class="wpr-mobile-toggle-line"></span><span class="wpr-mobile-toggle-line"></span><span class="wpr-mobile-toggle-line"></span></div></div><ul id="mobile-menu-2-ac5cef1" class="wpr-mobile-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-16659"><a href="https://prestigewaterproofingtn.com/" aria-current="page" class="wpr-mobile-menu-item wpr-active-menu-item">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16661"><a href="https://prestigewaterproofingtn.com/about/" class="wpr-mobile-menu-item">About</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16663"><a href="#" class="wpr-mobile-menu-item">Our Services</a> <ul class="sub-menu wpr-sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16699"><a href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" class="wpr-mobile-sub-menu-item">Drains in the Crawl Space and Water Pump</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16901"><a href="https://prestigewaterproofingtn.com/spee-d-channel-drains/" class="wpr-mobile-sub-menu-item">Spee-D Channel Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16904"><a href="https://prestigewaterproofingtn.com/concrete-services-and-construccion/" class="wpr-mobile-sub-menu-item">Concrete Services and Construcción</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16907"><a href="https://prestigewaterproofingtn.com/fungus-moultrie-services/" class="wpr-mobile-sub-menu-item">Fungus Moultrie Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16910"><a href="https://prestigewaterproofingtn.com/foundation-settlement-piering-services/" class="wpr-mobile-sub-menu-item">Foundation Settlement Piering Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16913"><a href="https://prestigewaterproofingtn.com/jacks-posts-stabilization/" class="wpr-mobile-sub-menu-item">Jacks Posts Stabilization</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16916"><a href="https://prestigewaterproofingtn.com/basement-drains/" class="wpr-mobile-sub-menu-item">Basement Drains</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18860"><a href="https://prestigewaterproofingtn.com/downspout-extension/" class="wpr-mobile-sub-menu-item">Downspout Extension</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16940"><a href="#" class="wpr-mobile-menu-item">More Services</a> <ul class="sub-menu wpr-sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16919"><a href="https://prestigewaterproofingtn.com/drywall-installation/" class="wpr-mobile-sub-menu-item">Drywall Installation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16926"><a href="https://prestigewaterproofingtn.com/framed/" class="wpr-mobile-sub-menu-item">Framed</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16929"><a href="https://prestigewaterproofingtn.com/exterior-painting/" class="wpr-mobile-sub-menu-item">Exterior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16932"><a href="https://prestigewaterproofingtn.com/interior-painting/" class="wpr-mobile-sub-menu-item">Interior Painting</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16935"><a href="https://prestigewaterproofingtn.com/pressure-washing-services/" class="wpr-mobile-sub-menu-item">Pressure Washing Services</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16938"><a href="https://prestigewaterproofingtn.com/fencing-installation/" class="wpr-mobile-sub-menu-item">Fencing Installation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18028"><a href="#" class="wpr-mobile-menu-item">Our Projects</a> <ul class="sub-menu wpr-sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16777"><a href="https://prestigewaterproofingtn.com/our-projects/" class="wpr-mobile-sub-menu-item">Our Projects</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18026"><a href="https://prestigewaterproofingtn.com/our-projects-video/" class="wpr-mobile-sub-menu-item">Our Projects Video</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16662"><a href="https://prestigewaterproofingtn.com/contact/" class="wpr-mobile-menu-item">Contact</a></li> </ul></nav> </div> </div> <div class="elementor-element elementor-element-111fab3 elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="111fab3" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-envelope"></i> </span> <span class="elementor-icon-list-text"> info@prestigewaterproofingtn.com</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-map-marker-alt"></i> </span> <span class="elementor-icon-list-text">1697 Classic View Dr. Lebanon TN</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="far fa-clock"></i> </span> <span class="elementor-icon-list-text">Mon-Fri: 9.00 am - 7.00 pm</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-icon-list-text">(615) 732-9172</span> </li> </ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-fe6d57b" data-id="fe6d57b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-39b6065 elementor-widget__width-auto elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="39b6065" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid" role="list"> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-15642f2" href="https://www.facebook.com/profile.php?id=100094012667932" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i aria-hidden="true" class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-266a2d2" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i aria-hidden="true" class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-4560862" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i aria-hidden="true" class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item" role="listitem"> <a class="elementor-icon elementor-social-icon elementor-social-icon-whatsapp elementor-repeater-item-a62f69f" target="_blank"> <span class="elementor-screen-only">Whatsapp</span> <i aria-hidden="true" class="fab fa-whatsapp"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-f744400 elementor-widget-mobile__width-auto wpr-button-icon-style-inline wpr-button-icon-position-right elementor-widget elementor-widget-wpr-button" data-id="f744400" data-element_type="widget" data-widget_type="wpr-button.default"> <div class="elementor-widget-container"> <div class="wpr-button-wrap elementor-clearfix"> <a class="wpr-button wpr-button-effect wpr-button-none" data-text="" href="https://prestigewaterproofingtn.com/contact/"> <span class="wpr-button-content"> <span class="wpr-button-text">GET A QUOTE</span> <span class="wpr-button-icon"><i class="fas fa-angle-right"></i></span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-577b052 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="577b052" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cd781f2" data-id="cd781f2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-dec567b elementor-widget__width-auto elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image" data-id="dec567b" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://prestigewaterproofingtn.com/"> <img fetchpriority="high" width="435" height="446" src="https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/logo.png" class="attachment-full size-full wp-image-16552" alt="" srcset="https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/logo.png 435w, https://prestigewaterproofingtn.com/wp-content/uploads/2023/09/logo-293x300.png 293w" sizes="(max-width: 435px) 100vw, 435px" /> </a> </div> </div> <div class="elementor-element elementor-element-884991d elementor-widget__width-auto elementor-widget elementor-widget-icon-box" data-id="884991d" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <a href="https://prestigewaterproofingtn.com/" > PRESTIGE </a> </h3> <p class="elementor-icon-box-description"> WATERPROOFING </p> </div> </div> </div> </div> </div> </div> </div> </section> </div> </header> <div class="container"> <div id="content" class="site-content"> <div class="row padding-"> <div class="col-lg-12 "> <article id="post-16435" class="post-16435 page type-page status-publish hentry"> <div class="entry-content"> <div data-elementor-type="wp-page" data-elementor-id="16435" class="elementor elementor-16435" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-22c12311 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="22c12311" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-49e5eb2b" data-id="49e5eb2b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5a767bc5 elementor-widget elementor-widget-prime-slider-dragon" data-id="5a767bc5" data-element_type="widget" data-widget_type="prime-slider-dragon.default"> <div class="elementor-widget-container"> <div class="bdt-prime-slider"> <div class="bdt-prime-slider-dragon"> <div class="bdt-position-relative bdt-visible-toggle" data-settings="{"id":"#bdt-5a767bc5","animation_status":"no"}" id="bdt-5a767bc5" bdt-slideshow="{"animation":"fade","ratio":"1920:850","min-height":580,"autoplay":true,"autoplay-interval":7000,"pause-on-hover":false,"velocity":1,"finite":false}"> <ul class="bdt-slideshow-items"> <li class="bdt-slideshow-item bdt-flex bdt-flex-middle elementor-repeater-item-ab55a3b"> <div class="bdt-ps-dragon-bg"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-21.jpg')"></div> </div> <div class="bdt-ps-dragon-slide-image"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-21.jpg')"></div> </div> <div class="bdt-overlay-default bdt-position-cover"></div> <div class="bdt-prime-slider-wrapper"> <div class="bdt-prime-slider-content"> <div class="bdt-sub-title"> <h4 class="bdt-sub-title-inner" data-bdt-slideshow-parallax="x: 100,-100; opacity: 1,1,0" data-reveal="reveal-active"> Prestige Waterproofing </h4> </div> <div class="bdt-main-title"> <h1 class="bdt-title-tag" data-bdt-slideshow-parallax="x: 200,-200; opacity: 1,1,0" data-reveal="reveal-active"> <a href="https://prestigewaterproofingtn.com/contact/"> <span class="frist-word">What</span> can our property improvement professionals do for you? </a> </h1> </div> <div class="bdt-slider-excerpt" data-reveal="reveal-active" data-bdt-slideshow-parallax="x: 300,-300; opacity: 1,1,0"> We undertake all kinds of commercial renovation work along with design and build functionality. Our commercial and residential projects include both new construction and repairs/restorations. </div> <div data-bdt-slideshow-parallax="x: 400,-400; opacity: 1,1,0"> <a href="https://prestigewaterproofingtn.com/contact/" class="bdt-ps-dragon-button reveal-muted"> <div class="bdt-ps-button"> <div class="bdt-ps-button-text">READ MORE</div> <div class="bdt-ps-button-wrapper"> <div class="bdt-ps-button-arrow"></div> <div class="bdt-ps-button-border-circle"></div> <div class="bdt-ps-button-mask-circle"> <div class="bdt-ps-button-small-circle"></div> </div> </div> </div> </a> </div> </div> </div> </li> <li class="bdt-slideshow-item bdt-flex bdt-flex-middle elementor-repeater-item-4a21d67"> <div class="bdt-ps-dragon-bg"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-6.jpg')"></div> </div> <div class="bdt-ps-dragon-slide-image"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-6.jpg')"></div> </div> <div class="bdt-overlay-default bdt-position-cover"></div> <div class="bdt-prime-slider-wrapper"> <div class="bdt-prime-slider-content"> <div class="bdt-sub-title"> <h4 class="bdt-sub-title-inner" data-bdt-slideshow-parallax="x: 100,-100; opacity: 1,1,0" data-reveal="reveal-active"> Prestige Waterproofing </h4> </div> <div class="bdt-main-title"> <h1 class="bdt-title-tag" data-bdt-slideshow-parallax="x: 200,-200; opacity: 1,1,0" data-reveal="reveal-active"> <a href="https://prestigewaterproofingtn.com/contact/"> <span class="frist-word">What</span> can our property improvement professionals do for you? </a> </h1> </div> <div class="bdt-slider-excerpt" data-reveal="reveal-active" data-bdt-slideshow-parallax="x: 300,-300; opacity: 1,1,0"> We undertake all kinds of commercial renovation work along with design and build functionality. Our commercial and residential projects include both new construction and repairs/restorations. </div> <div data-bdt-slideshow-parallax="x: 400,-400; opacity: 1,1,0"> <a href="https://prestigewaterproofingtn.com/contact/" class="bdt-ps-dragon-button reveal-muted"> <div class="bdt-ps-button"> <div class="bdt-ps-button-text">READ MORE</div> <div class="bdt-ps-button-wrapper"> <div class="bdt-ps-button-arrow"></div> <div class="bdt-ps-button-border-circle"></div> <div class="bdt-ps-button-mask-circle"> <div class="bdt-ps-button-small-circle"></div> </div> </div> </div> </a> </div> </div> </div> </li> <li class="bdt-slideshow-item bdt-flex bdt-flex-middle elementor-repeater-item-36ea8bf"> <div class="bdt-ps-dragon-bg"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-11.jpg')"></div> </div> <div class="bdt-ps-dragon-slide-image"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-11.jpg')"></div> </div> <div class="bdt-overlay-default bdt-position-cover"></div> <div class="bdt-prime-slider-wrapper"> <div class="bdt-prime-slider-content"> <div class="bdt-sub-title"> <h4 class="bdt-sub-title-inner" data-bdt-slideshow-parallax="x: 100,-100; opacity: 1,1,0" data-reveal="reveal-active"> Prestige Waterproofing </h4> </div> <div class="bdt-main-title"> <h1 class="bdt-title-tag" data-bdt-slideshow-parallax="x: 200,-200; opacity: 1,1,0" data-reveal="reveal-active"> <a href="https://prestigewaterproofingtn.com/contact/"> <span class="frist-word">What</span> can our property improvement professionals do for you? </a> </h1> </div> <div class="bdt-slider-excerpt" data-reveal="reveal-active" data-bdt-slideshow-parallax="x: 300,-300; opacity: 1,1,0"> We undertake all kinds of commercial renovation work along with design and build functionality. Our commercial and residential projects include both new construction and repairs/restorations. </div> <div data-bdt-slideshow-parallax="x: 400,-400; opacity: 1,1,0"> <a href="https://prestigewaterproofingtn.com/contact/" class="bdt-ps-dragon-button reveal-muted"> <div class="bdt-ps-button"> <div class="bdt-ps-button-text">READ MORE</div> <div class="bdt-ps-button-wrapper"> <div class="bdt-ps-button-arrow"></div> <div class="bdt-ps-button-border-circle"></div> <div class="bdt-ps-button-mask-circle"> <div class="bdt-ps-button-small-circle"></div> </div> </div> </div> </a> </div> </div> </div> </li> <li class="bdt-slideshow-item bdt-flex bdt-flex-middle elementor-repeater-item-88dca6a"> <div class="bdt-ps-dragon-bg"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-34.jpg')"></div> </div> <div class="bdt-ps-dragon-slide-image"> <div class="bdt-ps-slide-img" style="background-image: url('https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-34.jpg')"></div> </div> <div class="bdt-overlay-default bdt-position-cover"></div> <div class="bdt-prime-slider-wrapper"> <div class="bdt-prime-slider-content"> <div class="bdt-sub-title"> <h4 class="bdt-sub-title-inner" data-bdt-slideshow-parallax="x: 100,-100; opacity: 1,1,0" data-reveal="reveal-active"> Prestige Waterproofing </h4> </div> <div class="bdt-main-title"> <h1 class="bdt-title-tag" data-bdt-slideshow-parallax="x: 200,-200; opacity: 1,1,0" data-reveal="reveal-active"> <a href="https://prestigewaterproofingtn.com/contact/"> <span class="frist-word">What</span> can our property improvement professionals do for you? </a> </h1> </div> <div class="bdt-slider-excerpt" data-reveal="reveal-active" data-bdt-slideshow-parallax="x: 300,-300; opacity: 1,1,0"> We undertake all kinds of commercial renovation work along with design and build functionality. Our commercial and residential projects include both new construction and repairs/restorations. </div> <div data-bdt-slideshow-parallax="x: 400,-400; opacity: 1,1,0"> <a href="https://prestigewaterproofingtn.com/contact/" class="bdt-ps-dragon-button reveal-muted"> <div class="bdt-ps-button"> <div class="bdt-ps-button-text">READ MORE</div> <div class="bdt-ps-button-wrapper"> <div class="bdt-ps-button-arrow"></div> <div class="bdt-ps-button-border-circle"></div> <div class="bdt-ps-button-mask-circle"> <div class="bdt-ps-button-small-circle"></div> </div> </div> </div> </a> </div> </div> </div> </li> </ul> <ul class="bdt-slideshow-nav bdt-dotnav bdt-dotnav-vertical reveal-muted"> <li bdt-slideshow-item="0" data-label="01" ><a href="#"></a></li> <li bdt-slideshow-item="1" data-label="02" ><a href="#"></a></li> <li bdt-slideshow-item="2" data-label="03" ><a href="#"></a></li> <li bdt-slideshow-item="3" data-label="04" ><a href="#"></a></li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-e724129 elementor-section-full_width elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="e724129" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-be29d7b" data-id="be29d7b" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c1e7033 elementor-widget elementor-widget-rs-iconbox" data-id="c1e7033" data-element_type="widget" data-widget_type="rs-iconbox.default"> <div class="elementor-widget-container"> <div class="rs-iconbox-area rs-animation-yes"> <div class="box-inner"> <div class="text-area"> <div class="iconbox-title"> <h3 class="title"> <a href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" >Crawl Space Drainage Systems</a></h3> </div> <p class="services-txt"> Even though your crawl space is out of sight and relatively useless, this area is an important part of your home. A large portion of the air in your home circulates through the crawl space, which is why keeping the space dry and hygienic is so important.</p> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7c6ee40" data-id="7c6ee40" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-50b5bbd elementor-widget elementor-widget-rs-iconbox" data-id="50b5bbd" data-element_type="widget" data-widget_type="rs-iconbox.default"> <div class="elementor-widget-container"> <div class="rs-iconbox-area rs-animation-yes"> <div class="box-inner"> <div class="text-area"> <div class="iconbox-title"> <h3 class="title"> <a href="https://prestigewaterproofingtn.com/spee-d-channel-drains/" >Spee-D Channel Drains</a></h3> </div> <p class="services-txt"> Drains can protect your home and property from water damage. Prestige Waterproofing installs a wide variety of Drains in many different places. A Drain or Group of Drains connected together with Drain Pipe going to an exit point is a “Drainage System.”</p> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-66709a9" data-id="66709a9" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8332b56 elementor-widget elementor-widget-rs-iconbox" data-id="8332b56" data-element_type="widget" data-widget_type="rs-iconbox.default"> <div class="elementor-widget-container"> <div class="rs-iconbox-area rs-animation-yes"> <div class="box-inner"> <div class="text-area"> <div class="iconbox-title"> <h3 class="title"> <a href="https://prestigewaterproofingtn.com/fungus-moultrie-services/" >Crawl Space Mold Causes</a></h3> </div> <p class="services-txt"> Crawl space mold and fungus grows as a result of moisture in the crawl space and can cause health issues in the home. A wet crawl space is caused by a combination of issues leading to mold in the crawl space which will contaminate the air and infiltrate inside the home. </p> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-770c8ec elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="770c8ec" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-1f1a5010" data-id="1f1a5010" data-element_type="column" data-settings="{"background_background":"slideshow","background_slideshow_gallery":[],"background_slideshow_loop":"yes","background_slideshow_slide_duration":5000,"background_slideshow_slide_transition":"fade","background_slideshow_transition_duration":500}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2fed906 wpr-promo-box-style-cover elementor-widget elementor-widget-wpr-promo-box" data-id="2fed906" data-element_type="widget" data-widget_type="wpr-promo-box.default"> <div class="elementor-widget-container"> <div class="wpr-promo-box wpr-animation-wrap"> <div class="wpr-promo-box-image"> <div class="wpr-promo-box-bg-image wpr-bg-anim-zoom-in wpr-anim-timing-ease-default" style="background-image:url(https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-11.jpg);"></div> <div class="wpr-promo-box-bg-overlay wpr-border-anim-oscar"></div> </div> <div class="wpr-promo-box-content"> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6c9c9a35" data-id="6c9c9a35" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-32f12ca elementor-widget elementor-widget-rs-heading" data-id="32f12ca" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 animate- "> <div class="title-inner"> <span class="sub-text ">www.prestigewaterproofingtn.com</span><h2 class="title"><span class="watermark"></span>The quality you deserve, the expertise you can trust Prestige Waterproofing.</h2> </div> <div class="description"> We are an industry leader that provides exceptional products installed by expertly trained professionals. Because many of our teammates are from the area and have been working here their entire lives, we know what type of problems to expect and how to appropriately assess and provide the best type of repair for each situation we come across. We treat every job as if we were performing the work on our own home </div> </div> </div> </div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-4ec8b251 elementor-section-full_width elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="4ec8b251" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-568a8d85" data-id="568a8d85" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5a91ff62 elementor-widget elementor-widget-heading" data-id="5a91ff62" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Contact Us</h2> </div> </div> <div class="elementor-element elementor-element-61c70fd4 elementor-widget elementor-widget-heading" data-id="61c70fd4" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Create your customized house cleaning plan today by dialing (615) 732-9172</h2> </div> </div> <div class="elementor-element elementor-element-729c7eda elementor-position-inline-start elementor-view-stacked elementor-mobile-position-inline-start elementor-shape-circle elementor-widget elementor-widget-icon-box" data-id="729c7eda" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <a href="tel:%20(7854)%20333-222" class="elementor-icon" tabindex="-1" aria-label="Call Center"> <i aria-hidden="true" class="fas fa-mobile-alt"></i> </a> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <a href="tel:%20(7854)%20333-222" > Call Center </a> </h3> <p class="elementor-icon-box-description"> (615) 732-9172 </p> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e38f4d" data-id="e38f4d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bbd13ba elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="bbd13ba" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-angle-right"></i> </span> <span class="elementor-icon-list-text">100% Satisfaction Guaranteed</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-angle-right"></i> </span> <span class="elementor-icon-list-text">First Class Quality Service</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-angle-right"></i> </span> <span class="elementor-icon-list-text"> Immediate 24/ 7 Emergency</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-angle-right"></i> </span> <span class="elementor-icon-list-text">service with reasonable price</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-angle-right"></i> </span> <span class="elementor-icon-list-text">Free Estimates</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-6af75506 elementor-align-left elementor-widget elementor-widget-button" data-id="6af75506" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://prestigewaterproofingtn.com/contact/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="far fa-paper-plane"></i> </span> <span class="elementor-button-text">GET A QUOTE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-b85db1c elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="b85db1c" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a9d3f6d" data-id="a9d3f6d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-677bef4 elementor-widget elementor-widget-rs-heading" data-id="677bef4" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 animate- center"> <div class="title-inner"> <span class="sub-text ">WWW.PRESTIGEWATERPROOFINGTN.com</span><h2 class="title"><span class="watermark"></span>What can our home improvement professionals do for you? </h2> </div> <div class="description"> We undertake all kinds of commercial renovation work along with design and build functionality. Our commercial and residential projects include both new construction and repairs/restorations. Occupied and fully operational job sites are never a problem and we can also plan, manage, and build multi-phase jobs. Call us today and bring our project management skills and extensive construction experience to your next project. </div> </div> </div> </div> <div class="elementor-element elementor-element-414bb3f elementor-widget elementor-widget-jw-carousel" data-id="414bb3f" data-element_type="widget" data-settings="{"slides_to_show":"3","slides_to_show_mobile":"1"}" data-widget_type="jw-carousel.default"> <div class="elementor-widget-container"> <div class="elementor-jw-carousel jet-widgets"><div class="jw-carousel-wrap"> <div class="jw-carousel elementor-slick-slider" data-slider_options="{"autoplaySpeed":5000,"autoplay":true,"infinite":true,"pauseOnHover":false,"speed":500,"arrows":true,"dots":false,"slidesToScroll":1,"prevArrow":"<span class=\"jet-widgets-icon prev-arrow jw-arrow slick-arrow\"><i aria-hidden=\"true\" class=\"fas fa-angle-left\"><\/i><\/span>","variableWidth":false,"vertical":false,"nextArrow":"<span class=\"jet-widgets-icon next-arrow jw-arrow slick-arrow\"><i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i><\/span>","rtl":false}" dir="ltr"> <div class="jw-carousel__item"> <div class="jw-carousel__item-inner"><a href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" class="jw-carousel__item-link"><img decoding="async" src="https://prestigewaterproofingtn.com/wp-content/uploads/2023/10/Crawl-Space-Drainage-System.jpg" alt="" class="jw-carousel__item-img"></a><div class="jw-carousel__content"><h5 class="jw-carousel__item-title">Crawl Space Drainage System</h5><div class="jw-carousel__item-text">The crawl space should never be wet. If you notice water in the crawl space when there's heavy rain, it's necessary to find a solution to keep the crawl space dry to prevent water damage. Call us directly at and WhatsApp (615) 732-9172</div><a class="elementor-button elementor-size-md jw-carousel__item-button" href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/">VIEW SERVICES </a></div></div> </div> <div class="jw-carousel__item"> <div class="jw-carousel__item-inner"><a href="https://prestigewaterproofingtn.com/drywall-installation/" class="jw-carousel__item-link"><img decoding="async" src="https://prestigewaterproofingtn.com/wp-content/uploads/2023/10/Drywall-Installation-Services.jpg" alt="" class="jw-carousel__item-img"></a><div class="jw-carousel__content"><h5 class="jw-carousel__item-title">Drywall Installation Services</h5><div class="jw-carousel__item-text">Professional drywall maintenance and repair are critical to preserving your home aesthetic and ensuring it's structurally sound. Whether you nicked the wall while moving furniture or need to cover an unsightly hole, our drywall professionals can repair it all.</div><a class="elementor-button elementor-size-md jw-carousel__item-button" href="https://prestigewaterproofingtn.com/drywall-installation/">VIEW SERVICES </a></div></div> </div> <div class="jw-carousel__item"> <div class="jw-carousel__item-inner"><a href="https://prestigewaterproofingtn.com/pressure-washing-services/" class="jw-carousel__item-link"><img decoding="async" src="https://prestigewaterproofingtn.com/wp-content/uploads/2023/10/Professional-Pressure-Washing.jpg" alt="" class="jw-carousel__item-img"></a><div class="jw-carousel__content"><h5 class="jw-carousel__item-title">Professional Pressure Washing</h5><div class="jw-carousel__item-text">Want the exterior of your home to look its best? Hire a professional to provide home pressure washing services! You can quickly and effectively remove built-up dirt, sediment, and other debris by power washing your deck, siding, driveway, and other exterior areas around your home.</div><a class="elementor-button elementor-size-md jw-carousel__item-button" href="https://prestigewaterproofingtn.com/pressure-washing-services/">VIEW SERVICES </a></div></div> </div> <div class="jw-carousel__item"> <div class="jw-carousel__item-inner"><a href="https://prestigewaterproofingtn.com/fencing-installation/" class="jw-carousel__item-link"><img decoding="async" src="https://prestigewaterproofingtn.com/wp-content/uploads/2023/10/Fencing-Installation-Contractors.jpg" alt="" class="jw-carousel__item-img"></a><div class="jw-carousel__content"><h5 class="jw-carousel__item-title">Fencing Installation Contractors</h5><div class="jw-carousel__item-text">Fencing is not only a practical way to keep your children and pets safe, but it can also clearly mark your property lines and increase your home’s overall value. Fences can also help dampen noise from nearby neighbors and heavy traffic, give your landscaping structure.</div><a class="elementor-button elementor-size-md jw-carousel__item-button" href="https://prestigewaterproofingtn.com/fencing-installation/">VIEW SERVICES </a></div></div> </div> </div></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6532d4e elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="6532d4e" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-fbf053b" data-id="fbf053b" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8f88698 elementor-widget elementor-widget-rs-heading" data-id="8f88698" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style8 animate- left"> <div class="title-inner"> <span class="sub-text ">WWW.PRESTIGEWATERPROOFINGTN.com</span><h2 class="title"><span class="watermark"></span>Crawl Space Drainage Systems </h2> </div> <div class="description"> Water in your crawl space has a direct impact on building longevity and health. In order to improve the integrity and air quality of your home, it’s essential to install the right kind of drainage system. There are multiple drainage systems available to choose from, including French drain systems, low point drain and discharge systems, and exterior French drain systems. </div> </div> </div> </div> <div class="elementor-element elementor-element-8cc7920 elementor-widget elementor-widget-rs-button" data-id="8cc7920" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-btn style4"> <a class="rs_button" href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/" > <span class="btn_text">Crawl Space Drainage</span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7a7c76f" data-id="7a7c76f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1ca65b7 wpr-promo-box-style-cover elementor-widget elementor-widget-wpr-promo-box" data-id="1ca65b7" data-element_type="widget" data-widget_type="wpr-promo-box.default"> <div class="elementor-widget-container"> <div class="wpr-promo-box wpr-animation-wrap"> <div class="wpr-promo-box-image"> <div class="wpr-promo-box-bg-image wpr-bg-anim-zoom-out wpr-anim-timing-ease-default" style="background-image:url(https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-15.jpg);"></div> <div class="wpr-promo-box-bg-overlay wpr-border-anim-oscar"></div> </div> <div class="wpr-promo-box-content"> <div class="wpr-promo-box-btn-wrap"> <a class="wpr-promo-box-btn" href="https://prestigewaterproofingtn.com/drains-in-the-crawl-space-and-water-pump/"> <span class="wpr-promo-box-btn-text">Crawl Space Drainage System</span> </a> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-b4742a5 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="b4742a5" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1c58514" data-id="1c58514" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-97d7201 elementor-widget elementor-widget-rs-heading" data-id="97d7201" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 animate- center"> <div class="title-inner"> <span class="sub-text ">Crawl Space Drainage Systems</span><h2 class="title"><span class="watermark"></span>When you think of a crawl space drainage system, what comes to mind?</h2> </div> <div class="description"> No matter what you’re thinking, we are here to help! Prestige Waterproofing is ready to help answer any and all questions you may have about getting water out from under your home and keeping it out with a crawl space drainage system. </div> </div> </div> </div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-92f7bd2 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="92f7bd2" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-83af01e" data-id="83af01e" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-02a59aa" data-id="02a59aa" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bfef7f1 elementor-widget elementor-widget-video" data-id="bfef7f1" data-element_type="widget" data-settings="{"video_type":"hosted","controls":"yes"}" data-widget_type="video.default"> <div class="elementor-widget-container"> <div class="e-hosted-video elementor-wrapper elementor-open-inline"> <video class="elementor-video" src="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Video02.mp4" controls="" preload="metadata" controlsList="nodownload" poster="https://prestigewaterproofingtn.com/wp-content/uploads/2023/10/Crawl-Space-Drainage-Systems.jpg"></video> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-971e5d7" data-id="971e5d7" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-09bf787 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="09bf787" data-element_type="section" data-settings="{"stretch_section":"section-stretched"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1507fd4" data-id="1507fd4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-6c8b869 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="6c8b869" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-9b5bc14" data-id="9b5bc14" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4c87526 elementor-widget elementor-widget-rs-heading" data-id="4c87526" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 animate- center"> <div class="title-inner"> <span class="sub-text ">WWW.PRESTIGEWATERPROOFINGTN.com</span><h2 class="title"><span class="watermark"></span>What can our home improvement professionals do for you? </h2> </div> <div class="description"> From concept and design consultation through to the final build and finishing, we have the experience and expertise to make your home renovation vision a success. Contact us today to move one step closer toward completing your beautiful new renovation! </div> </div> </div> </div> <div class="elementor-element elementor-element-8931e77 elementor-widget elementor-widget-rs-button" data-id="8931e77" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-btn style4"> <a class="rs_button" href="https://prestigewaterproofingtn.com/our-projects/" > <span class="btn_text">CALL FOR A FREE ESTIMATE</span> </a> </div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-55ee45c elementor-widget elementor-widget-gallery" data-id="55ee45c" data-element_type="widget" data-settings="{"gallery_layout":"justified","gap":{"unit":"px","size":2,"sizes":[]},"ideal_row_height_mobile":{"unit":"px","size":120,"sizes":[]},"gap_mobile":{"unit":"px","size":2,"sizes":[]},"lazyload":"yes","ideal_row_height":{"unit":"px","size":200,"sizes":[]},"ideal_row_height_tablet":{"unit":"px","size":150,"sizes":[]},"gap_tablet":{"unit":"px","size":10,"sizes":[]},"link_to":"file","overlay_background":"yes","content_hover_animation":"fade-in"}" data-widget_type="gallery.default"> <div class="elementor-widget-container"> <div class="elementor-gallery__container"> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/projects01.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="projects01" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MDgsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9wcm9qZWN0czAxLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/projects01.jpg" data-width="1020" data-height="564" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-12.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODYsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTEyLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-12.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-11.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODUsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTExLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-11.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-10.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODQsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTEwLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-10.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-9.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODMsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTkuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-9.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-8.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODIsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTguanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-8.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-7.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODEsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTcuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-7.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-6.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4ODAsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTYuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-6.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-5.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NzksInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTUuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-5.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-4.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NzcsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTQuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-4.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-3.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NzYsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTMuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-3.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Downspout Extension (2)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NzUsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTIuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-2.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-1.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NzMsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Eb3duc3BvdXQtRXh0ZW5zaW9uLTEuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/06/Downspout-Extension-1.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (2)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MzcsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTIuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-2.jpg" data-width="1079" data-height="604" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-3.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (3)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MzgsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTMuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-3.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-4.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (4)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MzksInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTQuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-4.jpg" data-width="755" data-height="604" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-5.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (5)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NDAsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTUuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-5.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-6.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (6)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NDEsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTYuanBnIiwic2xpZGVzaG93IjoiNTVlZTQ1YyJ9"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-6.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-15.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (15)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTAsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTE1LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-15.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-23.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (23)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTgsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTIzLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-23.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-22.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (22)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTcsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTIyLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-22.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-21.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (21)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTYsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTIxLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-21.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-20.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (20)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTUsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTIwLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-20.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-27.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (27)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NjIsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTI3LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-27.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-28.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (28)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NjMsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTI4LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-28.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-18.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (18)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTMsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTE4LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-18.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-17.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (17)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NTIsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTE3LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-17.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-35.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (35)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NzAsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTM1LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-35.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-45.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (45)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5ODAsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTQ1LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-45.jpg" data-width="1600" data-height="900" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-41.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (41)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NzYsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTQxLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-41.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-40.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (40)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NzUsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTQwLmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-40.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> <a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-38.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="55ee45c" data-elementor-lightbox-title="Gallery Projects (38)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NzMsInVybCI6Imh0dHBzOlwvXC9wcmVzdGlnZXdhdGVycHJvb2Zpbmd0bi5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA4XC9HYWxsZXJ5LVByb2plY3RzLTM4LmpwZyIsInNsaWRlc2hvdyI6IjU1ZWU0NWMifQ%3D%3D"> <div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://prestigewaterproofingtn.com/wp-content/uploads/2024/08/Gallery-Projects-38.jpg" data-width="900" data-height="1600" aria-label="" role="img" ></div> <div class="elementor-gallery-item__overlay"></div> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-63cc978 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="63cc978" data-element_type="section" data-settings="{"background_background":"classic","stretch_section":"section-stretched"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e392d54 elementor-hidden-mobile" data-id="e392d54" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-234ec05" data-id="234ec05" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ca389b6 elementor-widget elementor-widget-rs-heading" data-id="ca389b6" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 animate- center"> <div class="title-inner"> <span class="sub-text ">WWW.PRESTIGEWATERPROOFINGTN.com</span><h2 class="title"><span class="watermark"></span>Call Us Today for a FREE Estimate! (615) 732-9172</h2> </div> <div class="description"> If you’ve had damage to your home or just want to remodel, we have everything you need to complete your home construction project. </div> </div> </div> </div> <div class="elementor-element elementor-element-1d6f09e elementor-widget elementor-widget-rs-button" data-id="1d6f09e" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-btn style4"> <a class="rs_button" href="https://prestigewaterproofingtn.com/contact/" > <span class="btn_text">CALL FOR A FREE ESTIMATE</span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-71fb1b4 elementor-hidden-mobile" data-id="71fb1b4" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-5a0b9db elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no" data-id="5a0b9db" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c0c9b42" data-id="c0c9b42" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-66224d8 elementor-button-align-stretch elementor-widget elementor-widget-form" data-id="66224d8" data-element_type="widget" data-settings="{"button_width":"30","step_next_label":"Next","step_previous_label":"Previous","step_type":"number_text","step_icon_shape":"circle"}" data-widget_type="form.default"> <div class="elementor-widget-container"> <form class="elementor-form" method="post" name="New Form" aria-label="New Form"> <input type="hidden" name="post_id" value="16435"/> <input type="hidden" name="form_id" value="66224d8"/> <input type="hidden" name="referer_title" value="" /> <input type="hidden" name="queried_id" value="16435"/> <div class="elementor-form-fields-wrapper elementor-labels-above"> <div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50"> <input size="1" type="text" name="form_fields[name]" id="form-field-name" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="Name"> </div> <div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_8729eb4 elementor-col-25"> <input size="1" type="text" name="form_fields[field_8729eb4]" id="form-field-field_8729eb4" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="Phone number"> </div> <div class="elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-25 elementor-field-required"> <input size="1" type="email" name="form_fields[email]" id="form-field-email" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="E-mail Address" required="required"> </div> <div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_e76dc2c elementor-col-100"> <input size="1" type="text" name="form_fields[field_e76dc2c]" id="form-field-field_e76dc2c" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="Street Address"> </div> <div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_105de8e elementor-col-40"> <input size="1" type="text" name="form_fields[field_105de8e]" id="form-field-field_105de8e" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="City"> </div> <div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_873d76e elementor-col-40"> <input size="1" type="text" name="form_fields[field_873d76e]" id="form-field-field_873d76e" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="State/Province"> </div> <div class="elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_1513490 elementor-col-20"> <input size="1" type="text" name="form_fields[field_1513490]" id="form-field-field_1513490" class="elementor-field elementor-size-sm elementor-field-textual" placeholder="ZIP/Postal Code"> </div> <div class="elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100"> <textarea class="elementor-field-textual elementor-field elementor-size-sm" name="form_fields[message]" id="form-field-message" rows="4" placeholder="Enter your message..."></textarea> </div> <div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-30 e-form__buttons"> <button class="elementor-button elementor-size-lg" type="submit"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fas fa-envelope"></i> </span> <span class="elementor-button-text">Send Message Now</span> </span> </button> </div> </div> </form> </div> </div> </div> </div> </div> </section> </div> </div> <!-- .entry-content --> </article> <!-- #post-16435 --> </div> </div> </div> </div> </div><!-- .main-container --> <footer id="rs-footer" class=" rs-footer footer-style-1" > <div class="footer-top"> <div class="container"> <div class="row"> <div class="col-lg-4 footer-0"> </div> <div class="col-lg-4 footer-2"> </div> <div class="col-lg-4 footer-3"> </div> </div> </div> </div> <div class="footer-bottom" > <div class="container"> <div class="rows"> <div class="copy1"> <div class="copyright text-left" style="padding: 0px" > <p>© 2026. <a href="https://prestigewaterproofingtn.com/" rel="home">Prestige Water Proofing</a> </p> </div> </div> <div class="copy2"> <div class="copyright-widget text-right" style="padding: 0px" > </div> </div> </div> </div> </div> </footer> </div><!-- #page --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/konstruk/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='widget-social-icons-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='widget-nav-menu-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/css/widget-nav-menu.min.css?ver=3.34.0' media='all' /> <link rel='stylesheet' id='wpr-button-animations-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/css/lib/animations/button-animations.min.css?ver=1.7.1043' media='all' /> <link rel='stylesheet' id='wpr-link-animations-css-css' href='https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/css/lib/animations/wpr-link-animations.min.css?ver=1.7.1043' media='all' /> <script id="cherry-js-core-js-extra"> var wp_load_style = {"0":"wp-img-auto-sizes-contain.css","1":"hfe-widgets-style.css","2":"wp-emoji-styles.css","4":"classic-theme-styles.css","5":"global-styles.css","6":"hfe-style.css","7":"elementor-icons.css","8":"elementor-frontend.css","9":"elementor-post-7.css","10":"ps-dragon.css","11":"e-animation-wobble-vertical.css","12":"e-swiper.css","13":"widget-heading.css","14":"widget-icon-box.css","15":"widget-icon-list.css","16":"widget-video.css","17":"widget-gallery.css","18":"elementor-gallery.css","19":"e-transitions.css","20":"widget-form.css","21":"elementor-post-16435.css","22":"elementor-post-16506.css","23":"materialize.css","24":"rsaddons-floaticon.css","25":"headding-title.css","26":"rsaddons-pro.css","27":"cherry-handler-css.css","28":"jet-widgets.css","29":"jet-widgets-skin.css","30":"jet-juxtapose-css.css","31":"hfe-elementor-icons.css","32":"hfe-icons-list.css","33":"hfe-social-icons.css","34":"hfe-social-share-icons-brands.css","35":"hfe-social-share-icons-fontawesome.css","36":"hfe-nav-menu-icons.css","37":"hfe-widget-blockquote.css","38":"hfe-mega-menu.css","39":"hfe-nav-menu-widget.css","40":"eael-general.css","41":"wpr-animations-css.css","42":"wpr-text-animations-css.css","43":"wpr-addons-css.css","44":"font-awesome-5-all.css","45":"site-reviews.css","46":"bdt-uikit.css","47":"prime-slider-site.css","48":"elementor-gf-local-roboto.css","49":"elementor-gf-local-robotoslab.css","50":"elementor-gf-local-rubik.css","51":"elementor-gf-local-jost.css","52":"elementor-gf-local-montserrat.css","53":"elementor-gf-local-lato.css","54":"elementor-gf-local-poppins.css","55":"elementor-gf-local-kumbhsans.css","56":"elementor-gf-local-barlowcondensed.css","57":"elementor-icons-fa-solid.css","58":"elementor-icons-fa-regular.css","59":"elementor-icons-fa-brands.css"}; var wp_load_script = ["cherry-js-core.js","elementor-frontend.js","swiper.js","jet-slick.js","elementor-gallery.js","wpr-particles.js","wpr-jarallax.js","wpr-parallax-hover.js","popper.js","headding-title.js","slick.js","materialize.js","js-tilt-view.js","jquery-ui.js","jquery-plugin-progressbar.js","rsaddons-custom-pro.js","cherry-handler-js.js","jquery.js","eael-general.js","pa-elements-handler.js","site-reviews.js","bdt-uikit.js","prime-slider-site.js"]; var cherry_ajax = ["0843b8ca72"]; var ui_init_object = {"auto_init":"false","targets":[]}; //# sourceURL=cherry-js-core-js-extra </script> <script id="cherry-js-core-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/cherry-framework/modules/cherry-js-core/assets/js/min/cherry-js-core.min.js?ver=1.5.11"></script> <script id="elementor-webpack-runtime-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.34.0"></script> <script id="elementor-frontend-modules-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.34.0"></script> <script id="jquery-ui-core-js" src="https://prestigewaterproofingtn.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script> <script id="elementor-frontend-js-extra"> var PremiumSettings = {"ajaxurl":"https://prestigewaterproofingtn.com/wp-admin/admin-ajax.php","nonce":"bf2aa6a4a2"}; var EAELImageMaskingConfig = {"svg_dir_url":"https://prestigewaterproofingtn.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/img/image-masking/svg-shapes/"}; //# sourceURL=elementor-frontend-js-extra </script> <script id="elementor-frontend-js-before"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.34.0","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"theme_builder_v2":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"e_interactions":true,"import-export-customization":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/prestigewaterproofingtn.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/prestigewaterproofingtn.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/prestigewaterproofingtn.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"1f0049b68f"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":16435,"title":"Prestige%20Water%20Proofing%20%E2%80%93%20Prestige%20Water%20Proofing","excerpt":"","featuredImage":false}}; //# sourceURL=elementor-frontend-js-before </script> <script id="elementor-frontend-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.34.0"></script> <script id="swiper-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js?ver=8.4.5"></script> <script id="jet-slick-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/assets/js/lib/slick/slick.min.js?ver=1.8.1"></script> <script id="elementor-gallery-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js?ver=1.2.0"></script> <script id="wpr-particles-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/js/lib/particles/particles.js?ver=3.0.6"></script> <script id="wpr-jarallax-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/js/lib/jarallax/jarallax.min.js?ver=1.12.7"></script> <script id="wpr-parallax-hover-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/js/lib/parallax/parallax.min.js?ver=1.0"></script> <script id="popper-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/popper.min.js?ver=201513434"></script> <script id="headding-title-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/headding-title.js?ver=201513434"></script> <script id="slick-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/slick.min.js?ver=201513434"></script> <script id="materialize-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/materialize.min.js?ver=201513434"></script> <script id="js-tilt-view-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/tilt.jquery.min.js?ver=201513434"></script> <script id="jquery-ui-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/jquery-ui.js?ver=201513434"></script> <script id="jquery-plugin-progressbar-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/jQuery-plugin-progressbar.js?ver=201513434"></script> <script id="imagesloaded-js" src="https://prestigewaterproofingtn.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0"></script> <script id="rsaddons-custom-pro-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/rselements/assets/js/custom.js?ver=201513434"></script> <script id="cherry-handler-js-js-extra"> var jw_subscribe_form_ajax = {"action":"jw_subscribe_form_ajax","nonce":"26ac6ef39f","type":"POST","data_type":"json","is_public":"true","sys_messages":{"invalid_base_data":"Unable to process the request without nonce or server error","no_right":"No right for this action","invalid_nonce":"Stop CHEATING!!!","access_is_allowed":"Access is allowed","wait_processing":"Please wait, processing the previous request"}}; var cherryHandlerAjaxUrl = {"ajax_url":"https://prestigewaterproofingtn.com/wp-admin/admin-ajax.php"}; //# sourceURL=cherry-handler-js-js-extra </script> <script id="cherry-handler-js-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/cherry-framework/modules/cherry-handler/assets/js/min/cherry-handler.min.js?ver=1.5.11"></script> <script id="eael-general-js-extra"> var localize = {"ajaxurl":"https://prestigewaterproofingtn.com/wp-admin/admin-ajax.php","nonce":"8effc09bd7","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https://prestigewaterproofingtn.com/","cart_redirectition":"no","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; //# sourceURL=eael-general-js-extra </script> <script id="eael-general-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.5.4"></script> <script id="pa-elements-handler-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/premium-addons-for-elementor/assets/frontend/min-js/elements-handler.min.js?ver=4.11.62"></script> <script id="site-reviews-js-before"> window.hasOwnProperty("GLSR")||(window.GLSR={Event:{on:()=>{}}});GLSR.action="glsr_public_action";GLSR.addons=[];GLSR.ajaxpagination=["#wpadminbar",".site-navigation-fixed"];GLSR.ajaxurl="https://prestigewaterproofingtn.com/wp-admin/admin-ajax.php";GLSR.captcha=[];GLSR.nameprefix="site-reviews";GLSR.starsconfig={"clearable":false,tooltip:"Select a Rating"};GLSR.state={"popstate":false};GLSR.text={closemodal:"Close Modal"};GLSR.urlparameter="reviews-page";GLSR.validationconfig={field:"glsr-field",form:"glsr-form","field_error":"glsr-field-is-invalid","field_hidden":"glsr-hidden","field_message":"glsr-field-error","field_required":"glsr-required","field_valid":"glsr-field-is-valid","form_error":"glsr-form-is-invalid","form_message":"glsr-form-message","form_message_failed":"glsr-form-failed","form_message_success":"glsr-form-success","input_error":"glsr-is-invalid","input_valid":"glsr-is-valid"};GLSR.validationstrings={accepted:"This field must be accepted.",between:"This field value must be between %s and %s.",betweenlength:"This field must have between %s and %s characters.",email:"This field requires a valid e-mail address.",errors:"Please fix the submission errors.",max:"Maximum value for this field is %s.",maxfiles:"This field allows a maximum of %s files.",maxlength:"This field allows a maximum of %s characters.",min:"Minimum value for this field is %s.",minfiles:"This field requires a minimum of %s files.",minlength:"This field requires a minimum of %s characters.",number:"This field requires a number.",pattern:"Please match the requested format.",regex:"Please match the requested format.",required:"This field is required.",tel:"This field requires a valid telephone number.",url:"This field requires a valid website URL (make sure it starts with http or https).",unsupported:"The review could not be submitted because this browser is too old. Please try again with a modern browser."};GLSR.version="7.2.13"; //# sourceURL=site-reviews-js-before </script> <script data-wp-strategy="defer" id="site-reviews-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/site-reviews/assets/scripts/site-reviews.js?ver=7.2.13"></script> <script id="site-reviews-js-after"> function glsr_init_elementor(){GLSR.Event.trigger("site-reviews/init")}"undefined"!==typeof jQuery&&(jQuery(window).on("elementor/frontend/init",function(){elementorFrontend.elements.$window.on("elementor/popup/show",glsr_init_elementor);elementorFrontend.hooks.addAction("frontend/element_ready/site_review.default",glsr_init_elementor);elementorFrontend.hooks.addAction("frontend/element_ready/site_reviews.default",glsr_init_elementor);elementorFrontend.hooks.addAction("frontend/element_ready/site_reviews_form.default",glsr_init_elementor);})); //# sourceURL=site-reviews-js-after </script> <script id="prime-slider-site-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/bdthemes-prime-slider-lite/assets/js/prime-slider-site.min.js?ver=4.1.2"></script> <script id="smartmenus-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1"></script> <script id="elementor-pro-webpack-runtime-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/js/webpack-pro.runtime.min.js?ver=3.34.0"></script> <script id="wp-hooks-js" src="https://prestigewaterproofingtn.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> <script id="wp-i18n-js" src="https://prestigewaterproofingtn.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script id="elementor-pro-frontend-js-before"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/prestigewaterproofingtn.com\/wp-admin\/admin-ajax.php","nonce":"00b39b9ca4","urls":{"assets":"https:\/\/prestigewaterproofingtn.com\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/prestigewaterproofingtn.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/prestigewaterproofingtn.com\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; //# sourceURL=elementor-pro-frontend-js-before </script> <script id="elementor-pro-frontend-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/js/frontend.min.js?ver=3.34.0"></script> <script id="pro-elements-handlers-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/pro-elements/assets/js/elements-handlers.min.js?ver=3.34.0"></script> <script id="jet-widgets-js-extra"> var jetWidgets = {"messages":{"invalidMail":"Please specify a valid e-mail"}}; //# sourceURL=jet-widgets-js-extra </script> <script id="jet-widgets-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/jetwidgets-for-elementor/assets/js/jet-widgets.js?ver=1.0.21"></script> <script id="dompurify-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/js/lib/dompurify/dompurify.min.js?ver=3.0.6"></script> <script id="wpr-addons-js-js-extra"> var WprConfig = {"ajaxurl":"https://prestigewaterproofingtn.com/wp-admin/admin-ajax.php","resturl":"https://prestigewaterproofingtn.com/wp-json/wpraddons/v1","nonce":"29969f2651","addedToCartText":"was added to cart","viewCart":"View Cart","comparePageID":"","comparePageURL":"https://prestigewaterproofingtn.com/","wishlistPageID":"","wishlistPageURL":"https://prestigewaterproofingtn.com/","chooseQuantityText":"Please select the required number of items.","site_key":"","is_admin":"","input_empty":"Please fill out this field","select_empty":"Nothing selected","file_empty":"Please upload a file","recaptcha_error":"Recaptcha Error","woo_shop_ppp":"9","woo_shop_cat_ppp":"9","woo_shop_tag_ppp":"9","is_product_category":"","is_product_tag":""}; //# sourceURL=wpr-addons-js-js-extra </script> <script id="wpr-addons-js-js" data-cfasync="false" src="https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/js/frontend.min.js?ver=1.7.1043"></script> <script id="wpr-modal-popups-js-js" src="https://prestigewaterproofingtn.com/wp-content/plugins/royal-elementor-addons/assets/js/modal-popups.min.js?ver=1.7.1043"></script> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://prestigewaterproofingtn.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}} </script> <script type="module"> /*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://prestigewaterproofingtn.com/wp-includes/js/wp-emoji-loader.min.js </script> </body> </html>