301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: aaafp.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!doctype html > <html xmlns="http://www.w3.org/1999/xhtml" lang="en" class=""> <head> <meta charset="utf-8"> <script type="text/javascript"> window._currentDevice = 'desktop'; window.Parameters = window.Parameters || { HomeUrl: 'https://www.aaafp.com/', AccountUUID: '2ee10e632e8f40eab8a4d4d938aded6b', SystemID: 'US_DIRECT_PRODUCTION', SiteAlias: 'f0cda112', SiteType: atob('RFVEQU9ORQ=='), PublicationDate: 'Tue Dec 03 16:17:45 UTC 2024', ExternalUid: '9w6lw0vfxs9wx5zf', IsSiteMultilingual: false, InitialPostAlias: '', InitialPostPageUuid: '', InitialDynamicItem: '', DynamicPageInfo: { isDynamicPage: false, base64JsonRowData: 'null', }, InitialPageAlias: 'home', InitialPageUuid: '334f688a47594856861b2198876bf6ac', InitialPageId: '33280893', InitialEncodedPageAlias: 'aG9tZQ==', InitialHeaderUuid: 'e3522ab25dab45f7b1052f8329755103', CurrentPageUrl: '', IsCurrentHomePage: true, AllowAjax: false, AfterAjaxCommand: null, HomeLinkText: 'Back To Home', UseGalleryModule: false, CurrentThemeName: 'Layout Theme', ThemeVersion: '7550', DefaultPageAlias: '', RemoveDID: true, WidgetStyleID: null, IsHeaderFixed: false, IsHeaderSkinny: false, IsBfs: true, StorePageAlias: 'null', StorePagesUrls: 'e30=', IsNewStore: 'false', StorePath: '', StoreId: 'null', StoreVersion: 0, StoreBaseUrl: '', StoreCleanUrl: true, StoreDisableScrolling: true, IsStoreSuspended: false, HasCustomDomain: true, SimpleSite: false, showCookieNotification: false, cookiesNotificationMarkup: 'null', translatedPageUrl: '', isFastMigrationSite: false, sidebarPosition: 'NA', currentLanguage: 'en', currentLocale: 'en', NavItems: '{}', errors: { general: 'There was an error connecting to the page.<br/> Make sure you are not offline.', password: 'Incorrect name/password combination', tryAgain: 'Try again' }, NavigationAreaParams: { ShowBackToHomeOnInnerPages: true, NavbarSize: 4, NavbarLiveHomePage: 'https://www.aaafp.com/', BlockContainerSelector: '.dmBody', NavbarSelector: '#dmNav:has(a)', SubNavbarSelector: '#subnav_main' }, hasCustomCode: true, planID: '1280', customTemplateId: 'null', siteTemplateId: 'null', productId: 'DM_DIRECT', disableTracking: false, pageType: 'FROM_SCRATCH', isRuntimeServer: true, isInEditor: false, hasNativeStore: false, defaultLang: 'en', hamburgerMigration: null, isFlexSite : false }; window.Parameters.LayoutID = {}; window.Parameters.LayoutID[window._currentDevice] = 6; window.Parameters.LayoutVariationID = {}; window.Parameters.LayoutVariationID[window._currentDevice] = 5; </script> <!-- Injecting site-wide to the head --> <!-- End Injecting site-wide to the head --> <!-- Inject secured cdn script --> <!-- ========= Meta Tags ========= --> <script> try { if ( navigator.serviceWorker && navigator.serviceWorker.getRegistrations && location.protocol === 'https:' ) { // remove all service workers navigator.serviceWorker .getRegistrations() .then(function (registrations) { if (registrations && registrations.length) { console.log('unregistering service workers'); registrations.forEach(function (registration) { registration.unregister(); }); } }); // clear caches if (caches) { caches.keys().then(function (keyList) { if (keyList && keyList.length) { console.log('deleting caches'); keyList.forEach(function (key) { if (key && key.indexOf('druntime') === 0) { caches.delete(key); } }); } }); } } } catch (err) { // not a secured location } </script> <link rel="canonical" href="https://www.aaafp.com/"> <meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> <meta name="apple-mobile-web-app-capable" content="yes"> <!--Add favorites icons--> <link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/f0cda112/site_favicon_16_1664481314860.ico"/> <!-- End favorite icons --> <link rel="preconnect" href="https://lirp.cdn-website.com/"/> <!-- render the required CSS and JS in the head section --> <script id='d-js-dmapi'> window.SystemID = 'US_DIRECT_PRODUCTION'; if (!window.dmAPI) { window.dmAPI = { registerExternalRuntimeComponent: function () { }, getCurrentDeviceType: function () { return window._currentDevice; }, runOnReady: (ns, fn) => { const safeFn = dmAPI.toSafeFn(fn); ns = ns || 'global_' + Math.random().toString(36).slice(2, 11); const eventName = 'afterAjax.' + ns; if (document.readyState === 'complete') { $.DM.events.off(eventName).on(eventName, safeFn); setTimeout(function () { safeFn({ isAjax: false, }); }, 0); } else { window?.waitForDeferred?.('dmAjax', () => { $.DM.events.off(eventName).on(eventName, safeFn); safeFn({ isAjax: false, }); }); } }, toSafeFn: (fn) => { if (fn?.safe) { return fn; } const safeFn = function (...args) { try { return fn?.apply(null, args); } catch (e) { console.log('function failed ' + e.message); } }; safeFn.safe = true; return safeFn; } }; } if (!window.requestIdleCallback) { window.requestIdleCallback = function (fn) { setTimeout(fn, 0); } } </script> <!-- loadCSS function header.jsp--> <script id="d-js-load-css"> /** * There are a few <link> tags with CSS resource in them that are preloaded in the page * in each of those there is a "onload" handler which invokes the loadCSS callback * defined here. * We are monitoring 3 main CSS files - the runtime, the global and the page. * When each load we check to see if we can append them all in a batch. If threre * is no page css (which may happen on inner pages) then we do not wait for it */ (function () { let cssLinks = {}; function loadCssLink(link) { link.onload = null; link.rel = "stylesheet"; link.type = "text/css"; } function checkCss() { const pageCssLink = document.querySelector("[id*='CssLink']"); const widgetCssLink = document.querySelector("[id*='widgetCSS']"); if (cssLinks && cssLinks.runtime && cssLinks.global && (!pageCssLink || cssLinks.page) && (!widgetCssLink || cssLinks.widget)) { const storedRuntimeCssLink = cssLinks.runtime; const storedPageCssLink = cssLinks.page; const storedGlobalCssLink = cssLinks.global; const storedWidgetCssLink = cssLinks.widget; storedGlobalCssLink.disabled = true; loadCssLink(storedGlobalCssLink); if (storedPageCssLink) { storedPageCssLink.disabled = true; loadCssLink(storedPageCssLink); } if(storedWidgetCssLink) { storedWidgetCssLink.disabled = true; loadCssLink(storedWidgetCssLink); } storedRuntimeCssLink.disabled = true; loadCssLink(storedRuntimeCssLink); requestAnimationFrame(() => { setTimeout(() => { storedRuntimeCssLink.disabled = false; storedGlobalCssLink.disabled = false; if (storedPageCssLink) { storedPageCssLink.disabled = false; } if (storedWidgetCssLink) { storedWidgetCssLink.disabled = false; } // (SUP-4179) Clear the accumulated cssLinks only when we're // sure that the document has finished loading and the document // has been parsed. if(document.readyState === 'interactive') { cssLinks = null; } }, 0); }); } } function loadCSS(link) { try { var urlParams = new URLSearchParams(window.location.search); var noCSS = !!urlParams.get("nocss"); var cssTimeout = urlParams.get("cssTimeout") || 0; if (noCSS) { return; } if (link.href && link.href.includes("d-css-runtime")) { cssLinks.runtime = link; checkCss(); } else if (link.id === "siteGlobalCss") { cssLinks.global = link; checkCss(); } else if (link.id && link.id.includes("CssLink")) { cssLinks.page = link; checkCss(); } else if (link.id && link.id.includes("widgetCSS")) { cssLinks.widget = link; checkCss(); } else { requestIdleCallback(function () { window.setTimeout(function () { loadCssLink(link); }, parseInt(cssTimeout, 10)); }); } } catch (e) { throw e } } window.loadCSS = window.loadCSS || loadCSS; })(); </script> <script data-role="deferred-init" type="text/javascript"> /* usage: window.getDeferred(<deferred name>).resolve() or window.getDeferred(<deferred name>).promise.then(...)*/ function Def() { this.promise = new Promise((function (a, b) { this.resolve = a, this.reject = b }).bind(this)) } const defs = {}; window.getDeferred = function (a) { return null == defs[a] && (defs[a] = new Def), defs[a] } window.waitForDeferred = function (b, a, c) { let d = window?.getDeferred?.(b); d ? d.promise.then(a) : c && ["complete", "interactive"].includes(document.readyState) ? setTimeout(a, 1) : c ? document.addEventListener("DOMContentLoaded", a) : console.error(`Deferred does not exist`); }; </script> <style id="forceCssIncludes"> /* This file is auto-generated from a `scss` file with the same name */ .videobgwrapper{overflow:hidden;position:absolute;z-index:0;width:100%;height:100%;top:0;left:0;pointer-events:none;border-radius:inherit}.videobgframe{position:absolute;width:101%;height:100%;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);object-fit:fill}#dm video.videobgframe{margin:0}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}#dm [data-show-on-page-only]{display:none!important}#dmRoot div.stickyHeaderFix div.site_content{margin-top:0!important}#dmRoot div.stickyHeaderFix div.hamburger-header-container{position:relative} </style> <style id="cssVariables" type="text/css"> </style> <style id="hideAnimFix"> .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { visibility: hidden; } .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { visibility: hidden !important; } #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { visibility: hidden; } </style> <style id="criticalCss"> @charset "UTF-8";@font-face{font-family:FontAwesome;font-display:block;src:url(https://static.cdn-website.com/fonts/fontawesome-webfont.eot?v=6);src:url(https://static.cdn-website.com/fonts/fontawesome-webfont.eot?#iefix&v=6) format("embedded-opentype"),url(https://static.cdn-website.com/fonts/fontawesome-webfont.woff?v=6) format("woff"),url(https://static.cdn-website.com/fonts/fontawesome-webfont.ttf?v=6) format("truetype"),url(https://static.cdn-website.com/fonts/fontawesome-webfont.svg#fontawesomeregular?v=6) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300 800;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Barlow;font-style:normal;font-weight:400;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/barlow/v12/7cHpv4kjgoGqM7E_DMs5.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Poppins;font-style:normal;font-weight:700;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Barlow;font-style:normal;font-weight:700;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s51os.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}.dmInner{min-height:100vh!important;position:relative}.dmPopup,.dmPopupMask{position:fixed;left:0}[dmtemplateid*=amburger] .dmLayoutWrapper{overflow:hidden}.clearfix:after{clear:both;visibility:hidden;line-height:0;height:0}.clearfix:after,.clearfix:before{content:' ';display:table}.clearfix{display:inline-block}.dmDesktopBody .shadowEffectToChildren li{box-shadow:none!important}#dm .dmWidget .icon{font-size:26px}body.dmRoot #dm .dmOuter .dmInner .dmWidget .icon.hasFontIcon{height:26px;margin-top:-13px;line-height:normal;text-align:center;background-image:none}.dmRoot .hasFontIcon{background-image:none!important}.dmPopupMask{margin:0;display:none;width:10px;z-index:1000000999;top:0}#dmRoot .dmPopup,.dmPopup,.dmPopupClose:before,[data-display-type=block]{display:block}.dmPopup{text-align:left;top:10px;width:93%;z-index:1000009999!important;box-sizing:border-box;background:#f5f5f5;overflow-y:auto;height:100%}.dmPopup .dmPopupTitle{text-align:left;font:700 19px Helvetica,Arial;margin:20px 20px 35px;color:#999}#dmPopup{opacity:0}.dmPopupClose,.dmPopupClose:before{position:absolute;visibility:visible}.dmPopupClose{border-radius:25px;width:27px;height:27px;z-index:1;background-color:rgba(255,255,255,.4);top:12px;right:12px}.dmPopupClose:before{font-size:20px;color:#000;top:3px;right:3px}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar{width:5px;height:5px}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar-track{background:rgba(0,0,0,.1)}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar-thumb{background:#c8c8c8;box-shadow:inset 0 1px 2px #454545;border-radius:45px}.dmRespRow.fullBleedMode>.dmRespColsWrapper{width:100%!important;max-width:100%!important}.dmRespRow.fullBleedMode{padding-left:0!important;padding-right:0!important}#dm .dmRespRow .dmRespColsWrapper{display:flex}#dm .hasBackgroundOverlay:not(.dmPopupPage):not(.layout-drawer){position:relative!important}#dm .hasBackgroundOverlay:not(.hasExtraLayerOverlay):before{display:block!important;position:absolute!important;top:0!important;left:0!important;width:100%!important;height:100%!important;content:' '!important;border-radius:inherit}#dm .dmInner .dmWidget.align-center,.align-center{margin-left:auto;margin-right:auto}.text-align-center{text-align:center}body.fix-mobile-scrolling{overflow:initial}#hcontainer[has-shadow=true]{position:relative;z-index:1}#dmRoot{text-decoration-skip-ink:none}@media (min-width:1025px){#dmRoot.responsiveTablet #dm #dmStyle_outerContainer #dmStyle_innerContainer .showOnMedium,#dmRoot.responsiveTablet #dm .dmInner .hide-for-large{display:none!important}#dmRoot.responsiveTablet #dm [data-responsive-name=ResponsiveDesktopTopTabletHamburger] .site_content{margin-top:0!important}}@media (min-width:768px) and (max-width:1024px){#dmRoot.responsiveTablet #dm #dmStyle_outerContainer #dmStyle_innerContainer .showOnLarge,#dmRoot.responsiveTablet #dm .dmInner .hide-for-medium{display:none!important}}@media (max-width:767px){#dmRoot.responsiveTablet #dm #dmStyle_outerContainer #dmStyle_innerContainer .showOnLarge{display:none!important}}body{-webkit-overflow-scrolling:touch}:not(.runtime-module-container) .layout-drawer,:not(.runtime-module-container) .layout-drawer-hamburger,:not(.runtime-module-container) .layout-drawer-overlay{visibility:hidden}:not(.runtime-module-container) .layout-drawer{position:fixed;transform:translate(-100%,-100%)}:not(.runtime-module-container) .layout-drawer-overlay{opacity:0}.runtime-module-container{width:100%}.runtime-module-container[dmtemplateid*=amburger] #site_content,.runtime-module-container[dmtemplateid*=amburger] .dmInner{position:static}.runtime-module-container[dmtemplateid*=amburger] #site_content .site_content{position:relative}.runtime-module-container[dmtemplateid*=amburger] .dmLayoutWrapper{background-color:transparent}.runtime-module-container .hamburger-header-container{position:fixed;z-index:2;top:0;left:0;width:100%}.runtime-module-container .hamburger-header-container .hamburger-header{min-height:43px}.runtime-module-container .layout-drawer,.runtime-module-container .layout-drawer-hamburger,.runtime-module-container .layout-drawer-overlay{visibility:visible}.runtime-module-container[dmtemplateid*=amburger] .site_content{margin-top:59px}.runtime-module-container .layout-drawer,.runtime-module-container .layout-drawer-overlay{height:100%;position:fixed;top:0;left:0}.runtime-module-container .layout-drawer{background-color:#fff;width:75vw;transform:translate(-100%,0);overflow:auto;-webkit-overflow-scrolling:auto;z-index:13;display:flex;flex-direction:column}.main-navigation.unifiednav.unifiednav_vertical .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item,body:not([data-flex-site]) .layout-drawer .dmRespRow:not(:first-of-type):not(:last-of-type){flex:1 1 auto}.runtime-module-container .layout-drawer .dmRespRow:not(.dmPlaceHolderRespRow) .dmRespColsWrapper .dmRespCol:not(.content-removed):only-child:empty{min-height:0}.runtime-module-container .layout-drawer[data-origin=side]{width:75vw}.runtime-module-container .layout-drawer-overlay{width:100vw;background-color:rgba(0,0,0,.4);opacity:0;z-index:6}.runtime-module-container.layout-drawer_push-content .layout-drawer{transform:translate(-100%,0)}.layout-drawer-hamburger{background:0 0;-webkit-appearance:none;appearance:none;position:fixed;left:18px;margin-left:env(safe-area-inset-left);padding:17px 11px;z-index:14;width:52px;height:52px;color:#787878;display:flex;flex-direction:column;border:0;justify-content:space-between;align-items:stretch;top:18px;border-radius:0}.layout-drawer-hamburger:not(:focus){outline:unset}.layout-drawer-hamburger .hamburger__slice{display:block;height:0;width:100%;border:1px solid currentColor;transform-origin:center}@media (max-width:767px){.layout-drawer-hamburger{background:0 0;-webkit-appearance:none;appearance:none;position:fixed;left:10px;margin-left:env(safe-area-inset-left);padding:13px 9px;z-index:14;width:40px;height:40px;color:#787878;display:flex;flex-direction:column;border:0;justify-content:space-between;align-items:stretch;top:10px;border-radius:0}.layout-drawer-hamburger:not(:focus){outline:unset}.layout-drawer-hamburger .hamburger__slice{display:block;height:0;width:100%;border:1px solid currentColor;transform-origin:center}}#dm-outer-wrapper #hamburger-header-container #hamburger-header .dmRespCol{display:flex;flex-direction:column;justify-content:center}nav{display:block}html{font-family:Source Sans Pro;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}hr{box-sizing:content-box;height:0}img{border:0;max-width:100%;-ms-interpolation-mode:bicubic;display:inline-block}button{font-family:inherit;font-size:100%;margin:0;line-height:normal;text-transform:none;-webkit-appearance:button}button::-moz-focus-inner{border:0;padding:0}*,:after,:before{box-sizing:border-box}.dmRespRow{padding-top:15px;padding-bottom:15px}.dmRespRow:after,.dmRespRow:before{content:' ';display:table}.dmRespRow:after{clear:both}.dmRespRow,.dmRespRow .dmRespColsWrapper{max-width:960px;position:relative;margin:0 auto;width:100%}@media screen and (min-width:1200px){.rows-1200 .dmRespRow:not(.fullBleedMode) .dmRespColsWrapper{max-width:1200px}}.dmRespRow .dmRespCol{position:relative;width:100%;display:inline-block;vertical-align:top;float:left}.dmRespRow .dmRespCol>*{max-width:100%}.dmDesktopBody .dmRespRow .large-3{position:relative;width:25%}.dmDesktopBody .dmRespRow .large-9{position:relative;width:75%}.dmDesktopBody .dmRespRow .large-12{position:relative;width:100%}.socialHubIcon,[class*=' dm-social-icons-'],[class*=' dm-common-icons-']{font-family:dm-social-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.dm-social-icons-google-my-business:before{content:'\e903'}.dm-social-icons-facebook:before{content:'\ea90'}.dm-social-icons-twitter:before{content:'\ea96'}[class*=' dm-common-icons-']{font-family:dm-common-icons!important}.dm-common-icons-close:before{content:'\e901'}#dm div.dmContent [class*=' icon-'],[class*=' icon-']{font-family:FontAwesome!important;font-weight:400;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased}[class*=' icon-']:before{text-decoration:none;display:inline-block;speak:none}a [class*=' icon-']{display:inline}[class*=' icon-']{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-star:before{content:'\f005'}.icon-linkedin:before{content:'\f0e1'}.icon-angle-down:before{content:'\f107'}#dm .dmRespRow .dmRespCol>.dmWidget{overflow:initial}.dmLargeBody #dm .dmRespRow .dmRespCol>.dmWidget{width:280px;max-width:100%}#dm .dmInner .dmWidget:not(.displayNone){display:inline-block}#dm .dmInner .dmWidget:not(.displayNone)[data-display-type=block]{display:block}#dm .dmInner .dmWidget{text-decoration:none;margin:10px 0;clear:both;position:relative;text-align:center;line-height:22px;box-shadow:none;background-image:none;padding:0 0 0 40px;height:auto;border:0 solid transparent;white-space:nowrap}#dm .dmInner .dmWidget:after{content:'';display:inline-block;height:100%;vertical-align:middle;width:0;margin-right:-.25em}#dm .dmInner .dmWidget .iconBg{position:absolute;left:0;width:50px;top:50%;margin-top:-13px}#dm .dmWidget .text{display:inline-block;vertical-align:middle;font-size:1.125em;line-height:normal;white-space:normal;padding:10px 7px;max-width:98%}#dm [data-buttonstyle*=_ROUND] .dmWidget:not([data-buttonstyle]){border-radius:6px}#dm [data-buttonstyle^=THICK_BORDER] .dmWidget:not([data-buttonstyle]){overflow:initial;background-clip:border-box;border:2px solid;padding:0}#dm [data-buttonstyle^=THICK_BORDER] .dmWidget:not([data-buttonstyle]) .iconBg{display:none!important}#dm [data-buttonstyle^=THICK_BORDER] .dmWidget:not([data-buttonstyle]) .text{padding-left:7px}.dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:30vh}.socialHubIcon{display:flex!important;align-items:center;justify-content:center}.socialHubIcon.style6{background:#617379}.style6.dmSocialFacebook{background:#1877f2}.style6.dmSocialTwitter{background:#0f1419}.style6.dmSocialLinkedin{background:#2867b2}.style6.dmSocialGoogleMyBusiness{background:#477cdf}.imageWidget{position:relative}.imageWidget a{font-style:italic;text-align:center}.imageWidget img[width][height]{height:auto}.dmNewParagraph[data-version]{line-height:initial}.dmNewParagraph[data-version] .text-align-center{text-align:center!important}.dmNewParagraph[data-version] .text-align-right{text-align:right!important}.dmNewParagraph[data-version] p{margin-top:0;margin-bottom:0}.dmNewParagraph[data-version] a{vertical-align:initial}.dmPhotoGallery{margin:10px 0;width:100%;overflow:hidden;min-height:1px;clear:both}.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs .image-container{height:100%}.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs{width:58px;height:58px;margin:2px;display:inline-block;vertical-align:middle;text-align:center;overflow:hidden}.dmPhotoGalleryResp.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs img{box-shadow:0 0 3px #888}.dmPhotoGalleryResp.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs{margin:0;padding:10px}.dmPhotoGalleryHolder{text-align:center}.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs img{display:inline!important;margin:0!important;vertical-align:middle;text-align:center;position:relative}.dmPhotoGallery .image-container{position:relative}.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner h3{margin:0;line-height:normal;text-align:center;font-size:21px}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner div,#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner h3,.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner div{text-align:center}.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-text,.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-title{max-width:100%}#dm .dmPhotoGallery.newPhotoGallery li{list-style:none}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner{align-items:center;display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden;z-index:1;background-color:rgba(255,255,255,.9);color:#333;padding:15px;height:100%;box-sizing:border-box}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryViewAll{box-shadow:0 0!important;font-size:inherit!important;margin:0!important}#dm .dmPhotoGallery.newPhotoGallery .dmPhotoGalleryHolder{width:100%;padding:0;display:none}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs{position:relative}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .image-container{overflow:hidden}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .image-container a{background-repeat:no-repeat;background-position:center}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner .caption-button{margin:10px auto;max-width:100%}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner .caption-button .text{padding:10px 20px!important}#dm .dmPhotoGallery.newPhotoGallery[data-image-hover-effect=blur] .photoGalleryThumbs .image-container a{filter:blur(0)}#dm .dmPhotoGallery.newPhotoGallery[data-link-gallery=true] .image-container a.has-link{z-index:1px}img[width][height]{height:auto}*{border:0 solid #333;scrollbar-arrow-color:#fff;scrollbar-track-color:#F2F2F2;scrollbar-face-color:silver;scrollbar-highlight-color:silver;scrollbar-3dlight-color:silver;scrollbar-shadow-color:silver;scrollbar-darkshadow-color:silver;scrollbar-width:12px}body{width:100%;overflow:hidden;-webkit-text-size-adjust:100%!important;-ms-text-size-adjust:100%!important}A IMG{border:none}h3,ul{margin-left:0;margin-right:0}.dmInner *{-webkit-font-smoothing:antialiased}span.oneIcon:before{display:inline-block}.clearfix,a,img,li,ul{vertical-align:top}#site_content{position:relative}.dmOuter{word-wrap:break-word}.dmInner{min-width:768px!important;font-size:16px;background:#fff;color:#666}.dmDesktopBody .dmInner{min-width:960px}.dmInner a{color:#463939;outline:0;vertical-align:inherit}.dmInner ul:not(.defaultList){padding:0}.dmHeader{background:#68ccd1;color:#666;text-align:center;position:relative;width:100%;max-width:100%}DIV.dmBody{padding:0;clear:both}.dmContent{margin:0;padding:0}#site_content ul:not(.defaultList){-webkit-padding-start:0;-moz-padding-start:0;list-style-position:inside}.dmRespRowsWrapper{max-width:960px;margin:0 auto}.dmRespCol>[dmle_extension]:not(:first-child){margin-top:10px}.dmLargeBody .imageWidget:not(.displayNone){display:inline-block;max-width:100%}#dm .dmRespColsWrapper,.dmStandardDesktop{display:block}.imageWidget:not(.displayNone) img{width:100%}h3{font-weight:400;font-size:23px}.dmNewParagraph{text-align:left;margin:8px 0;padding:2px 0}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol,.dmLargeBody .fHeader .dmRespRow .dmRespCol{padding-left:.75%;padding-right:.75%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:first-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:first-child{padding-left:0;padding-right:1.5%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:last-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:last-child{padding-right:0;padding-left:1.5%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:only-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:only-child{padding-left:0;padding-right:0}#dmFirstContainer .dmRespRowsWrapper:after,#dmFirstContainer .dmRespRowsWrapper:before{content:"";display:table}.dmLinksMenu>ul{display:block;margin:0;font-size:inherit}.dmStandardDesktop{margin:0 auto}#dm .dmInner .dmWidget{color:#f7f7f7;background-color:#68ccd1}#dm .dmDivider{display:block;margin:10px 0}.dmPhotoGalleryHolder{font-size:medium!important;margin:0;list-style:none}#dm .dmPhotoGallery .dmPhotoGalleryHolder,#dm .dmPhotoGallery .dmPhotoGalleryHolder>li{width:100%;padding:0}#dm .dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs{background:url(https://dd-cdn.multiscreensite.com/runtime-img/galleryLoader.gif) 50% 50% no-repeat #eee;float:left;clear:none;padding:0;margin:0;width:100%}#dm .dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs img{display:none!important}.dmDesktopBody .dmPhotoGallery .photoGalleryViewAll{background:0 0;border:none;padding:3px 0;font-size:16px;width:auto;height:auto;line-height:normal;box-shadow:0 -2px 0 0;display:block;margin:40px 0;text-align:left}.dmSocialHub{clear:both}#dm .dmSocialHub a{display:inline-block;text-decoration:none;margin:0;vertical-align:bottom}.dmSocialHub>div{text-align:inherit}a span.socialHubIcon{width:36px;height:36px;font-size:31px;display:inline-block;text-align:center;margin-right:0;margin-bottom:5px;line-height:36px;box-sizing:content-box;background-image:none!important}.socialHubIcon.style6{font-size:24px;padding:4px;border-radius:50%;color:#fff}#dm .dmSocialHub .socialHubWrapper{display:inline-block;max-width:100%}body{background-color:#eee}#dm .dmDividerWrapper{display:block}.dmPhotoGallery:not(.dmFacebookGallery) .dmPhotoGalleryHolder:not(.ready) li.photoGalleryThumbs{display:inline!important;visibility:hidden}#dm [data-buttonstyle] .dmWidget span.iconBg,#dm [data-buttonstyle] .dmWidget span.text{color:#f7f7f7}.dmDivider{min-height:2px;border:currentColor;color:grey;background:0 0}.main-navigation.unifiednav{-js-display:flex;display:flex;justify-content:flex-start;align-items:stretch;overflow:visible}.main-navigation.unifiednav ul{list-style:none;padding:0;margin:0;font-size:1rem}.main-navigation.unifiednav .unifiednav__container{-js-display:flex;display:flex;justify-content:flex-start;list-style:none}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap{-js-display:flex;display:flex;justify-content:flex-start;position:relative;font-weight:400}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::before{content:'';align-self:center;font-weight:700}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item{-js-display:flex;display:flex;justify-content:flex-start;align-items:center;flex-direction:row;color:inherit;text-decoration:none;position:relative;padding:12px 15px;margin:0;font-weight:inherit;letter-spacing:.03em}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding:0 15px}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item .nav-item-text{white-space:nowrap}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::before{content:'';width:100%;height:0;border:0 solid transparent;border-top-color:currentColor;display:block;opacity:0}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget .iconBg,.main-navigation.unifiednav .unifiednav__container .unifiednav__item:not(.unifiednav__item_has-sub-nav) .icon{display:none}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::before{opacity:1}.main-navigation.unifiednav.effect-text-color{padding:12px 15px}.main-navigation.unifiednav.effect-background{padding:0}.main-navigation.unifiednav.effect-background .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding:12px 15px;margin:0 15px 0 0}.main-navigation.unifiednav.effect-background .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{background-color:#333;color:#fafafa}.main-navigation.unifiednav.effect-text-color .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{color:#9a9a9a}.main-navigation.unifiednav[layout-main=horizontal_nav_layout_8] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{border-radius:30px;padding:12px 30px;margin:0 15px 0 0}.main-navigation.unifiednav.unifiednav_vertical .unifiednav__container>.unifiednav__item-wrap:not(:last-child)::after{content:''!important}.main-navigation.unifiednav:not(.unifiednav_vertical)>.unifiednav__container{justify-content:inherit}#dm .p_hfcontainer nav.main-navigation.unifiednav{min-width:9em!important;text-align:initial!important}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container{flex-direction:column;flex:1 1 100%}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item{padding:8px 0;margin:0}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item .nav-item-text{white-space:initial}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap{flex-direction:column}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after{content:''!important;width:100%;height:0;color:#d1d1d1;align-self:flex-start;border:0 solid currentColor}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL][layout-main=vertical_nav_layout_2] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding:5px 0}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL][layout-main=vertical_nav_layout_5] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding:12px 0;justify-content:center}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL][layout-main=vertical_nav_layout_5] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after{border-top-width:1px;width:5%;align-self:center}#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL][data-show-vertical-sub-items=HIDE]>.unifiednav__container:not([data-depth])>.unifiednav__item-wrap .unifiednav__item.dmNavItemSelected>.nav-item-text .icon::before,#dm .main-navigation.unifiednav[data-nav-structure=VERTICAL][data-show-vertical-sub-items=HOVER]>.unifiednav__container:not([data-depth])>.unifiednav__item-wrap .unifiednav__item.dmNavItemSelected>.nav-item-text .icon::before{transform:rotate(180deg)}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])>.unifiednav__container{flex-wrap:wrap;justify-content:inherit}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])>.unifiednav__container .nav-item-text::before{text-align:left}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{content:''}#dm .dmBody .dmRespRowsWrapper{max-width:none;background-color:transparent}.dmLargeBody .dmRespRow{width:100%;max-width:none;margin-left:0;margin-right:0;padding-left:40px;padding-right:40px}.dm-bfs.dm-layout-home div.dmInner{background-color:#fff}.dmStandardDesktop .dmHeader{background-color:#68ccd1;max-width:100%}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespColsWrapper .dmRespCol:not(.content-removed).empty-column,.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespColsWrapper .dmRespCol:not(.content-removed):only-child:empty{min-height:100px}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespCol:not(.content-removed).empty-column,.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespCol:not(.content-removed):empty{min-height:1px}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespColsWrapper .dmRespCol:not(.content-removed):only-child.empty-column{min-height:100px}#dm div.dmRespCol>*{line-height:1.5}#dm [data-buttonstyle] div.dmInner .dmWidget{-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;border-color:#f7f7f7;border-width:0;border-style:solid}#dm [data-buttonstyle] div.dmInner .dmWidget span.text{color:#fff}#dm div.dmContent h3{color:#666}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget{border-color:rgba(20,37,65,1)}#dm .dmNewParagraph a,#dm div.dmNewParagraph a{color:transparent;text-decoration:none}#dm div.dmInner,#dm div.dmInner .dmRespCol{color:rgba(0,0,0,1);font-family:"Open Sans","Open Sans Fallback";font-size:16px}.dmLargeBody .dmBody .dmRespRowsWrapper{background-color:transparent}#dm div.dmContent h3{color:rgba(1,115,183,1);font-weight:700;direction:ltr;font-family:Poppins,"Poppins Fallback";font-style:normal;text-decoration:none;font-size:30px}#dm #dm-outer-wrapper .imageWidget img{border-width:0;border-style:solid;border-color:rgba(204,204,204,1)}#dm .dmRespCol div.dmNewParagraph,#dm div.dmInner,#dm div.dmInner .dmRespCol,.dmPhotoGallery .caption-text.caption-text{font-weight:400;color:rgba(0,43,112,1);font-family:Barlow,"Barlow Fallback"}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget{border-width:0;border-style:solid;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;background-color:rgba(133,30,24,1);-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}#dm .dmInner div.dmHeader,#dm .dmInner div.dmHeader.u_hcontainer,#dm .dmInner div.u_hcontainer{border-width:0!important;border-color:rgba(193,193,193,1)!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;border-style:solid!important}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget span.text{font-family:Poppins,"Poppins Fallback";font-weight:700;color:rgba(255,255,255,1)}#dm .dmNewParagraph a,#dm div.dmNewParagraph a,.newPhotoGallery .photoGalleryViewAll.link{color:rgba(202,42,31,1)}.imageWidget a::after{height:0!important}#dm DIV.dmOuter DIV.dmInner{background-color:rgba(255,255,255,1);background-image:none;background-size:cover;background-repeat:no-repeat;background-attachment:fixed}#dm .dmBody .u_1923207857 .photoGalleryThumbs .image-container a,#dm .dmBody .u_1927730330 .photoGalleryThumbs .image-container a,#dm .dmBody div.u_1265059670,#dm .dmBody div.u_1921379926,#dm .dmInner div.dmHeader,#dm .dmInner div.dmHeader.u_hcontainer,#dm .dmInner div.u_hcontainer{background-size:cover!important}#dm div.dmInner,#dm div.dmInner .dmRespCol,.dmPhotoGallery .caption-text.caption-text{font-size:14px}#dm .dmContent .dmRespRow{padding:100px 70px;margin:0}#dm .dmContent .dmRespRow .dmRespCol{padding:0;margin:0}#dm .dmRespCol div.dmNewParagraph,#dm [data-buttonstyle] div.dmInner #site_content .dmWidget span.text,#dm div.dmInner,#dm div.dmInner .dmRespCol,.dmPhotoGallery .caption-text.caption-text{font-size:16px}#dm .p_hfcontainer .main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{font-size:13px!important}#dm .p_hfcontainer div.u_1507451588{background-color:rgba(46,46,46,1)!important}#dm .p_hfcontainer .u_1328113818.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .u_1328113818.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{font-size:14px!important}#dm .p_hfcontainer .u_1328113818.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .u_1328113818.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before,#dm .p_hfcontainer nav.u_1328113818.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item,.font-size-16,.size-16,nav.u_1052001438.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{font-size:16px!important}#dm .dmInner div.dmHeader.u_hcontainer,#dm .dmInner div.u_hcontainer{background-color:rgba(255,255,255,1)!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;background-repeat:no-repeat!important;background-image:none!important}#dm .dmInner div.dmHeader{background-color:rgba(255,255,255,.8)!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;background-repeat:no-repeat!important;background-image:none!important}#dm .p_hfcontainer nav.u_1229229873.main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after{border-top-width:0!important;border-top-style:solid!important}#dm .p_hfcontainer nav.u_1229229873.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{color:rgba(243,243,243,1)!important}#dm .p_hfcontainer nav.u_1229229873,#dm .p_hfcontainer nav.u_1328113818{color:#fff!important}#dm .p_hfcontainer nav.u_1328113818.main-navigation.unifiednav.effect-background .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{background-color:rgba(1,115,183,1)!important;background-image:none!important}#dm .p_hfcontainer nav.u_1328113818.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{font-weight:400!important}#dm .p_hfcontainer nav.u_1328113818.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{color:rgba(255,255,255,1)!important;border-radius:7px!important;-moz-border-radius:7px!important;-webkit-border-radius:7px!important}#dm .p_hfcontainer .u_1328113818.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{margin:0 5px!important;padding:0 10px!important}nav.u_1052001438{color:#000!important}nav.u_1052001438.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{font-weight:400!important}#dm .p_hfcontainer .u_1052001438.main-navigation.unifiednav[data-nav-structure=VERTICAL] .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after{align-self:center!important}nav.u_1052001438.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{color:rgba(0,57,148,1)!important;font-weight:700!important}nav.u_1052001438.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{color:rgba(167,41,31,1)!important}#dm .p_hfcontainer .u_1052001438.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{text-align:center!important;justify-content:center!important;margin:0!important;padding:10px 0!important}#dm .p_hfcontainer nav.u_1229229873.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{color:rgba(99,159,255,1)!important;font-weight:700!important}#dm .p_hfcontainer div.u_1981764749{background-color:rgba(219,242,254,1)!important}#dm .p_hfcontainer .u_1055887332,#dm .p_hfcontainer .u_1952975699{width:100%!important}#dm .dmInner div.dmHeader.u_hcontainer{padding-top:10px!important}#dm .p_hfcontainer div#hamburger-header{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;background-color:#fff!important}#dm .dmInner div.u_hcontainer{padding:0!important}#dm .dmInner div.fHeader .dmHeader[freeheader=true]{margin:0!important;padding:0!important}[dmtemplateid=Hamburger].runtime-module-container .layout-drawer-hamburger{top:16.5px!important}[dmtemplateid=Hamburger] .site_content{margin-top:85px!important}.fHeader #hcontainer.dmHeader[freeheader=true]{padding-top:initial!important;padding-bottom:initial!important}#dm .dmInner div.fHeader.dmHeaderContainer #hcontainer.dmHeader[freeheader=true]{margin:0!important;padding:0!important}@media (min-width:768px) and (max-width:1024px){.responsiveTablet [dmtemplateid=Hamburger].runtime-module-container .layout-drawer-hamburger{top:61px!important}.responsiveTablet [dmtemplateid=Hamburger] .site_content{margin-top:174px!important}}[dmtemplateid=Hamburger] .layout-drawer-hamburger.hamburger-on-header{color:rgba(0,0,0,1)!important;background-color:rgba(0,0,0,0)!important}#dm .p_hfcontainer #hamburger-drawer.layout-drawer:not([data-origin=top]){width:35vw!important}#dm .p_hfcontainer div.u_1093759472{padding:0!important;margin:0!important}#dm .p_hfcontainer div.u_1356799660{border-right-style:solid!important;border-right-color:rgba(212,212,212,1)!important;border-right-width:0!important;padding-right:15px!important}#dm .p_hfcontainer div.u_1875776653{margin-top:0!important;padding:0!important}#dm .p_hfcontainer div.u_1658219087{padding-bottom:0!important}#dm .p_hfcontainer div.u_1981764749{margin-top:0!important;padding:30px 50px 100px!important}#dm .p_hfcontainer div#hamburger-drawer.layout-drawer{background-color:rgba(255,255,255,1)!important;margin:0!important;padding:0!important}#dm .p_hfcontainer div.u_1006187450{background-image:linear-gradient(180deg,rgba(255,255,255,1) 40%,rgba(219,242,254,1) 100%)!important;background-origin:border-box!important;width:auto!important;padding:100px 50px 50px!important;margin:0!important}#dm .p_hfcontainer .u_1744862513 .socialHubIcon{width:25px!important;height:25px!important;font-size:16.67px!important;line-height:25px!important}#dm .p_hfcontainer .u_1744862513 .socialHubIcon:after{width:33px!important;height:25px!important}#dm .p_hfcontainer div.u_1034595970,#dm .p_hfcontainer div.u_1381799999,#dm .p_hfcontainer div.u_1676284732,div.u_1055887332,div.u_1474146952,div.u_1621534429,div.u_1798986663{float:none!important;top:0!important;left:0!important;position:relative!important;height:auto!important}#dm .p_hfcontainer div.u_1507451588{width:auto!important;padding:5px 70px!important;margin:0!important}#dm .p_hfcontainer div.u_1013042409{width:auto!important;padding:15px 70px!important;margin:0!important}#dm .p_hfcontainer div.u_1065593334{padding:0!important}#dm .p_hfcontainer div.u_1808931641{padding-left:10px!important}#dm .p_hfcontainer div.u_1034595970,#dm .p_hfcontainer div.u_1381799999,#dm .p_hfcontainer div.u_1676284732{width:calc(100% - 0px)!important;max-width:100%!important;min-width:25px!important;padding:2px 0!important;margin:0!important}div.u_1419612340{width:auto!important;padding:15px 70px!important}div.u_1086002319{padding:0!important}div.u_1206535784{padding-left:10px!important}div.u_1474146952,div.u_1621534429,div.u_1798986663{width:calc(100% - 0px)!important;max-width:100%!important;min-width:25px!important;padding:2px 0!important;margin:0!important}div.u_1055887332{width:236px!important;max-width:100%!important;min-width:0!important;text-align:center!important;display:block!important;padding:0!important;margin:0 0 0 auto!important}#dm .p_hfcontainer div.u_1744862513,#dm .p_hfcontainer nav.u_1328113818{float:none!important;height:auto!important;max-width:100%!important;min-width:25px!important;margin:0!important;top:0!important;left:0!important;position:relative!important;width:calc(100% - 0px)!important}#dm .p_hfcontainer nav.u_1328113818{justify-content:center!important;align-items:stretch!important;text-align:start!important;padding:10px 0!important}#dm .p_hfcontainer div.u_1744862513{text-align:right!important;display:block!important;padding:0!important}#dm .p_hfcontainer nav.u_1052001438,nav.u_1052001438{height:auto!important;text-align:start!important;float:none!important}nav.u_1052001438{top:0!important;left:0!important;width:578.75px!important;position:relative!important;max-width:calc(100% - 0px)!important;justify-content:flex-start!important;align-items:stretch!important;min-width:25px!important;padding:0!important}#dm .p_hfcontainer nav.u_1052001438,div.u_1120802400{max-width:100%!important;min-width:25px!important;padding:0!important;top:0!important;left:0!important;position:relative!important}#dm .p_hfcontainer nav.u_1052001438{width:calc(100% - 0px)!important;justify-content:flex-start!important;align-items:stretch!important;margin:31px 0 0!important}#dm .p_hfcontainer .u_1120802400 .socialHubIcon{width:25px!important;height:25px!important;font-size:16.67px!important;line-height:25px!important}#dm .p_hfcontainer .u_1120802400 .socialHubIcon:after{width:33px!important;height:25px!important}div.u_1120802400{float:none!important;width:calc(100% - 0px)!important;height:auto!important;text-align:right!important;display:block!important}#dm .p_hfcontainer div.u_1952975699{float:none!important;top:0!important;left:0!important;width:calc(100% - 64px)!important;position:relative!important;max-width:203.75px!important;min-width:25px!important;text-align:center!important;display:block!important;padding:0!important;margin:0 0 0 64px!important}#dm .p_hfcontainer div.u_1055887332{float:none!important;top:0!important;left:0!important;width:203.8px!important;position:relative!important;max-width:100%!important;min-width:0!important;text-align:center!important;display:block!important;padding:0!important;margin:0 auto!important}#dm .dmBody div.u_1921379926{background-image:url(https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/v-white-divider.svg),url(data:image/png-2880w;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpUUqHSwo4pChOlkQFemoVShChVArtOpgcukXNGlIUlwcBdeCgx+LVQcXZ10dXAVB8APEzc1J0UVK/F9aaBHjwXE/3t173L0DhEaFaVbPBKDptplOJsRsblUMvEJAGEEMIi4zy5iTpBQ8x9c9fHy9i/Es73N/jn41bzHAJxLPMsO0iTeIZzZtg/M+cYSVZJX4nHjcpAsSP3JdafEb56LLAs+MmJn0PHGEWCx2sdLFrGRqxNPEUVXTKV/ItljlvMVZq9RY+578haG8vrLMdZojSGIRS5AgQkENZVRgI0arToqFNO0nPPzDrl8il0KuMhg5FlCFBtn1g//B726twtRkKymUAHpfHOdjFAjsAs2643wfO07zBPA/A1d6x19tAPFP0usdLXoEhLeBi+uOpuwBlzvA0JMhm7Ir+WkKhQLwfkbflAMGboG+tVZv7X2cPgAZ6ip1AxwcAmNFyl73eHewu7d/z7T7+wFwJnKmZ9+MiwAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+UCDwksLkLIPkkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=)!important;background-color:rgba(0,0,0,0)!important;width:auto!important;background-repeat:no-repeat!important;margin:-180px 0 0!important;padding:100px 0 0!important}#dm .dmBody div.u_1265059670{background-color:rgba(153,153,153,1)!important;background-repeat:no-repeat!important;background-image:url(https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-983219524-1920w.jpg),url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpUUqHSwo4pChOlkQFemoVShChVArtOpgcukXNGlIUlwcBdeCgx+LVQcXZ10dXAVB8APEzc1J0UVK/F9aaBHjwXE/3t173L0DhEaFaVbPBKDptplOJsRsblUMvEJAGEEMIi4zy5iTpBQ8x9c9fHy9i/Es73N/jn41bzHAJxLPMsO0iTeIZzZtg/M+cYSVZJX4nHjcpAsSP3JdafEb56LLAs+MmJn0PHGEWCx2sdLFrGRqxNPEUVXTKV/ItljlvMVZq9RY+578haG8vrLMdZojSGIRS5AgQkENZVRgI0arToqFNO0nPPzDrl8il0KuMhg5FlCFBtn1g//B726twtRkKymUAHpfHOdjFAjsAs2643wfO07zBPA/A1d6x19tAPFP0usdLXoEhLeBi+uOpuwBlzvA0JMhm7Ir+WkKhQLwfkbflAMGboG+tVZv7X2cPgAZ6ip1AxwcAmNFyl73eHewu7d/z7T7+wFwJnKmZ9+MiwAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+UCDwksLkLIPkkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=)!important}#dm .dmBody .u_1265059670:before{opacity:.5!important;background-color:#fff!important}#dm .dmBody div.u_1265059670:before{background-color:rgba(0,0,0,1)!important;opacity:.58!important}#dm .dmBody div.u_1037821158 hr,#dm .dmBody div.u_1395520544 hr{color:rgba(255,255,255,1)!important}#dm .dmBody .u_1937459572{display:block!important}#dm .dmBody .u_1082113961,#dm .dmBody .u_1707039788{display:none!important}#dm .dmBody .u_1226785232{display:block!important}#dm .dmBody .u_1349156949,#dm .dmBody .u_1804625406{display:none!important}#dm .dmBody .u_1753987917{display:block!important}#dm .dmBody .u_1439086849,#dm .dmBody .u_1664198640{display:none!important}#dm .dmBody .u_1002687780{display:block!important}#dm .dmBody .u_1315459980,#dm .dmBody .u_1988244479{display:none!important}#dm .dmBody div.u_1923207857 .caption-inner{background-color:rgba(243,243,243,.75)!important;border-style:solid!important;border-width:2px!important;border-color:rgba(1,115,183,1)!important}#dm .dmBody .u_1012131307{display:block!important}#dm .dmBody .u_1689405880,#dm .dmBody .u_1701914927{display:none!important}#dm .dmBody .u_1041849474{display:block!important}#dm .dmBody .u_1302482485,#dm .dmBody .u_1733681937{display:none!important}#dm .dmBody .u_1477938366{display:block!important}#dm .dmBody .u_1620471787,#dm .dmBody .u_1935122515{display:none!important}#dm .dmBody .u_1935847756{display:block!important}#dm .dmBody .u_1213805949,#dm .dmBody .u_1274439318{display:none!important}#dm .dmBody div.u_1927730330 .caption-container .caption-title{color:rgba(251,22,6,1)!important;font-size:25px!important}#dm .dmBody div.u_1927730330 .caption-inner{background-color:rgba(255,255,255,1)!important;border-style:solid!important;border-width:2px!important;border-color:rgba(1,115,183,1)!important}#dm .dmBody div.u_1923207857 .caption-container .caption-title{color:rgba(202,42,31,1)!important;font-size:25px!important}#dm .dmBody a.u_1187367589{float:none!important;top:0!important;left:0!important;width:calc(100% - 470px)!important;position:relative!important;height:44px!important;max-width:260px!important;min-width:25px!important;text-align:center!important;padding:0!important;margin:10px auto!important}#dm .dmBody div.u_1037821158,#dm .dmBody div.u_1927730330{float:none!important;top:0!important;left:0!important;height:auto!important;min-width:25px!important}#dm .dmBody div.u_1037821158{width:calc(100% - 193px)!important;position:relative!important;max-width:814px!important;text-align:start!important;padding:0!important;margin:0 auto!important}#dm .dmBody .u_1923207857 .photoGalleryThumbs{padding:2.5px!important}#dm .dmBody .u_1923207857 .photoGalleryViewAll{padding:0 5px!important}#dm .dmBody .u_1923207857 .caption-inner{padding-left:1px!important;padding-right:1px!important}#dm .dmBody .u_1927730330 .photoGalleryThumbs{padding:2.5px!important}#dm .dmBody .u_1927730330 .photoGalleryViewAll{padding:0 5px!important}#dm .dmBody .u_1927730330 .caption-inner{padding-left:1px!important;padding-right:1px!important}#dm .dmBody div.u_1927730330{width:calc(100% - 0px)!important;position:relative!important;max-width:100%!important;text-align:center!important;padding:0!important}#dm .dmBody div.u_1265059670{width:auto!important;background-attachment:initial!important;background-position:0 50%!important;margin:0!important;padding:250px 70px 400px!important}.font-size-24{font-size:24px!important}.font-size-45,.size-45{font-size:45px!important}#\31 003475617,#\31 011203007,#\31 049817043,#\31 085293164,#\31 086002319,#\31 136455558,#\31 206535784,#\31 217940293,#\31 229480674,#\31 253927204,#\31 298723622,#\31 557873378,#\31 569808728,#\31 657126936,#\31 738275857,#\31 779259138,#\31 797241626,#\31 821699788,#\31 919222407,#\31 938615113,#\31 990096772,#hamburger-drawer{order:0}#\31 049817043,#\31 738275857,#\31 797241626{flex-direction:row}#\31 003099753,#\31 020708432,#\31 024539287,#\31 038102632,#\31 047602411,#\31 052001438,#\31 059984089,#\31 061344470,#\31 188003938,#\31 238402979,#\31 260927304,#\31 328113818,#\31 377130739,#\31 393865977,#\31 594950974,#\31 619367090,#\31 690900828,#\31 811980619,#\31 856183624,#\31 931751472,#\31 948058829{order:0;flex-direction:row} #dm .dmPhotoGallery.newPhotoGallery .dmPhotoGalleryHolder {display: none;} @media (max-width:767px){ [data-hidden-on-mobile] {display:none!important}} .dmDesktopBody [data-anim-desktop]:not([data-anim-desktop='none']) { visibility: hidden; } </style> <style id="fontFallbacks"> @font-face { font-family: "Roboto Fallback"; src: local('Arial'); ascent-override: 92.6709%; descent-override: 24.3871%; size-adjust: 100.1106%; line-gap-override: 0%; }@font-face { font-family: "Montserrat Fallback"; src: local('Arial'); ascent-override: 84.9466%; descent-override: 22.0264%; size-adjust: 113.954%; line-gap-override: 0%; }@font-face { font-family: "Cabin Fallback"; src: local('Arial'); ascent-override: 101.7818%; descent-override: 26.3684%; size-adjust: 94.8106%; line-gap-override: 0%; }@font-face { font-family: "Poppins Fallback"; src: local('Arial'); ascent-override: 92.326%; descent-override: 30.7753%; line-gap-override: 8.793%; size-adjust: 113.7274%; }@font-face { font-family: "Pacifico Fallback"; src: local('Arial'); ascent-override: 140.9687%; descent-override: 49.0091%; size-adjust: 92.4319%; line-gap-override: 0%; }@font-face { font-family: "Arial Fallback"; src: local('Arial'); line-gap-override: 0%; }@font-face { font-family: "Barlow Fallback"; src: local('Arial'); ascent-override: 103.1323%; descent-override: 20.6265%; size-adjust: 96.9628%; line-gap-override: 0%; }@font-face { font-family: "Open Sans Fallback"; src: local('Arial'); ascent-override: 101.1768%; descent-override: 27.7323%; size-adjust: 105.6416%; line-gap-override: 0%; } </style> <!-- End render the required css and JS in the head section --> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.aaafp.com/"> <script type="application/ld+json"> { "@context" : "https://schema.org", "@type" : "WebSite", "name" : "Triple A Fire Protection Inc", "url" : "https://www.aaafp.com/" } </script> <title> Fire Protection | Semmes, AL | Triple A Fire Protection Inc. </title> <meta name="description" content="Triple A Fire Protection Inc. are expert fire protection installers & designers & offer inspections & retrofitting in Semmes, AL. Call us today!"/> <meta name="twitter:card" content="summary"/> <meta name="twitter:title" content="Fire Protection | Semmes, AL | Triple A Fire Protection Inc."/> <meta name="twitter:description" content="Triple A Fire Protection Inc. are expert fire protection installers & designers & offer inspections & retrofitting in Semmes, AL. Call us today!"/> <meta property="og:description" content="Triple A Fire Protection Inc. are expert fire protection installers & designers & offer inspections & retrofitting in Semmes, AL. Call us today!"/> <meta property="og:title" content="Fire Protection | Semmes, AL | Triple A Fire Protection Inc."/> <!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> </head> <body id="dmRoot" data-page-alias="home" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite mac dmLargeBody responsiveTablet " style="padding:0;margin:0;" > <!-- ========= Site Content ========= --> <div id="dm" class='dmwr'> <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> <div dmwrapped="true" id="1901957768" class="dm-home-page" themewaschanged="true"> <div dmtemplateid="Hamburger" data-responsive-name="ResponsiveDesktopTopTabletHamburger" class="runtime-module-container dm-bfs dm-layout-home hasAnimations rows-1200 layout-drawer_push-content dmPageBody d-page-1716942098 dmFreeHeader" id="dm-outer-wrapper" data-page-class="1716942098" data-buttonstyle="THICK_BORDER_ROUND" data-soch="true" data-background-parallax-selector=".dmHomeSection1, .dmSectionParallex"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div id="site_content"> <div class="p_hfcontainer showOnMedium"> <div id="hamburger-drawer" class="hamburger-drawer layout-drawer" layout="SHARD22fef9973807a46bbbdad5938e9d68e93===header" data-origin="side" data-auto-height="true" data-push-content="true"> <div class="u_1875776653 dmRespRow middleDrawerRow" style="text-align: center;" id="1875776653"> <div class="dmRespColsWrapper" id="1738275857"> <div class="u_1356799660 dmRespCol small-12 medium-12 large-12 empty-column" id="1356799660"></div> </div> </div> <div class="u_1006187450 dmRespRow" style="text-align: center;" id="1006187450"> <div class="dmRespColsWrapper" id="1619367090"> <div class="u_1093759472 dmRespCol small-12 medium-12 large-12" id="1093759472"> <nav class="u_1052001438 effect-text-color main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_2" layout-sub="" data-show-vertical-sub-items="HIDE" id="1052001438" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmNavItemSelected dmUDNavigationItem_00 " target="" data-target-page-alias="" data-auto="selected-page"> <span class="nav-item-text " data-link-text=" Home " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sprinkler-design" class="unifiednav__item dmUDNavigationItem_010101729451 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Design & Installation " data-auto="page-text-style">Design & Installation<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-maintenance" class="unifiednav__item dmUDNavigationItem_01010171300 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Maintenance " data-auto="page-text-style">Fire System Maintenance<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-inspections" class="unifiednav__item dmUDNavigationItem_010101261298 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Inspections " data-auto="page-text-style">Fire System Inspections<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sysem-retrofitting" class="unifiednav__item dmUDNavigationItem_010101911900 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Retrofitting " data-auto="page-text-style">Retrofitting<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/gallery" class="unifiednav__item dmUDNavigationItem_010101905936 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Gallery " data-auto="page-text-style">Gallery<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item dmUDNavigationItem_010101757452 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Contact Us " data-auto="page-text-style">Contact Us<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> </div> </div> </div> <div class="u_1981764749 dmRespRow" style="text-align: center;" id="1981764749"> <div class="dmRespColsWrapper" id="1811980619"> <div class="u_1658219087 dmRespCol small-12 medium-12 large-12 empty-column" id="1658219087"></div> </div> </div> </div> <div class="layout-drawer-overlay" id="layout-drawer-overlay"></div> </div> <div class="site_content"> <div id="hamburger-header-container" class="showOnMedium hamburger-header-container p_hfcontainer"> <div id="hamburger-header" class="hamburger-header p_hfcontainer" layout="44dc38f951e9489490b055748e10ba9f===header"> <div class="dmRespRow dmDefaultListContentRow u_1419612340" style="text-align:center" id="1419612340"> <div class="dmRespColsWrapper" id="1059984089" style="align-items:center;"> <div class="u_1086002319 small-12 dmRespCol large-3 medium-3" id="1086002319"> <div class="u_1055887332 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1055887332"> <a href="/" id="1327403532"><img src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/triple+a+white-1920w.png" alt="Triple A Fire Protection Inc." id="1343695657" class="" data-dm-image-path="https://irp.cdn-website.com/f0cda112/dms3rep/multi/triple+a+white.png" width="1513" height="986" title="Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> </div> <div class="u_1206535784 dmRespCol small-12 large-9 medium-9" id="1206535784"> <span id="1552079030"></span> <div class="u_1621534429 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1621534429"><p class="text-align-right m-size-13 size-16"><span class="font-size-16 m-font-size-13" style="color: rgb(0, 57, 148); font-weight: normal; display: unset;">Call Us!</span><span single-space="true" class="font-size-16 m-font-size-13" style="color: rgb(251, 22, 6); font-weight: normal; display: unset;"> <span class="font-size-16 m-font-size-13" style="color: rgb(251, 22, 6); font-weight: normal; display: unset;"></span> </span><a href="tel:(251) 649-2034 " target="_blank" type="call" class="font-size-24 m-font-size-19" style="color: rgb(251, 22, 6); font-weight: bold; display: unset;">(251) 649-2034</a></p></div> <div class="u_1798986663 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1798986663" style="text-align: left; display: block;"><p class="text-align-right"><span class="" style="display: unset; font-weight: normal; color: rgb(0, 57, 148);"><span style="display: unset; font-weight: normal; color: rgb(0, 57, 148);">Address:</span> </span><a href="https://www.google.com/maps/place/8000+Wards+Ln,+Semmes,+AL+36575,+USA/@30.7571981,-88.2325604,17z/data=!3m1!4b1!4m5!3m4!1s0x889bac375e31086d:0x9aac6e8dbe69969!8m2!3d30.7571935!4d-88.2303717" target="_blank" runtime_url="https://www.google.com/maps/place/8000+Wards+Ln,+Semmes,+AL+36575,+USA/@30.7571981,-88.2325604,17z/data=!3m1!4b1!4m5!3m4!1s0x889bac375e31086d:0x9aac6e8dbe69969!8m2!3d30.7571935!4d-88.2303717" type="url" style="display: unset; font-weight: bold; color: rgb(251, 22, 6);">8000 Wards Lane Semmes, Alabama 36575 United States</a></p></div> <div class="u_1474146952 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1474146952" style="text-align: left; display: block;"><p class="text-align-right"><span class="" style="color: rgb(0, 57, 148); font-weight: normal; display: unset;"><span style="color: rgb(0, 57, 148); font-weight: normal; display: unset;">Email:</span> </span><a href="mailto:[email protected]" target="_blank" type="email" style="color: rgb(251, 22, 6); font-weight: bold; display: unset;">[email protected]</a></p></div> <div class="u_1120802400 align-center text-align-center dmSocialHub gapSpacing" id="1120802400" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://facebook.com/aaafp" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://www.linkedin.com/company/triple-a-fire-protection-inc" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://www.google.com/maps/place/Triple+%22A%22+Fire+Protection,+Inc./@30.7571757,-88.2303455,15z/data=!4m2!3m1!1s0x0:0xb9bad8e055c9b765?sa=X&ved=2ahUKEwjOhJ342e75AhW_EVkFHUFTB3kQ_BJ6BAhREAU" target="_blank" dm_dont_rewrite_url="true" aria-label="google_my_business" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'GoogleMyBusiness')"> <span class="dmSocialGoogleMyBusiness dm-social-icons-google-my-business oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://twitter.com/TripleAFirePro1" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Twitter')"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> </div> </div> </div> </div> <button class="showOnMedium layout-drawer-hamburger hamburger-on-header" id="layout-drawer-hamburger" aria-label="menu"> <span class="hamburger__slice"></span> <span class="hamburger__slice"></span> <span class="hamburger__slice"></span> </button> <div class="dmHeaderContainer fHeader d-header-wrapper showOnLarge"> <div id="hcontainer" class="u_hcontainer dmHeader p_hfcontainer" freeheader="true" headerlayout="696" layout="SHARD2f014fc9487554eb885e18628ee6309e9===header" mini-header-show-only-navigation-row="true" has-shadow="true"> <div dm:templateorder="85" class="dmHeaderResp dmHeaderStack noSwitch" id="1709005236"> <div class="dmRespRow dmDefaultListContentRow u_1013042409" style="text-align:center" id="1013042409"> <div class="dmRespColsWrapper" id="1797241626" style="align-items:center;"> <div class="u_1065593334 small-12 dmRespCol large-3 medium-3" id="1065593334"> <div class="u_1952975699 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1952975699"> <a href="/" id="1195690940"><img src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/triple+a+white-244w.png" alt="Triple A Fire Protection Inc." id="1908184812" class="" data-dm-image-path="https://irp.cdn-website.com/f0cda112/dms3rep/multi/triple+a+white.png" width="1513" height="986" title="Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> </div> <div class="u_1808931641 dmRespCol small-12 large-9 medium-9" id="1808931641"> <span id="1116089095"></span> <div class="u_1381799999 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1381799999"><p class="text-align-right m-size-13 size-16"><span class="font-size-16 m-font-size-13" style="color:rgb(0, 57, 148);font-weight:normal;display:unset;font-family:Barlow, 'Barlow Fallback';">Call Us!</span><span single-space="true" class="font-size-16 m-font-size-13" style="color:rgb(251, 22, 6);font-weight:normal;display:unset;font-family:Barlow, 'Barlow Fallback';"> <span class="font-size-16 m-font-size-13" style="color:rgb(251, 22, 6);font-weight:normal;display:unset;font-family:Barlow, 'Barlow Fallback';"></span> </span><a href="tel:(251) 649-2034 " target="_blank" type="call" class="font-size-24 m-font-size-19" style="color:rgb(202, 42, 31);font-weight:bold;display:unset;font-family:Barlow, 'Barlow Fallback';">(251) 649-2034</a></p></div> <div class="u_1034595970 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1034595970" style="text-align: left; display: block;"><p class="text-align-right"><span class="" style="color: rgb(0, 57, 148); font-weight: normal; display: unset;"><span style="color: rgb(0, 57, 148); font-weight: normal; display: unset;">Address:</span> </span><a href="https://www.google.com/maps/place/8000+Wards+Ln,+Semmes,+AL+36575,+USA/@30.7571981,-88.2325604,17z/data=!3m1!4b1!4m5!3m4!1s0x889bac375e31086d:0x9aac6e8dbe69969!8m2!3d30.7571935!4d-88.2303717" target="_blank" runtime_url="https://www.google.com/maps/place/8000+Wards+Ln,+Semmes,+AL+36575,+USA/@30.7571981,-88.2325604,17z/data=!3m1!4b1!4m5!3m4!1s0x889bac375e31086d:0x9aac6e8dbe69969!8m2!3d30.7571935!4d-88.2303717" type="url" style="color: rgb(202, 42, 31); font-weight: bold; display: unset;">8000 Wards Lane Semmes, Alabama 36575 United States</a></p></div> <div class="u_1676284732 dmNewParagraph ql-disabled" data-element-type="paragraph" data-version="5" id="1676284732" style="text-align: left; display: block;"><p class="text-align-right"><span style="color: rgb(0, 57, 148); font-weight: normal; display: unset;">Email:</span><span single-space="true" class="" style="color: rgb(202, 42, 31); font-weight: normal; display: unset;"> <span style="color: rgb(202, 42, 31); font-weight: normal; display: unset;"></span> </span><a href="mailto:[email protected]" target="_blank" type="email" style="color: rgb(202, 42, 31); font-weight: bold; display: unset;">[email protected]</a></p></div> <div class="u_1744862513 align-center text-align-center dmSocialHub gapSpacing" id="1744862513" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://facebook.com/aaafp" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://www.linkedin.com/company/triple-a-fire-protection-inc" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://www.google.com/maps/place/Triple+%22A%22+Fire+Protection,+Inc./@30.7571757,-88.2303455,15z/data=!4m2!3m1!1s0x0:0xb9bad8e055c9b765?sa=X&ved=2ahUKEwjOhJ342e75AhW_EVkFHUFTB3kQ_BJ6BAhREAU" target="_blank" dm_dont_rewrite_url="true" aria-label="google_my_business" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'GoogleMyBusiness')"> <span class="dmSocialGoogleMyBusiness dm-social-icons-google-my-business oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://twitter.com/TripleAFirePro1" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Twitter')"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> </div> </div> <div class="dmRespRow u_1507451588 fullBleedChanged fullBleedMode" style="text-align: center;" id="1507451588"> <div class="dmRespColsWrapper" id="1594950974" style="align-items:center;"> <div class="u_1543636768 dmRespCol small-12 medium-12 large-12" id="1543636768"> <span id="1667587312"></span> <nav class="u_1328113818 effect-background main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_8" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" id="1328113818" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmNavItemSelected dmUDNavigationItem_00 " target="" data-target-page-alias="" data-auto="selected-page"> <span class="nav-item-text " data-link-text=" Home " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sprinkler-design" class="unifiednav__item dmUDNavigationItem_010101729451 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Design & Installation " data-auto="page-text-style">Design & Installation<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-maintenance" class="unifiednav__item dmUDNavigationItem_01010171300 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Maintenance " data-auto="page-text-style">Fire System Maintenance<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-inspections" class="unifiednav__item dmUDNavigationItem_010101261298 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Inspections " data-auto="page-text-style">Fire System Inspections<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sysem-retrofitting" class="unifiednav__item dmUDNavigationItem_010101911900 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Retrofitting " data-auto="page-text-style">Retrofitting<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/gallery" class="unifiednav__item dmUDNavigationItem_010101905936 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Gallery " data-auto="page-text-style">Gallery<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item dmUDNavigationItem_010101757452 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Contact Us " data-auto="page-text-style">Contact Us<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> </div> </div> </div> </div> </div> </div> <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_home dm-home-page" themewaschanged="true"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="170" class="dmHomeRespTmpl mainBorder dmRespRowsWrapper dmFullRowRespTmpl" id="1716942098"> <div class="dmRespRow u_1265059670 hasBackgroundOverlay dmSectionNoParallax" style="text-align: center;" id="1265059670"> <div class="dmRespColsWrapper" id="1948058829"> <div class="dmRespCol small-12 medium-12 large-12" id="1056635707"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1196340525"><p class="text-align-center m-size-36 size-45"><span class="m-font-size-36 font-size-45" style="font-weight: bold; display: unset; color: rgb(255, 255, 255);"><span class="m-font-size-36 font-size-45" style="font-weight: bold; display: unset; color: rgb(255, 255, 255);">Free Estimates on All Fire Sprinkler System Repairs </span> </span></p></div> <div class="dmDividerWrapper clearfix u_1395520544" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1395520544"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1692848968"/></div> <div class="u_1037821158 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1037821158"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1169228279"/></div> <a data-display-type="block" class="u_1187367589 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="tel:(251) 649-2034 " data-element-type="dButtonLinkId" id="1187367589"> <span class="iconBg" aria-hidden="true" id="1684967298"> <span class="icon hasFontIcon icon-star" id="1149507492"></span> </span> <span class="text" id="1455456468">Call Us Today</span> </a> </div> </div> </div> <div class="dmRespRow u_1921379926 fullBleedChanged fullBleedMode" id="1921379926"> <div class="dmRespColsWrapper" id="1260927304"> <div class="dmRespCol empty-column large-12 medium-12 small-12" id="1185878458"></div> </div> </div> <div class="u_1591318435 dmRespRow" style="text-align: center;" id="1591318435"> <div class="dmRespColsWrapper" id="1188003938"> <div class="dmRespCol small-12 medium-12 large-12 u_1335388581" id="1335388581"> <span id="1000088425"></span> <div class="dmRespRow u_1694780961" id="1694780961" data-anim-extended="eyJkZXNrdG9wIjp7InRyaWdnZXIiOiJlbnRyYW5jZSIsImFuaW1hdGlvbiI6ImZhZGVJbiIsInJldmVyc2UiOmZhbHNlfX0=" data-anim-desktop="fadeIn"> <div class="dmRespColsWrapper" id="1856183624" style="align-items:center;"> <div class="u_1127899105 dmRespCol small-12 medium-12 large-12" id="1127899105"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1201857913" data-anim-desktop="none" style=""> <h1 class="text-align-center" style="line-height: 1.5;"><span style="display: unset;">Fire Protection Experts in Semmes, AL & the Southeast United States </span></h1> </div> <div class="u_1365332262 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1365332262"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1970363711"/></div> <div class="dmNewParagraph u_1413024454" data-element-type="paragraph" data-version="5" id="1413024454"><p class="text-align-left" style="line-height: 1.5;"><span class="" style="display: unset;"><span style="display: unset;">Triple A Fire Protection Inc. is located in Semmes, AL and offers fire protection system installation, design inspection, and retrofitting for commercial, residential, and industrial properties throughout the Southeastern United States. Since 1983 our team has been dedicated to helping our clients feel safe with well-maintained, properly functioning fire protection systems. We understand how vital your fire protection system is to your property. Don’t risk the safety of you, your employees, or your home. Let our trained experts ensure your fire safety system is always working its best. Call</span> </span><a href="tel:(251) 649-2034 " target="_blank" type="call" style="display: unset; font-weight: bold;">(251) 649-2034</a><span class="" style="display: unset;"> <span style="display: unset;">to get started today. </span></span></p></div> </div> </div> </div> </div> </div> </div> <div class="u_1917701891 dmRespRow hasBackgroundOverlay dmSectionParallaxNew" style="text-align: center;" id="1917701891"> <div class="dmRespColsWrapper" id="1377130739"> <div class="dmRespCol small-12 medium-12 large-12 u_1166110601" id="1166110601"> <span id="1956337333"></span> <div class="dmRespRow u_1811259103 mobile-columns-reversed" id="1811259103"> <div class="dmRespColsWrapper" id="1931751472" style="align-items:center;"> <div class="u_1349420115 dmRespCol small-12 medium-12 large-12" id="1349420115" data-anim-extended="eyJkZXNrdG9wIjp7InRyaWdnZXIiOiJlbnRyYW5jZSIsImFuaW1hdGlvbiI6InNsaWRlSW5Db21ibyIsImR1cmF0aW9uIjowLjUsImRlbGF5IjowLCJpbnRlbnNpdHkiOjEsImRpciI6InJpZ2h0In19" data-anim-desktop="slideInCombo"> <div class="dmNewParagraph ql-disabled" data-element-type="paragraph" data-version="5" id="1829677553"> <h2><span style="color: rgb(255, 255, 255); display: unset;">Fire Protection System Services </span></h2> </div> <div class="u_1927730330 dmPhotoGallery newPhotoGallery dmPhotoGalleryResp hide-for-medium hide-for-large photo-gallery-done text-layout-over captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="square" data-desktop-columns="4" data-element-type="dPhotoGalleryId" data-desktop-text-layout="over" id="1927730330" data-link-gallery="true" data-placeholder="false" data-image-hover-effect="blur" data-image-animation="none" data-mobile-columns="1"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container square"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1569808728 has-link" href="/fire-sprinkler-design" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-467071483.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-467071483-640w.jpg');"><img id="1875347929" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-467071483-1920w.jpg" alt="Design And Installation — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1012131307" class="caption-container u_1012131307" style=""> <span class="caption-inner"> <h3 id="1116438077" class="caption-title u_1116438077">Design & Installation</h3> <a id="1689405880" class="caption-button dmWidget clearfix u_1689405880" href="/fire-sprinkler-design" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1938615113 has-link" href="/fire-system-maintenance" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-1225051026.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1225051026-640w.jpg');"><img id="1526894099" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1225051026-1920w.jpg" alt="Fire System Maintenance — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1041849474" class="caption-container u_1041849474" style="display:none"> <span class="caption-inner"> <h3 id="1101702695" class="caption-title u_1101702695">Fire System Maintenance</h3> <a id="1302482485" class="caption-button dmWidget clearfix u_1302482485" href="/fire-system-maintenance" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1003475617 has-link" href="/fire-system-inspections" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-1415475113.jpg" target="_blank" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1415475113-640w.jpg');"><img id="1208341887" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1415475113-1920w.jpg" alt="Fire System Inspections — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1477938366" class="caption-container u_1477938366" style="display:none"> <span class="caption-inner"> <h3 id="1505671652" class="caption-title u_1505671652">Fire System Inspections</h3> <a id="1620471787" class="caption-button dmWidget clearfix u_1620471787" href="/fire-system-inspections" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1821699788 has-link" href="/fire-sysem-retrofitting" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-157315160.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-157315160-640w.jpg');"><img id="1255077513" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-157315160-1920w.jpg" alt="Retrofitting — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1935847756" class="caption-container u_1935847756" style="display:none"> <span class="caption-inner"> <h3 id="1023935269" class="caption-title u_1023935269">Retrofitting</h3> <a id="1274439318" class="caption-button dmWidget clearfix u_1274439318" href="/fire-sysem-retrofitting" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> <div class="u_1923207857 dmPhotoGallery newPhotoGallery dmPhotoGalleryResp hide-for-small photo-gallery-done text-layout-over captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="square" data-desktop-columns="4" data-element-type="dPhotoGalleryId" data-desktop-text-layout="over" id="1923207857" data-link-gallery="true" data-placeholder="false" data-image-hover-effect="blur" data-image-animation="fadeInUp" data-mobile-columns="1"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container square"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1990096772 has-link" href="/fire-sprinkler-design" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-467071483.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-467071483-640w.jpg');"><img id="1762388162" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-467071483-1920w.jpg" alt="Design And Installation — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1937459572" class="caption-container u_1937459572" style=""> <span class="caption-inner"> <h3 id="1559241118" class="caption-title u_1559241118">Design & Installation</h3> <a id="1707039788" class="caption-button dmWidget clearfix u_1707039788" href="/fire-sprinkler-design" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1919222407 has-link" href="/fire-system-maintenance" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-1225051026.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1225051026-640w.jpg');"><img id="1702315841" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1225051026-1920w.jpg" alt="Fire System Maintenance — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1226785232" class="caption-container u_1226785232" style="display:none"> <span class="caption-inner"> <h3 id="1869039062" class="caption-title u_1869039062">Fire System Maintenance</h3> <a id="1804625406" class="caption-button dmWidget clearfix u_1804625406" href="/fire-system-maintenance" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1011203007 has-link" href="/fire-system-inspections" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-1415475113.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1415475113-640w.jpg');"><img id="1204862010" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-1415475113-1920w.jpg" alt="Fire System Inspections — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1753987917" class="caption-container u_1753987917" style="display:none"> <span class="caption-inner"> <h3 id="1008878900" class="caption-title u_1008878900">Fire System Inspections</h3> <a id="1439086849" class="caption-button dmWidget clearfix u_1439086849" href="/fire-system-inspections" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1657126936 has-link" href="/fire-sysem-retrofitting" data-image-url="https://irp.cdn-website.com/f0cda112/dms3rep/multi/GettyImages-157315160.jpg" style="background-image: url('https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-157315160-640w.jpg');"><img id="1306380196" data-src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/GettyImages-157315160-1920w.jpg" alt="Retrofitting — Semmes, AL — Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div id="1002687780" class="caption-container u_1002687780" style="display:none"> <span class="caption-inner"> <h3 id="1541417040" class="caption-title u_1541417040">Retrofitting</h3> <a id="1988244479" class="caption-button dmWidget clearfix u_1988244479" href="/fire-sysem-retrofitting" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="u_1280933547 dmRespRow" style="text-align: center;" id="1280933547"> <div class="dmRespColsWrapper" id="1049817043"> <div class="dmRespCol small-12 medium-12 large-12 u_1541732132" id="1541732132"> <span id="1981959300"></span> <div class="dmRespRow u_1074554733 mobile-columns-reversed" id="1074554733" data-anim-extended="eyJkZXNrdG9wIjp7InRyaWdnZXIiOiJlbnRyYW5jZSIsImFuaW1hdGlvbiI6ImZhZGVJbiIsInJldmVyc2UiOmZhbHNlfX0=" data-anim-desktop="fadeIn"> <div class="dmRespColsWrapper" id="1024539287" style="align-items:center;"> <div class="u_1823221702 dmRespCol small-12 medium-12 large-12" id="1823221702"> <div class="u_1714904896 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1714904896"> <h2><span style="display: unset;">Why Choose Triple A Fire Protection Inc. </span></h2> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1452442032"><p style="line-height: 1.5;"><span class="" style="display: unset;"><span style="display: unset;">At Triple A Fire Protection, we treat all of our clients like a member of the family. We are dedicated to ensuring you get exactly what you need when it comes to fire protection to ensure the safety and protection of you, your property and those who visit. If you're looking for a dedicated team to help you choose and understand your fire protection system, look no further than Triple A Fire Protection Inc. Call</span> </span><a href="tel:(251) 649-2034 " target="_blank" type="call" style="display: unset; font-weight: bold;">(251) 649-2034</a><span class="" style="display: unset;"> <span style="display: unset;">today!</span></span></p></div> </div> </div> </div> <div class="u_1434295821 dmRespRow" id="1434295821"> <div class="dmRespColsWrapper" id="1393865977"> <div class="dmRespCol small-12 large-4 medium-4 u_1628914215" id="1628914215"> <div class="graphicWidget u_1131306252" data-element-type="graphic" data-widget-type="graphic" id="1131306252" data-layout="graphic-style-2"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 52 52" id="1364398945" class="svg u_1364398945" data-icon-custom="true" data-icon-name="Dedicated to Client Satisfaction & Safety.svg"> <defs> <style>.d-1364398945{stroke-linecap:round;}.d,.e-1364398945{fill:none;stroke:#37464c;stroke-linejoin:round;stroke-width:2px;}</style> </defs> <g id="a"></g> <g id="b"> <g id="c"> <g> <g> <path class="d-1364398945" d="M21,25c0,1.1,.9,2,2,2h10.89c1,0,1.92-.68,2.08-1.66,.2-1.25-.76-2.34-1.97-2.34h1.89c1,0,1.92-.68,2.08-1.66,.2-1.25-.76-2.34-1.97-2.34h.89c1,0,1.92-.68,2.08-1.66,.2-1.25-.76-2.34-1.97-2.34h0c1.21,0,2.18-1.08,1.97-2.34-.16-.98-1.08-1.66-2.08-1.66h-7.39c-.28,0-.5-.22-.5-.5V4c0-1.66-1.34-3-3-3h-1v3.8c0,1.11-.31,2.2-.89,3.14l-3.11,5.05v12Z"></path> <rect class="d-1364398945" x="15" y="11" width="6" height="16" rx="1.7" ry="1.7"></rect> </g> <path class="e-1364398945" d="M25.22,48.73l-3.76,2.09c-1.05,.59-2.32-.31-2.12-1.5l.76-4.67c.08-.5-.08-1.01-.43-1.37l-3.25-3.34c-.82-.85-.35-2.27,.82-2.45l4.34-.67c.53-.08,.98-.42,1.21-.9l1.91-4.08c.52-1.11,2.09-1.11,2.61,0l1.91,4.08c.23,.48,.68,.82,1.21,.9l4.35,.67c1.16,.18,1.64,1.6,.82,2.44l-3.25,3.35c-.35,.36-.51,.87-.43,1.37l.76,4.67c.19,1.2-1.07,2.09-2.12,1.5l-3.76-2.09c-.48-.27-1.07-.27-1.55,0Z"></path> <path class="e-1364398945" d="M43.45,39.41l-2.63,1.46c-.74,.41-1.62-.22-1.49-1.05l.53-3.27c.06-.35-.06-.71-.3-.96l-2.27-2.34c-.58-.59-.24-1.59,.57-1.72l3.04-.47c.37-.06,.69-.29,.84-.63l1.33-2.85c.36-.78,1.47-.78,1.83,0l1.33,2.85c.16,.34,.48,.58,.84,.63l3.05,.47c.82,.13,1.15,1.12,.57,1.71l-2.28,2.34c-.25,.25-.36,.61-.3,.96l.53,3.27c.14,.84-.75,1.46-1.49,1.05l-2.63-1.46c-.34-.19-.75-.19-1.09,0Z"></path> <path class="e-1364398945" d="M7.45,39.41l-2.63,1.46c-.74,.41-1.62-.22-1.49-1.05l.53-3.27c.06-.35-.06-.71-.3-.96l-2.27-2.34c-.58-.59-.24-1.59,.57-1.72l3.04-.47c.37-.06,.69-.29,.84-.63l1.33-2.85c.36-.78,1.47-.78,1.83,0l1.33,2.85c.16,.34,.48,.58,.84,.63l3.05,.47c.82,.13,1.15,1.12,.57,1.71l-2.28,2.34c-.25,.25-.36,.61-.3,.96l.53,3.27c.14,.84-.75,1.46-1.49,1.05l-2.63-1.46c-.34-.19-.75-.19-1.09,0Z"></path> </g> </g> </g> </svg> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1534972364"><p class="m-size-16 text-align-center size-20" style="line-height: 1.5;"><span class="m-font-size-16 font-size-20" style="font-weight: bold; color: rgb(156, 10, 0); display: unset;">Dedicated to Client Satisfaction & Safety</span></p></div> </div> <div class="dmRespCol small-12 large-4 medium-4" id="1976095267"> <div class="graphicWidget u_1531314827" data-element-type="graphic" data-widget-type="graphic" id="1531314827" data-layout="graphic-style-2"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 60 48" id="1353633677" class="svg u_1353633677" data-icon-custom="true" data-icon-name="Over 40 Years of Experience.svg"> <defs> <style>.d-1353633677{stroke-linecap:round;}.d,.e-1353633677{fill:none;stroke:#37464c;stroke-linejoin:round;stroke-width:2px;}</style> </defs> <g id="a"></g> <g id="b"> <g id="c"> <g> <path class="e-1353633677" d="M29.22,30.73l-3.76,2.09c-1.05,.59-2.32-.31-2.12-1.5l.76-4.67c.08-.5-.08-1.01-.43-1.37l-3.25-3.34c-.82-.85-.35-2.27,.82-2.45l4.34-.67c.53-.08,.98-.42,1.21-.9l1.91-4.08c.52-1.11,2.09-1.11,2.61,0l1.91,4.08c.23,.48,.68,.82,1.21,.9l4.35,.67c1.16,.18,1.64,1.6,.82,2.44l-3.25,3.35c-.35,.36-.51,.87-.43,1.37l.76,4.67c.19,1.2-1.07,2.09-2.12,1.5l-3.76-2.09c-.48-.27-1.07-.27-1.55,0Z"></path> <g> <path class="d-1353633677" d="M46.32,6c-.45-2.32-2.12-4.15-4.24-5-1.68,1.46-2.55,3.68-2.09,6s2.12,4.15,4.24,5c1.68-1.46,2.55-3.69,2.09-6Z"></path> <path class="d-1353633677" d="M47.61,19.11c2.24,.29,4.59-.5,6.14-2.3,1.56-1.8,1.94-4.16,1.25-6.23-2.24-.29-4.59,.5-6.14,2.3-1.56,1.8-1.94,4.16-1.25,6.23Z"></path> <path class="d-1353633677" d="M52.02,22.66c-2.45,.85-4.13,2.83-4.65,5.12,1.92,1.43,4.53,1.92,6.98,1.07,2.45-.85,4.13-2.83,4.65-5.12-1.92-1.43-4.53-1.92-6.98-1.07Z"></path> <path class="d-1353633677" d="M49.57,33.05c-2.39-.41-4.7,.44-6.22,2.05,.86,2.01,2.73,3.57,5.11,3.98,2.39,.41,4.7-.44,6.22-2.05-.86-2.01-2.73-3.57-5.11-3.98Z"></path> <path class="d-1353633677" d="M42.48,41.03c-1.79-1.44-4.14-1.79-6.2-1.15-.28,2.07,.5,4.23,2.29,5.67,1.79,1.44,4.14,1.79,6.2,1.15,.28-2.07-.5-4.23-2.29-5.67Z"></path> <path class="d-1353633677" d="M30,41c9.94,0,18-8.06,18-18,0-4.15-1.42-7.96-3.77-11"></path> </g> <g> <path class="d-1353633677" d="M13.68,6c.45-2.32,2.12-4.15,4.24-5,1.68,1.46,2.55,3.68,2.09,6s-2.12,4.15-4.24,5c-1.68-1.46-2.55-3.69-2.09-6Z"></path> <path class="d-1353633677" d="M12.39,19.11c-2.24,.29-4.59-.5-6.14-2.3-1.56-1.8-1.94-4.16-1.25-6.23,2.24-.29,4.59,.5,6.14,2.3,1.56,1.8,1.94,4.16,1.25,6.23Z"></path> <path class="d-1353633677" d="M7.98,22.66c2.45,.85,4.13,2.83,4.65,5.12-1.92,1.43-4.53,1.92-6.98,1.07-2.45-.85-4.13-2.83-4.65-5.12,1.92-1.43,4.53-1.92,6.98-1.07Z"></path> <path class="d-1353633677" d="M10.43,33.05c2.39-.41,4.7,.44,6.22,2.05-.86,2.01-2.73,3.57-5.11,3.98-2.39,.41-4.7-.44-6.22-2.05,.86-2.01,2.73-3.57,5.11-3.98Z"></path> <path class="d-1353633677" d="M17.52,41.03c1.79-1.44,4.14-1.79,6.2-1.15,.28,2.07-.5,4.23-2.29,5.67-1.79,1.44-4.14,1.79-6.2,1.15-.28-2.07,.5-4.23,2.29-5.67Z"></path> <path class="d-1353633677" d="M30,41c-9.94,0-18-8.06-18-18,0-4.15,1.42-7.96,3.77-11"></path> </g> </g> </g> </g> </svg> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1525995987"><p class="m-size-16 text-align-center size-20" style="line-height: 1.5;"><span class="m-font-size-16 font-size-20" style="font-weight: bold; color: rgb(156, 10, 0); display: unset;">Over 40 Years of Experience</span></p></div> </div> <div class="dmRespCol small-12 large-4 medium-4" id="1420633751"> <div class="graphicWidget u_1818895509" data-element-type="graphic" data-widget-type="graphic" id="1818895509" data-layout="graphic-style-2"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 52 52" id="1244808775" class="svg u_1244808775" data-icon-custom="true" data-icon-name="Family Owned & Operated.svg"> <defs> <style>.d-1244808775{stroke-linecap:round;}.d,.e-1244808775{fill:none;stroke:#37464c;stroke-linejoin:round;stroke-width:2px;}</style> </defs> <g id="a"></g> <g id="b"> <g id="c"> <g> <polyline class="d-1244808775" points="1 38 4 35 17 48 14 51"></polyline> <path class="d-1244808775" d="M38.92,35.38l7.54-4.02c1.26-.65,2.85-.43,3.78,.64,1.26,1.46,.88,3.62-.68,4.59l-14.61,9.18c-1.28,.8-2.75,1.23-4.26,1.23h-11.28c-.91,0-1.77,.36-2.41,1h0"></path> <path class="d-1244808775" d="M23,39h12.83c1.62,0,3.08-1.22,3.17-2.84,.09-1.73-1.29-3.16-3-3.16h-9.73c-.73,0-1.43-.2-2.06-.57-1-.59-2.97-1.43-6.21-1.43-7,0-12,6-12,6"></path> <path class="e-1244808775" d="M28.99,24.04l-4.89,2.72c-1.37,.76-3.01-.4-2.76-1.95l.98-6.07c.11-.65-.1-1.31-.56-1.78l-4.22-4.35c-1.07-1.1-.45-2.95,1.07-3.19l5.65-.87c.69-.11,1.27-.55,1.57-1.17l2.48-5.3c.67-1.44,2.72-1.44,3.4,0l2.48,5.3c.29,.63,.88,1.07,1.57,1.17l5.66,.87c1.51,.23,2.13,2.08,1.07,3.18l-4.23,4.35c-.46,.47-.67,1.13-.56,1.78l.98,6.07c.25,1.55-1.39,2.72-2.76,1.95l-4.89-2.72c-.63-.35-1.39-.35-2.02,0Z"></path> </g> </g> </g> </svg> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1522998675"><p class="text-align-center m-size-16 size-20" style="line-height: 1.5;"><span class="font-size-20 m-font-size-16" style="display: unset; color: rgb(156, 10, 0); font-weight: bold;">Family Owned & Operated</span></p></div> </div> </div> </div> <div class="u_1446214792 dmRespRow" id="1446214792"> <div class="dmRespColsWrapper" id="1038102632"> <div class="u_1964570588 dmRespCol small-12 large-undefined medium-undefined" id="1964570588"> <div class="graphicWidget u_1785643874" data-element-type="graphic" data-widget-type="graphic" id="1785643874" data-layout="graphic-style-2"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 40 52" id="1473661034" class="svg u_1473661034" data-icon-custom="true" data-icon-name="Locally Owned.svg"> <defs> <style>.d-1473661034{fill:none;stroke:#37464c;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style> </defs> <g id="a"></g> <g id="b"> <g id="c"> <g> <line class="d-1473661034" x1="15" y1="7" x2="25" y2="7"></line> <line class="d-1473661034" x1="7" y1="13" x2="33" y2="13"></line> <line class="d-1473661034" x1="7" y1="19" x2="33" y2="19"></line> <line class="d-1473661034" x1="7" y1="25" x2="33" y2="25"></line> <line class="d-1473661034" x1="7" y1="35" x2="15" y2="35"></line> <line class="d-1473661034" x1="7" y1="41" x2="15" y2="41"></line> <circle class="d-1473661034" cx="27" cy="37" r="6"></circle> <polyline class="d-1473661034" points="23 41.46 23 51 27 49 31 51 31 41.46"></polyline> <path class="d-1473661034" d="M19,49H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3H36c1.66,0,3,1.34,3,3V46c0,1.66-1.34,3-3,3h-1"></path> </g> </g> </g> </svg> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021344403"><p class="text-align-center m-size-16 size-20" style="line-height: 1.5;"><span class="font-size-20 m-font-size-16" style="display: unset; color: rgb(156, 10, 0); font-weight: bold;">Locally Owned</span></p></div> </div> <div class="u_1645234837 dmRespCol small-12 large-undefined medium-undefined" id="1645234837"> <div class="graphicWidget u_1627723868" data-element-type="graphic" data-widget-type="graphic" id="1627723868" data-layout="graphic-style-2"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 52 52" id="1977503625" class="svg u_1977503625" data-icon-custom="true" data-icon-name="Well-Trained Expert Crew.svg"> <defs> <style>.d-1977503625{stroke-linecap:round;}.d,.e-1977503625{fill:none;stroke:#37464c;stroke-linejoin:round;stroke-width:2px;}</style> </defs> <g id="a"></g> <g id="b"> <g id="c"> <g> <g> <line class="d-1977503625" x1="43.85" y1="37.5" x2="49.49" y2="39.55"></line> <line class="d-1977503625" x1="2.51" y1="22.45" x2="8.15" y2="24.5"></line> <line class="d-1977503625" x1="40.55" y1="43.21" x2="45.15" y2="47.07"></line> <line class="d-1977503625" x1="6.85" y1="14.93" x2="11.45" y2="18.79"></line> <line class="d-1977503625" x1="11.45" y1="43.21" x2="6.85" y2="47.07"></line> <line class="d-1977503625" x1="45.15" y1="14.93" x2="40.55" y2="18.79"></line> <line class="d-1977503625" x1="8.15" y1="37.5" x2="2.51" y2="39.55"></line> <line class="d-1977503625" x1="49.49" y1="22.45" x2="43.85" y2="24.5"></line> <line class="d-1977503625" x1="7" y1="31" x2="1" y2="31"></line> <line class="d-1977503625" x1="51" y1="31" x2="45" y2="31"></line> </g> <line class="d-1977503625" x1="26" y1="33" x2="26" y2="51"></line> <path class="d-1977503625" d="M44.41,2.59c-.78-.78-2.05-.78-2.83,0l-15.59,15.41L10.41,2.59c-.78-.78-2.05-.78-2.83,0-.78,.78-.78,2.05,0,2.83l12.41,12.53V50c0,.55,.45,1,1,1h10c.55,0,1-.45,1-1V17.94l12.41-12.53c.78-.78,.78-2.05,0-2.83Z"></path> <circle class="e-1977503625" cx="26" cy="6" r="5"></circle> </g> </g> </g> </svg> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1021833842"><p class="m-size-16 text-align-center size-20" style="line-height: 1.5;"><span class="m-font-size-16 font-size-20" style="font-weight: bold; color: rgb(156, 10, 0); display: unset;">Well-Trained Expert Crew</span></p></div> </div> </div> </div> </div> </div> </div> <div class="u_1133704186 dmRespRow" style="text-align: center;" id="1133704186"> <div class="dmRespColsWrapper" id="1003099753"> <div class="dmRespCol small-12 medium-12 large-12" id="1812927088"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1580206903"><p class="m-size-16 text-align-center size-20" style="line-height: 1.5;"><span class="m-font-size-16 font-size-20" style="font-weight: normal; display: unset;"><span class="m-font-size-16 font-size-20" style="font-weight: normal; display: unset;">Need more information? Call us at</span> </span><a href="tel:(251) 649-2034 " runtime_url="tel:(251) 649-2034 " type="call" class="m-font-size-16 font-size-20" style="font-weight: bold; display: unset;">(251) 649-2034</a><span single-space="true" class="m-font-size-16 font-size-20" style="font-weight: bold; display: unset;"> <span class="m-font-size-16 font-size-20" style="font-weight: bold; display: unset;"></span> </span><span class="m-font-size-16 font-size-20" style="font-weight: normal; display: unset;">to speak with one of our experts.</span></p></div> <div class="u_1146747197 widget-63ff69 dmCustomWidget" data-lazy-load="true" data-title="" id="1146747197" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="63ff694df42341ba8eef3e40aa45513c" data-widget-version="49" data-widget-config="eyJ2aWRlb0xheW91dCI6InNpbmdsZVZpZGVvIiwidmlkZW9UeXBlIjoiQSIsIkxJRCI6Ijl3Nmx3MHZmeHM5d3g1emYifQ=="></div> </div> </div> </div> </div> </div> </div> </div> <div class="dmFooterContainer"> <div id="fcontainer" class="u_fcontainer f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="250" class="dmFooterResp generalFooter" id="1943048428"> <div class="dmRespRow u_1846572275" id="1846572275"> <div class="dmRespColsWrapper" id="1020708432"> <div class="dmRespCol large-12 medium-12 small-12" id="1357656541"> <div class="dmRespRow u_1687579792" id="1687579792"> <div class="dmRespColsWrapper" id="1047602411"> <div class="dmRespCol large-12 medium-12 small-12 u_1519753666" id="1519753666"> <nav class="u_1061344470 effect-background hide-for-small main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_8" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" id="1061344470" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmNavItemSelected dmUDNavigationItem_00 " target="" data-target-page-alias="" data-auto="selected-page"> <span class="nav-item-text " data-link-text=" Home " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sprinkler-design" class="unifiednav__item dmUDNavigationItem_010101729451 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Design & Installation " data-auto="page-text-style">Design & Installation<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-maintenance" class="unifiednav__item dmUDNavigationItem_01010171300 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Maintenance " data-auto="page-text-style">Fire System Maintenance<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-inspections" class="unifiednav__item dmUDNavigationItem_010101261298 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Inspections " data-auto="page-text-style">Fire System Inspections<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sysem-retrofitting" class="unifiednav__item dmUDNavigationItem_010101911900 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Retrofitting " data-auto="page-text-style">Retrofitting<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/gallery" class="unifiednav__item dmUDNavigationItem_010101905936 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Gallery " data-auto="page-text-style">Gallery<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item dmUDNavigationItem_010101757452 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Contact Us " data-auto="page-text-style">Contact Us<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> <nav class="u_1229229873 effect-text-color unifiednav_vertical hide-for-medium hide-for-large main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="vertical_nav_layout_5" layout-sub="" data-show-vertical-sub-items="HOVER" id="1229229873" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" alt="" data-nav-structure="VERTICAL" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmNavItemSelected dmUDNavigationItem_00 " target="" data-target-page-alias="" data-auto="selected-page"> <span class="nav-item-text " data-link-text=" Home " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sprinkler-design" class="unifiednav__item dmUDNavigationItem_010101729451 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Design & Installation " data-auto="page-text-style">Design & Installation<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-maintenance" class="unifiednav__item dmUDNavigationItem_01010171300 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Maintenance " data-auto="page-text-style">Fire System Maintenance<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-system-inspections" class="unifiednav__item dmUDNavigationItem_010101261298 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Fire System Inspections " data-auto="page-text-style">Fire System Inspections<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/fire-sysem-retrofitting" class="unifiednav__item dmUDNavigationItem_010101911900 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Retrofitting " data-auto="page-text-style">Retrofitting<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/gallery" class="unifiednav__item dmUDNavigationItem_010101905936 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Gallery " data-auto="page-text-style">Gallery<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item dmUDNavigationItem_010101757452 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Contact Us " data-auto="page-text-style">Contact Us<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> <div class="dmDividerWrapper clearfix hasFullWidth u_1130095680" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1130095680"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1142514602"/></div> </div> </div> </div> <div class="dmRespRow u_1209709529" id="1209709529"> <div class="dmRespColsWrapper" id="1238402979"> <div class="dmRespCol large-4 medium-4 small-12 u_1824948919" id="1824948919"> <div class="u_1703614879 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1703614879"> <a href="/" id="1020484159"><img src="https://lirp.cdn-website.com/f0cda112/dms3rep/multi/opt/triple+a+white-423w.png" alt="Triple A Fire Protection Inc." id="1373803522" class="" data-dm-image-path="https://irp.cdn-website.com/f0cda112/dms3rep/multi/triple+a+white.png" width="1513" height="986" title="Triple A Fire Protection Inc." onerror="handleImageLoadError(this)"/></a> </div> <div class="u_1643276281 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1643276281" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="text-align-left" style="line-height: 1.5;"><span style="display: unset; color: rgb(255, 255, 255);">Proudly Servicing Alabama, Arkansas, Florida, Georgia, Louisiana, Mississippi, North Carolina, South Carolina, Tennessee, & Texas.</span></p></div> </div> <div class="dmRespCol small-12 large-4 medium-4 u_1333843336" id="1333843336"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1897252791"><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">CONTACT INFORMATION</span></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1480456224"><p><span class="" style="display: unset; font-weight: normal; color: rgb(255, 255, 255);"><span style="display: unset; font-weight: normal; color: rgb(255, 255, 255);">Address:</span> </span><a href="https://www.google.com/maps/place/8000+Wards+Ln,+Semmes,+AL+36575,+USA/@30.7571981,-88.2325604,17z/data=!3m1!4b1!4m5!3m4!1s0x889bac375e31086d:0x9aac6e8dbe69969!8m2!3d30.7571935!4d-88.2303717" target="_blank" runtime_url="https://www.google.com/maps/place/8000+Wards+Ln,+Semmes,+AL+36575,+USA/@30.7571981,-88.2325604,17z/data=!3m1!4b1!4m5!3m4!1s0x889bac375e31086d:0x9aac6e8dbe69969!8m2!3d30.7571935!4d-88.2303717" type="url" style="display: unset; font-weight: normal; color: rgb(255, 255, 255);">8000 Wards Lane Semmes, Alabama 36575 United States</a></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1799735762"><p><span style="color: rgb(255, 255, 255); display: unset;">Mailing Address: PO Box 1037 Semmes, Alabama 36575</span></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1302732988"><p class="text-align-left m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="display: unset; font-weight: normal; color: rgb(255, 255, 255);"><span class="m-font-size-13 font-size-16" style="display: unset; font-weight: normal; color: rgb(255, 255, 255);">Primary phone number:</span> </span><a href="tel:(251) 649-2034 " target="_blank" type="call" class="m-font-size-13 font-size-16" style="display: unset; font-weight: bold; color: rgb(202, 42, 31);">(251) 649-2034</a></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1856282820"><p><span class="" style="color: rgb(255, 255, 255); display: unset;"><span style="color: rgb(255, 255, 255); display: unset;">Business fax number:</span> </span><a href="tel:(251) 649-2037 " target="_blank" type="call" style="display: unset; font-weight: bold; color: rgb(202, 42, 31);">(251) 649-2037</a></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1435982410" data-styletopreserve="{" background-image":""}"=""><p><span class="" style="color: rgb(255, 255, 255); font-weight: normal; display: unset;"><span style="color: rgb(255, 255, 255); font-weight: normal; display: unset;">Email:</span> </span><a href="mailto:[email protected]" target="_blank" type="email" style="font-weight: bold; display: unset; color: rgb(202, 42, 31);">[email protected]</a></p></div> <div class="u_1901306686 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1901306686"><p style="line-height: 1.5;"><span style="color: rgb(255, 255, 255); display: unset;">Certifications: NICET Sprinkler Designers & Inspectors</span></p></div> <div class="u_1696453473 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1696453473"><p><span style="color: rgb(255, 255, 255); display: unset;">Memberships: Semmes Chamber of Commerce </span></p></div> </div> <div class="dmRespCol small-12 large-4 medium-4 u_1964000204" id="1964000204"> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1365636312"><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">BUSINESS HOURS</span></p></div> <div class="u_1390064207 default dmHoursOfOperation" id="1390064207" dmle_extension="open_hours" data-element-type="open_hours" time_format="12" wr="true" lang="" displaytitle="false" forcedisplay="false" icon="true" surround="true" adwords=""> <dl class="open-hours-data"> <div class="open-hours-item"> <dt day="0">Mon - Fri</dt> <dd> <time>8:00 am</time> - <time>5:00 pm</time> </dd> </div> <div class="open-hours-item"> <dt day="5">Sat - Sun</dt> <dd>Closed</dd> </div> </dl> </div> <div class="u_1234830878 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1234830878" style="text-align: left; display: block;"><p><span style="display: unset; color: rgb(255, 255, 255);">Public holidays: Closed on all Major Holidays </span></p></div> <div class="u_1674001705 align-center text-align-center dmSocialHub gapSpacing" id="1674001705" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://facebook.com/aaafp" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://www.linkedin.com/company/triple-a-fire-protection-inc" target="_blank" dm_dont_rewrite_url="true" aria-label="linkedin" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Linkedin')"> <span class="dmSocialLinkedin icon-linkedin oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://www.google.com/maps/place/Triple+%22A%22+Fire+Protection,+Inc./@30.7571757,-88.2303455,15z/data=!4m2!3m1!1s0x0:0xb9bad8e055c9b765?sa=X&ved=2ahUKEwjOhJ342e75AhW_EVkFHUFTB3kQ_BJ6BAhREAU" target="_blank" dm_dont_rewrite_url="true" aria-label="google_my_business" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'GoogleMyBusiness')"> <span class="dmSocialGoogleMyBusiness dm-social-icons-google-my-business oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://twitter.com/TripleAFirePro1" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Twitter')"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style6" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1400579568"><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">PAYMENT OPTIONS</span></p></div> <div class="widget-b80a9d dmCustomWidget" data-lazy-load="true" data-title="" id="1330538336" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="b80a9dfa6b544a12aea2a86f748d9032" data-widget-version="21" data-widget-config="eyJuZXdMb2dvcyI6dHJ1ZSwiY2FyZExpc3QiOlt7InBheW1lbnRNZXRob2QiOiI2X2Nhc2gifSx7InBheW1lbnRNZXRob2QiOiI3X3BlcnNvbmFsX2NoZWNrIn1dLCJkaXJlY3Rpb24iOiJyb3ciLCJhbGlnbiI6ImxlZnQifQ=="> <div class="cardList row left"> <div class="cardItem" style="width:56px !important;height:37px !important;"><img src="https://cdn.website.thryv.com/-resellers-preview/_widget_builder_files/cash.png" alt="Cash Payment Accepted" onerror="handleImageLoadError(this)"/></div> <div class="cardItem" style="width:56px !important;height:37px !important;"><img src="https://cdn.website.thryv.com/-resellers-preview/_widget_builder_files/check.png" alt="Check Payment Accepted" onerror="handleImageLoadError(this)"/></div> </div> </div> <div class="u_1831202135 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1831202135" data-styletopreserve="{"background-image":""}" background-image":""}"="" style=""><p><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Also Accepts:</span> </span><span style="display: unset; color: rgb(255, 255, 255); font-weight: normal;">ACH </span></p></div> </div> </div> </div> <div class="dmRespRow u_1331353177" id="1331353177"> <div class="dmRespColsWrapper" id="1690900828"> <div class="dmRespCol large-12 medium-12 small-12" id="1342701399"> <div class="dmDividerWrapper clearfix u_1500240539" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1500240539"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1742625844"/></div> <div class="u_1326518110 widget-d3c663 dmCustomWidget" data-lazy-load="" data-title="" id="1326518110" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="d3c66308b2ae4c2eb8bccd831a63a3d8" data-widget-version="77" data-widget-config="eyJ3ZWJDaGF0IjpmYWxzZX0=">Content, including images, displayed on this website is protected by copyright laws. Downloading, republication, retransmission or reproduction of content on this website is strictly prohibited. <a href="https://www.thryv.com/client-terms-of-use/" rel="nofollow" target="_blank">Terms of Use</a> | <a href="https://www.thryv.com/client-privacy-policy/" rel="nofollow" target="_blank">Privacy Policy</a> <style>.dm-social-icons-google-my-business:before { content: '' !important; }</style> </div> </div> </div> </div> </div> </div> </div> </div> <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Add full CSS and Javascript before the close tag of the body if needed --> <!-- Google Fonts Include --> <!-- loadCSS function fonts.jsp--> <link rel="preload" href="https://irp.cdn-website.com/fonts/css2?family=Roboto:wght@100;300;400;500;700;900&family=Montserrat:[email protected]&family=Cabin:[email protected]&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Pacifico:wght@400&family=Barlow:wght@100;200;300;400;500;600;700;800;900&family=Source+Sans+Pro:wght@200;300;400;600;700;900&family=Open+Sans:[email protected]&subset=latin-ext&display=swap" as="style" fetchpriority="low" onload="loadCSS(this)" /> <!-- RT CSS Include d-css-runtime-desktop-one-package-new--> <link rel="preload" as="style" fetchpriority="low" onload="loadCSS(this)" href="https://static.cdn-website.com/mnlt/production/5468/_dm/s/rt/dist/css/d-css-runtime-desktop-one-package-new.min.css" /> <!-- End of RT CSS Include --> <link rel="preload" href="https://irp.cdn-website.com/WIDGET_CSS/1fb698f57ccbf89a4fad56e24bcc9554.css" id="widgetCSS" as="style" fetchpriority="low" onload="loadCSS(this)" /> <!-- Support `img` size attributes --> <style>img[width][height] { height: auto; }</style> <!-- Support showing sticky element on page only --> <style> body[data-page-alias="home"] #dm [data-show-on-page-only="home"] { display: block !important; } </style> <!-- This is populated in Ajax navigation --> <style id="pageAdditionalWidgetsCss" type="text/css"> </style> <!-- Site CSS --> <link rel="preload" href="https://irp.cdn-website.com/f0cda112/files/f0cda112_withFlex_1.min.css?v=12" id="siteGlobalCss" as="style" fetchpriority="low" onload="loadCSS(this)" /> <style id="customWidgetStyle" type="text/css"> </style> <style id="innerPagesStyle" type="text/css"> </style> <style id="additionalGlobalCss" type="text/css" > </style> <!-- Page CSS --> <link rel="preload" href="https://irp.cdn-website.com/f0cda112/files/f0cda112_home_withFlex_1.min.css?v=12" id="homeCssLink" as="style" fetchpriority="low" onload="loadCSS(this)" /> <style id="pagestyle" type="text/css"> </style> <style id="pagestyleDevice" type="text/css"> </style> <!-- Flex Sections CSS --> <style id="globalFontSizeStyle" type="text/css"> .font-size-16, .size-16, .size-16 > font { font-size: 16px !important; }.font-size-24, .size-24, .size-24 > font { font-size: 24px !important; }.font-size-45, .size-45, .size-45 > font { font-size: 45px !important; }.font-size-20, .size-20, .size-20 > font { font-size: 20px !important; } </style> <style id="pageFontSizeStyle" type="text/css"> </style> <!-- ========= JS Section ========= --> <script> var isWLR = true; window.customWidgetsFunctions = {}; window.customWidgetsStrings = {}; window.collections = {}; window.currentLanguage = "ENGLISH" window.isSitePreview = false; </script> <script> window.customWidgetsFunctions["b80a9dfa6b544a12aea2a86f748d9032~21"] = function (element, data, api) { null }; </script> <script> window.customWidgetsFunctions["d3c66308b2ae4c2eb8bccd831a63a3d8~77"] = function (element, data, api) { if (data.config.webchat){ let thryvId = dmAPI.getSiteExternalId(); var integrationId = data.config.integration_id; setTimeout(() => { !(function (o, p, s, e, c) { var i, a, h, u = [], d = []; function t() { var t = "You must provide a supported major version."; try { if (!c) throw new Error(t); var e, n = "https://cdn.smooch.io/", r = "smooch"; if ((e = "string" == typeof this.response ? JSON.parse(this.response) : this.response).url) { var o = p.getElementsByTagName("script")[0], s = p.createElement("script"); s.async = !0; var i = c.match(/([0-9]+).?([0-9]+)?.?([0-9]+)?/), a = i && i[1]; if (i && i[3]) s.src = n + r + "." + c + ".min.js"; else { if (!(4 <= a && e["v" + a])) throw new Error(t); s.src = e["v" + a]; } o.parentNode.insertBefore(s, o); } } catch (e) { e.message === t && console.error(e); } } (o[s] = { init: function () { i = arguments; var t = { then: function (e) { return d.push({ type: "t", next: e }), t; }, catch: function (e) { return d.push({ type: "c", next: e }), t; }, }; return t; }, on: function () { u.push(arguments); }, render: function () { a = arguments; }, destroy: function () { h = arguments; }, }), (o.__onWebMessengerHostReady__ = function (e) { if ((delete o.__onWebMessengerHostReady__, (o[s] = e), i)) for (var t = e.init.apply(e, i), n = 0; n < d.length; n++) { var r = d[n]; t = "t" === r.type ? t.then(r.next) : t.catch(r.next); } a && e.render.apply(e, a), h && e.destroy.apply(e, h); for (n = 0; n < u.length; n++) e.on.apply(e, u[n]); }); var n = new XMLHttpRequest(); n.addEventListener("load", t), n.open("GET", "https://" + e + ".webloader.smooch.io/", !0), (n.responseType = "json"), n.send(); })(window, document, "Smooch", integrationId, "5"); setTimeout(() => { const delegate = { beforeSend(message, data) { const urlParams = new URLSearchParams(window.location.search); const utm_ci = urlParams.get('utm_ci'); const utm_channel = urlParams.get('utm_channel'); const utm_ad = urlParams.get('utm_ad'); const utm_cm = urlParams.get('utm_cm'); if (utm_ci && utm_channel && utm_ad && utm_cm) { message.metadata = { utm_ci, utm_channel, utm_ad, utm_cm }; } return message; } }; Smooch.init({ integrationId: integrationId, delegate: delegate, menuItems: {}, prechatCapture: { enabled: true, enableEmailLinking: true, fields: [ { type: 'email', name: 'email', label: 'Email', placeholder: '[email protected]' }, { type: 'text', name: 'phone', label: 'Phone', placeholder: '555-555-5555' }, { type: 'text', name: 'first_name', label: 'First Name', placeholder: 'first name' }, { type: 'text', name: 'last_name', label: 'Last Name', placeholder: 'last name' } ] }, customText: { prechatCaptureGreetingText: "Hi there,\n\nBefore you begin, please note that a transcript of this chat may be retained.\n\nTo start off, we'd like to know a little bit about you. \n\n By providing your email and mobile number via this chat, you consent to our Terms of Use and Privacy Policy (found in the footer of this site) and to us sending emails and text messages or placing voice calls to you for advertising and marketing purposes. Giving this consent is not required as a condition of purchasing any goods or services." }, }).then( function () { console.log("Script Ran for Sunshine"); }, function (err) { console.log("Script Error for Sunshine"); } ); }, 3000) }, 5000); } // Find the span elements with the specified classes var spans = document.querySelectorAll('.dmSocialGoogleMyBusiness.dm-social-icons-google-my-business'); // Loop through each found span element spans.forEach(function(span) { // Replace inner HTML with SVG code of legal-approved GMB span.innerHTML = '<svg height="2185" width="2500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0.43 1064 928.69"><linearGradient id="a" x1="0%" x2="99.999%" y1="49.999%" y2="49.999%"><stop offset=".03" stop-color="#4079d8"/><stop offset="1" stop-color="#4989f5"/></linearGradient><g fill="none" fill-rule="evenodd"><g fill-rule="nonzero"><rect fill="#4989f5" height="696.14" rx="36.88" width="931" x="53.45" y="232.98"/><path d="M936.81 227.75H100.06c-25.92 0-46.09 200.6-46.09 226.52L512.2 929.12h424.61c26-.071 47.059-21.13 47.13-47.13V274.87c-.077-25.996-21.134-47.049-47.13-47.12z" fill="url(#a)"/><path d="M266.03 349.56h266V.44H305.86z" fill="#3c4ba6"/><path d="M798.03 349.56h-266V.44H758.2zM984.45 66.62l.33 1.19c-.08-.42-.24-.81-.33-1.19z" fill="#7babf7"/><path d="M984.78 67.8l-.33-1.19C976.017 27.993 941.837.455 902.31.43H758.2L798 349.56h266z" fill="#3f51b5"/><path d="M79.61 66.62l-.33 1.19c.08-.42.24-.81.33-1.19z" fill="#7babf7"/><path d="M79.27 67.8l.33-1.19C88.033 27.993 122.213.455 161.74.43h144.12L266 349.56H0z" fill="#7babf7"/></g><path d="M266.48 349.47c0 73.412-59.513 132.925-132.925 132.925S.63 422.882.63 349.47z" fill="#709be0"/><path d="M532.33 349.47c0 73.412-59.513 132.925-132.925 132.925S266.48 422.882 266.48 349.47z" fill="#3c4ba6"/><path d="M798.18 349.47c0 73.412-59.513 132.925-132.925 132.925S532.33 422.882 532.33 349.47z" fill="#709be0"/><path d="M1064 349.47c0 73.412-59.513 132.925-132.925 132.925S798.15 422.882 798.15 349.47z" fill="#3c4ba6"/><path d="M931.08 709.6c-.47-6.33-1.25-12.11-2.36-19.49h-145c0 20.28 0 42.41-.08 62.7h84a73.05 73.05 0 0 1-30.75 46.89s0-.35-.06-.36a88 88 0 0 1-34 13.27 99.85 99.85 0 0 1-36.79-.16 91.9 91.9 0 0 1-34.31-14.87 95.72 95.72 0 0 1-33.73-43.1c-.52-1.35-1-2.71-1.49-4.09v-.15l.13-.1a93 93 0 0 1-.05-59.84A96.27 96.27 0 0 1 718.9 654c23.587-24.399 58.829-33.576 91.32-23.78a83 83 0 0 1 33.23 19.56l28.34-28.34c5-5.05 10.19-9.94 15-15.16a149.78 149.78 0 0 0-49.64-30.74 156.08 156.08 0 0 0-103.83-.91c-1.173.4-2.34.817-3.5 1.25A155.18 155.18 0 0 0 646 651a152.61 152.61 0 0 0-13.42 38.78c-16.052 79.772 32.623 158.294 111.21 179.4 25.69 6.88 53 6.71 78.89.83a139.88 139.88 0 0 0 63.14-32.81c18.64-17.15 32-40 39-64.27a179 179 0 0 0 6.26-63.33z" fill="#fff" fill-rule="nonzero"/></g></svg>'; }); }; </script> <script> window.customWidgetsFunctions["63ff694df42341ba8eef3e40aa45513c~49"] = function (element, data, api) { let matchingValues = []; var videoUrl; let thryvId = dmAPI.getSiteExternalId(); let legPlayer = data.config.useLegPlayer; let targetValue = ''; let vidType = ''; if(data.config.LID){ //use manual ID input if(data.config.videoLayout === 'playList') { targetValue = data.config.LID; vidType = ''; videoUrl = 'https://player.bettervideo.com/p/dex/embed.js?feed=' + targetValue; } if(data.config.videoLayout === 'singleVideo') { targetValue = data.config.LID; vidType = '_' + data.config.videoType; videoUrl = 'https://player.bettervideo.com/p/dex/embed.js?video=' + targetValue + '_' + data.config.videoType; } } else{ //pull Thryv ID from external site ID if(data.config.videoLayout === 'playList') { targetValue = dmAPI.getSiteExternalId(); vidType = ''; videoUrl = 'https://player.bettervideo.com/p/dex/embed.js?feed=' + targetValue; } if(data.config.videoLayout === 'singleVideo') { targetValue = dmAPI.getSiteExternalId(); vidType = '_' + data.config.videoType; videoUrl = 'https://player.bettervideo.com/p/dex/embed.js?video=' + targetValue + '_' + data.config.videoType; } } let playlistValues = ""; // Function to create video player with a given URL function createIframe(ytid) { const iframe = document.createElement('iframe'); iframe.src = "https://www.youtube.com/embed/VIDEO_ID?playlist="+ytid; iframe.width = '100%'; iframe.height = '100%'; return iframe; } async function getVideoValues(x) { //get video values from offsite CSV fetch(`https://hermes.thryv.com/bento/data/youtube_video_ids?id=${x}&api_key=m2RKGmVL9YbWeUFQY5yhatBM`) .then(response => response.json()) .then(data => { const videoIds = data.YoutubeVideoIds; videoIds.forEach((value) => { playlistValues += "," + value; }) if(playlistValues){ const iframe = createIframe(playlistValues); element.appendChild(iframe); } else { //prepare the video script to be appended to the HTML var scriptElem = document.createElement('script'); scriptElem.id = "thryv_vid_player"; scriptElem.src = videoUrl; //check to see if a script is already added to the HTML. append if not. var getVidScript = element.getElementsByTagName("script")[0]; if (typeof getVidScript == "undefined") { element.appendChild(scriptElem); } } ; }) .catch(error => { console.error('Error:', error); }); } getVideoValues(targetValue+vidType); }; </script> <script type="text/javascript"> var d_version = "production_5468"; var build = "2025-05-14T12_49_16"; window['v' + 'ersion'] = d_version; function buildEditorParent() { window.isMultiScreen = true; window.editorParent = {}; window.previewParent = {}; window.assetsCacheQueryParam = "?version=2025-05-14T12_49_16"; try { var _p = window.parent; if (_p && _p.document && _p.$ && _p.$.dmfw) { window.editorParent = _p; } else if (_p.isSitePreview) { window.previewParent = _p; } } catch (e) { } } buildEditorParent(); </script> <!-- Load jQuery --> <script type="text/javascript" id='d-js-jquery' src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> <!-- End Load jQuery --> <!-- Injecting site-wide before scripts --> <!-- End Injecting site-wide to the head --> <script> var _jquery = window.$; var jqueryAliases = ['$', 'jquery', 'jQuery']; jqueryAliases.forEach((alias) => { Object.defineProperty(window, alias, { get() { return _jquery; }, set() { console.warn("Trying to over-write the global jquery object!"); } }); }); window.jQuery.migrateMute = true; </script> <script> window.cookiesNotificationMarkupPreview = 'null'; </script> <!-- HEAD RT JS Include --> <script id='d-js-params'> window.INSITE = window.INSITE || {}; window.INSITE.device = "desktop"; window.rtCommonProps = {}; rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; rtCommonProps["inlineEditGrid.snap"] =true; rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; rtCommonProps["rt.pushnotifs.force.button"] =true; rtCommonProps["common.mapbox.token"] = 'pk.eyJ1IjoiZGFubnliMTIzIiwiYSI6ImNqMGljZ256dzAwMDAycXBkdWxwbDgzeXYifQ.Ck5P-0NKPVKAZ6SH98gxxw'; rtCommonProps["common.mapbox.js.override"] =false; rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; rtCommonProps["isCoverage.test"] =false; rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; rtCommonProps["feature.flag.mappy.kml"] =false; rtCommonProps["common.resources.dist.cdn"] =true; rtCommonProps["common.build.dist.folder"] = 'production/5468'; rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/5468'; rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; rtCommonProps["feature.flag.runOnReadyNewTask"] =true; rtCommonProps["isAutomation.test"] =false; rtCommonProps['common.mapsProvider'] = 'mapbox'; rtCommonProps['common.mapsProvider.version'] = '0.52.0'; rtCommonProps['common.geocodeProvider'] = 'mapbox'; rtCommonProps['common.map.defaults.radiusSize'] = '1500'; rtCommonProps['common.map.defaults.radiusBg'] = 'rgba(255, 255, 255, 0.4)'; rtCommonProps['common.map.defaults.strokeColor'] = 'rgba(255, 255, 255, 1)'; rtCommonProps['common.map.defaults.strokeSize'] = '2'; rtCommonProps['server.for.resources'] = ''; rtCommonProps['feature.flag.lazy.widgets'] = true; rtCommonProps['feature.flag.single.wow'] = false; rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; rtCommonProps['feature.flag.mark.anchors'] = true; rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; rtCommonProps["images.sizes.small"] =160; rtCommonProps["images.sizes.mobile"] =640; rtCommonProps["images.sizes.tablet"] =1280; rtCommonProps["images.sizes.desktop"] =1920; rtCommonProps["modules.resources.cdn"] =true; rtCommonProps["import.images.storage.imageCDN"] = 'https://lirp.cdn-website.com/'; rtCommonProps["feature.flag.runtime.inp.threshold"] =150; rtCommonProps["feature.flag.performance.logs"] =true; rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; // feature flags that's used out of runtime module (in legacy files) rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; window.rtFlags = {}; rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; rtFlags["scripts.widgetCount.enabled"] =true; rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; rtFlags["feature.flag.photo.gallery.exact.size"] =true; rtFlags["geocode.search.localize"] =false; rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; rtFlags["twitter.heightLimit.enabled"] = true; rtFlags["editor.classicHybrid.photogallery.fix"] =true; rtFlags["runtime.lottieOverflow"] =false; rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; rtFlags["contact.form.browserValidation.enabled"] =true; rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; rtFlags["runtime.cwv.report.cls.enabled"] =true; rtFlags["editor.link.on.container"] =true; rtFlags["flex.runtime.popup.with.show"] =true; rtFlags["contact.form.useActiveForm"] =true; rtFlags["runtime.ssr.productStore.internal.observer"] =true; rtFlags["runtime.ssr.productCustomizations"] =true; rtFlags["flex.megaMenu.a11y"] =false; </script> <script src="https://static.cdn-website.com/mnlt/production/5468/_dm/s/rt/dist/scripts/d-js-one-runtime-unified-desktop.min.js" id="d-js-core"></script> <!-- End of HEAD RT JS Include --> <script src="https://static.cdn-website.com/mnlt/production/5468/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> <script> $(window).bind("orientationchange", function (e) { $.layoutManager.initLayout(); }); $(document).resize(function () { }); </script> <script type="text/javascript" id="d_track_campaign"> (function() { if (!window.location.search) { return; } const cleanParams = window.location.search.substring(1); // Strip ? const queryParams = cleanParams.split('&'); const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; const domain = 'domain=' + window.location.hostname; const path = "path=/"; queryParams.forEach((param) => { const [key, value = ''] = param.split('='); if (key.startsWith('utm_')) { const cookieName = "_dm_rt_" + key.substring(4); const cookie = cookieName + "=" + value; const joined = [cookie, expires, domain, path].join(";"); document.cookie = joined; } }); }()); </script> <script type="text/javascript" > var _dm_gaq = {}; var _gaq = _gaq || []; var _dm_insite = []; </script> <script type="text/javascript" id="d_track_sp"> ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); window.dmsnowplow = window.snowplow; dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker appId: 'f0cda112' }); // snowplow queries element styles so we wait until CSS calculations are done. requestAnimationFrame(() => { dmsnowplow('trackPageView'); _dm_insite.forEach((rule) => { // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here // the tracking is in popup.js if (rule.actionName !== "popup") { dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); } window?.waitForDeferred?.('dmAjax', () => { $.DM.events.trigger('event-ruleTriggered', {value: rule}); }); }); }); </script> <div style="display:none;" id="P6iryBW0Wu"></div> <!-- photoswipe markup --> <!-- Root element of PhotoSwipe. Must have class pswp. --> <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <!-- Background of PhotoSwipe. It's a separate element as animating opacity is faster than rgba(). --> <div class="pswp__bg"></div> <!-- Slides wrapper with overflow:hidden. --> <div class="pswp__scroll-wrap"> <!-- Container that holds slides. PhotoSwipe keeps only 3 of them in the DOM to save memory. Don't modify these 3 pswp__item elements, data is added later on. --> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <!-- Controls are self-explanatory. Order can be changed. --> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title="Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button> <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> <!-- element will get class pswp__preloader--active when preloader is running --> <div class="pswp__preloader"> <div class="pswp__preloader__icn"> <div class="pswp__preloader__cut"> <div class="pswp__preloader__donut"></div> </div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"> </button> <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"> </button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div> </div> </div> </div> <div id="fb-root" data-locale="en"></div> <!-- Alias: f0cda112 --> <div class="dmPopupMask" id="dmPopupMask"></div> <div id="dmPopup" class="dmPopup"> <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> <div class="dmPopupTitle"> <span></span> Share by:</div> <div class="data"></div> </div><script id="d_track_personalization"> window?.waitForDeferred?.('dmAjax', () => { // Collects client data and updates cookies used by smart sites window.expireDays = 365; window.visitLength = 30 * 60000; $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); }); </script> <script type="text/javascript"> Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; Parameters.NavigationAreaParams.LessButtonText = 'LESS'; Parameters.HomeLinkText = 'Home'; </script> <!-- End Script tags --> <!-- Begin Body End Markup --> <script src="//mpactions.superpages.com/actionthru/js/dxmscript.min.js" type="text/javascript"> //<![CDATA[ //]]> </script> <div data-inject="thryv_mc_tag"> <script type="text/javascript"> //<![CDATA[ var utag_data = {}; (function(a,b,c,d){ a='https://tags.tiqcdn.com/utag/marketingcenter/common/prod/utag.js'; b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true; a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a); })(); //]]> </script> </div> <div data-inject="heat_map_script_tag"> <script async="" defer="" src="https://d20519brkbo4nz.cloudfront.net/core/lo.js?site-id=72b2a5ea"> </script> </div> <!-- End Body End Markup --> <!-- Site Wide Html Markup --> <!-- Site Wide Html Markup --> <!-- Begin Product Custom HTML Markup --> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { var _extID; var _device = 'desktop'; var _plan = window.Parameters.planID; //set the external ID, if the site is fast migrated or normal site if (typeof(dmAPI) === 'object') { _extID = dmAPI.getSiteExternalId() } else if (typeof(siteDetails) === 'object') { _extID = siteDetails.ExternalUid; } else { _extID = false; } //if site is normal site & mobile visitor if(typeof($.layoutDevice) !== "undefined") { if($.layoutDevice.type === "mobile") { _device = 'mobile'; } } else if(typeof(camilyo.platform)){ _device = camilyo.platform.toLowerCase(); } //if site has an external ID set, load floating widgets if (_extID && _plan !== "1681" && _plan !== "1680") { window.liveSiteAsyncInit = function() { LiveSite.init({ id: _extID, mode: _device }); }; (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = "https://", r = Math.floor(new Date().getTime() / 1000000); if (d.getElementById(id)) { return; } js = d.createElement(s); js.id = id; js.src = p + "widgets.vcdnita.com/assets/livesite.js?" + r; fjs.parentNode.insertBefore(js, fjs); }(document, "script", "livesite-jssdk")); } else { console.log("ExternalID/vID has not been added to site") } }) </script><!-- End Product Custom HTML Markup --> </body> </html>