 <!DOCTYPE html> <html lang="en"> <head> <!-- Begin IDFX Head  --> <!-- be_ixf, sdk, gho--> <meta id="be:sdk" content="dotnet_sdk_1.4.15" /> <meta id="be:timer" content="0ms" /> <meta id="be:orig_url" content="https://www.aprilaire.com/whole-house-products/healthy-air-app/" /> <meta id="be:capsule_url" content="http://ixfd-api.bc0a.com/api/ixf/1.0.0/get_capsule/f00000000176041/1896850792?client=dotnet_sdk&client_version=1.4.15&orig_url=https%3A%2F%2Fwww.aprilaire.com%2Fwhole-house-products%2Fhealthy-air-app%2F&base_url=https%3A%2F%2Fwww.aprilaire.com%2Fwhole-house-products%2Fhealthy-air-app%2F&user_agent=Client%2F34971+CFNetwork%2F1410.0.3+Darwin%2F22.6.0" /> <meta id="be:norm_url" content="https://www.aprilaire.com/whole-house-products/healthy-air-app/" /> <meta id="be:api_dt" content="py_2021; pm_04; pd_05; ph_08; pmh_43; p_epoch:1617637422592" /> <meta id="be:mod_dt" content="py_2021; pm_04; pd_05; ph_08; pmh_43; p_epoch:1617637422592" /> <meta id="be:messages" content="0" /> <script type='text/javascript'>
if (window.BEJSSDKObserver === undefined) {
  (function(BEJSSDKObserver, $, undefined) {
    var observer = void 0;
    var listeners = [];
    var readySet = [];
    var doc = window.document;
    var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;

    function checkSelector(selector, fn, indexList) {
      var elements = doc.querySelectorAll(selector);
  /**
    issues on IE @see https://www.codesd.com/item/javascript-es6-not-a-function-error.html
    elements = Array.from(elements);

    */
    for (var i = 0, len = elements.length; i < len; i++) {
      /* -1 means all instances */
      if (indexList != -1 && !(i in indexList)) {
        continue;
      }
      var element = elements[i];
      for (var j = 0; j < readySet.length; j++) {
        if (readySet[j] == element.className || readySet[j] == element.id) {
          return;
        }
      }
      if (element.className) {
        readySet.push(element.className);
      }
      if (element.id) {
        readySet.push(element.id);
      }

      if (!element.ready || MutationObserver==null) {
        element.ready = true;
        fn.call(element, element);
      }
    }
  }

  function checkListeners() {
    listeners.forEach(function (listener) {
      return checkSelector(listener.selector, listener.fn, listener.indexList);
    });
  }

  function removeListener(selector, fn) {
    var i = listeners.length;
    while (i--) {
      var listener = listeners[i];
      if (listener.selector === selector && listener.fn === fn) {
        listeners.splice(i, 1);
        if (!listeners.length && observer) {
          observer.disconnect();
          observer = null;
        }
      }
    }
  }

/**
 * Fire event on first js selector
 * @param selector string to watch on
 * @param fn       callback function
 * @param index_list can be undefined which means only first one
 *                   or -1 which means all
 *                   or a list of allowable indexes
 */
 BEJSSDKObserver.jsElementReady = function(selector, fn, index_list) {
  if (index_list === undefined) {
    index_list = [];
    index_list.push(0);
  }

  if (MutationObserver != null) {
    if (!observer) {
      observer = new MutationObserver(checkListeners);
      observer.observe(doc.documentElement, {
        childList: true,
        subtree: true
      });
    }
    listeners.push({ selector: selector, fn: fn, indexList: index_list });
  } else {
    /* <= IE8 */
    if (!document.addEventListener) {
      /* log("<=IE8 attachEvent assignment"); */
      document.addEventListener = document.attachEvent;
    }
    document.addEventListener("DOMContentLoaded", function(event) {
      var elements = doc.querySelectorAll(selector);
      for (var i = 0, len = elements.length; i < len; i++) {
        /* -1 means all instances */
        if (index_list != -1 && !(i in index_list)) {
          continue;
        }
        var element = elements[i];
        element.ready = true;
        fn.call(element, element);
      }
    });
  }

  checkSelector(selector, fn, index_list);
  return function () {
    return removeListener(selector, fn);
  };
};
}(window.BEJSSDKObserver = window.BEJSSDKObserver || {}));
}
var jsElementReady = window.BEJSSDKObserver.jsElementReady;

if (window.BELinkBlockGenerator === undefined) {
  (function(BELinkBlockGenerator, $, undefined) {
    BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH = 100;
    BELinkBlockGenerator.MAXIMUM_DESC_LENGTH = 200;

    BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_URL_TYPE = 0;
    BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_HEADLINE_TYPE = 1;
    BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_DESCRIPTION_TYPE = 2;
    BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_IMAGE_TYPE = 3;

    BELinkBlockGenerator.REPLACEMENT_STRATEGY_OVERWRITE = 0;
    BELinkBlockGenerator.REPLACEMENT_STRATEGY_POST_APPEND_ELEMENT = 1;
    BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_ELEMENT = 2;
    BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_PARENT = 3;

    BELinkBlockGenerator.setMaximumHeadlineLength = function(length) {
      BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH = length;
    };

    BELinkBlockGenerator.setMaximumDescriptionLength = function(length) {
      BELinkBlockGenerator.MAXIMUM_DESC_LENGTH = length;
    };

    BELinkBlockGenerator.generateIndividualLinks = function(parentElement, linkStructure, link) {
      var link_level_element_tag = linkStructure[0];
      var link_level_element = document.createElement(link_level_element_tag);
      var link_attribute_dictionary = linkStructure[1];
      var allowable_elements = linkStructure[2];
      var children_link_structures = linkStructure[3];
      for (var link_attribute_key in link_attribute_dictionary) {
        link_level_element.setAttribute(link_attribute_key, link_attribute_dictionary[link_attribute_key]);
      }

      var added_something = false;
      if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_URL_TYPE)>=0) {
        link_level_element.setAttribute('href', link.url);
        added_something = true;
      }
      if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_HEADLINE_TYPE)>=0 && link.h1) {
        var headline_text = link.h1;
        if (headline_text.length > BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH) {
          headline_text = headline_text.substring(0, BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH) + '...';
        }
        var text_node = document.createTextNode(headline_text);
        link_level_element.appendChild(text_node);
        added_something = true;
      }
      if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_DESCRIPTION_TYPE)>=0 && link.desc) {
        var desc_text = link.desc;
        if (desc_text.length > BELinkBlockGenerator.MAXIMUM_DESC_LENGTH) {
          desc_text = desc_text.substring(0, BELinkBlockGenerator.MAXIMUM_DESC_LENGTH) + '...';
        }
        var text_node = document.createTextNode(desc_text);
        link_level_element.appendChild(text_node);
        added_something = true;
      }
      if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_IMAGE_TYPE)>=0 && link.image) {
        link_level_element.setAttribute('src', link.image);
        added_something = true;
      }
/**
    don't emit for empty links, desc, headline, image
    except for parent structures where allowable_length=0
    */
    if (!added_something && allowable_elements.length != 0) {

      return;
    }
    /* go depth first */
    for (var childrenIndex=0; childrenIndex<children_link_structures.length; childrenIndex++) {
      var childLinkStructure = children_link_structures[childrenIndex];
      BELinkBlockGenerator.generateIndividualLinks(link_level_element, childLinkStructure, link);
    }
    parentElement.appendChild(link_level_element);
  };

  BELinkBlockGenerator.insertLinkBlocks = function(targetElement, replacementStrategy, overallStructure, linkStructure, links,
                                                   titleStructure) {
    if (targetElement == null) {
      return;
    }

    if (replacementStrategy == BELinkBlockGenerator.REPLACEMENT_STRATEGY_OVERWRITE) {
      while (targetElement.firstChild) {
        targetElement.removeChild(targetElement.firstChild);
      }
    }

    var previousElement = targetElement;
    for (var i=0;i<overallStructure.length;i++) {
      var level_definition = overallStructure[i];
      var level_element_tag = level_definition[0];
      var level_element = document.createElement(level_element_tag);
      var attribute_dictionary = level_definition[1];
      for (var attribute_key in attribute_dictionary) {
        level_element.setAttribute(attribute_key, attribute_dictionary[attribute_key]);
      }

      /* need to place title structure */
      if (titleStructure && titleStructure[0] == i) {
        var title_element_tag = titleStructure[1];
        var title_element = document.createElement(title_element_tag);
        var title_attribute_dictionary = titleStructure[2];
        var title_text_content = titleStructure[3];
        for (var title_attribute_key in title_attribute_dictionary) {
          title_element.setAttribute(title_attribute_key, title_attribute_dictionary[title_attribute_key]);
        }

        var title_text_node = document.createTextNode(title_text_content);
        title_element.appendChild(title_text_node);


        level_element.appendChild(title_element);
      }

      /* last level place links */
      if (i == overallStructure.length-1) {
        for (var link_i=0; link_i < links.length; link_i++) {
          var link = links[link_i];
          for (var linkStructureIndex=0;linkStructureIndex < linkStructure.length; linkStructureIndex++) {
            BELinkBlockGenerator.generateIndividualLinks(level_element, linkStructure[linkStructureIndex], link)
          }
        }
      }

      /* first level child we need to check placement */
      if (previousElement == targetElement) {
        if (replacementStrategy == BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_ELEMENT) {
          /* 2 means insert right before */
          previousElement.insertBefore(level_element, targetElement.firstChild);
        } else if (replacementStrategy == BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_PARENT) {
          /* 3 means insert right before at parent level */
          var parentElement = previousElement.parentElement;
          parentElement.insertBefore(level_element, previousElement);
        } else {
          previousElement.appendChild(level_element);
        }
      } else {
        previousElement.appendChild(level_element);
      }
      previousElement = level_element;
    }
  };
}(window.BELinkBlockGenerator = window.BELinkBlockGenerator || {}))
};
</script> <style>
.be-ix-link-block .be-related-link-container{padding-left:15px;padding-right:15px;padding-top:30px}
.be-ix-link-block .be-related-link-container .be-label{margin:0;color:#2e2e2e;font-family:GothamNarrowBook;font-size:18px;line-height:normal}
.be-ix-link-block .be-related-link-container .be-list{display:inline-block;list-style:none;margin:0;padding:0;font-family:GothamNarrowBook;font-size:18px;line-height:normal}
.be-ix-link-block .be-related-link-container .be-list .be-list-item{display:inline-block;margin-right:20px;font-size:16px}
.be-ix-link-block .be-related-link-container .be-list .be-list-item:last-child{margin-right:0}
.be-ix-link-block .be-related-link-container .be-list .be-list-item a{color:#2e2e2e!important;font-family:GothamNarrowBook;line-height:normal!important}
@media (max-width: 991px) {
.be-ix-link-block .be-related-link-container{padding-bottom:30px}
}
@media (max-width: 767px) {
.be-ix-link-block .be-related-link-container .be-label{width:100%;margin-bottom:.5rem}
.be-ix-link-block .be-related-link-container .be-list{display:block;width:100%}
.be-ix-link-block .be-related-link-container .be-list .be-list-item{display:block;margin-right:0;font-size:18px}
.be-ix-link-block .be-related-link-container .be-list .be-list-item a{font-size:18px!important}
}
@media (min-width: 768px) {
.be-ix-link-block .be-related-link-container{display:flex}
.be-ix-link-block .be-related-link-container .be-label{display:inline-block;margin-right:20px;flex-basis:170px;flex-grow:0;flex-shrink:0}
.be-ix-link-block .be-related-link-container .be-list{width:auto}
}
</style> <script data-cfasync="false" data-testmode="true" id="marvel" data-customerid="f00000000176041" src="https://marvel-b2-cdn.bc0a.com/marvel.js"></script> <script>
      (function() {
      var bec = document.createElement('script');
      bec.type = 'text/javascript';
      bec.async = true;
      bec.setAttribute("data-id", "bec");
      bec.setAttribute("org-id", "f00000000176041");
      bec.setAttribute("domain", ".aprilaire.com");
      bec.setAttribute("session-timeout", 86400000);
      bec.src = document.location.protocol + '//cdn.b0e8.com/conv_v3.js';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(bec, s);
})();
</script> <!-- End IDFX Head  --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="format-detection" content="telephone=no"> <title>
	Smartphone App for Total Indoor Air Quality | AprilAire
</title> <!-- Google Tag Manager --> <script>
        (function (w, d, s, l, i) {
            w[l] = w[l] || []; w[l].push({
                'gtm.start':
                    new Date().getTime(), event: 'gtm.js'
            }); var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
                    'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'dataLayer', 'GTM-NHN3LXN');</script> <!-- End Google Tag Manager --> <base href="/"> <link href="/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/angular/elements/styles.css" rel="stylesheet" /> <link href="/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/Styles/main.min.css?v=07212023" rel="stylesheet" /> <link href="/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/Styles/custom.css?v=07212023" rel="stylesheet" /> <link href="/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/Styles/header-footer-2023.css?v=07272023" rel="stylesheet" /> <link href="/Sitefinity/WebsiteTemplates/Aprilaire2023/App_Themes/2023/css/custom-2023.css?v=09012023" rel="stylesheet" /> <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]--> <script type="text/javascript">var sf_appPath='/';</script><style type="text/css" media="all">.dynamic_img {
  height: auto;
  width: 100%;
  align: center;
}</style><meta name="Generator" content="Sitefinity 10.2.6604.0 PE" /><link rel="canonical" href="https://www.aprilaire.com/whole-house-products/healthy-air-app" /><meta name="description" content="Control your AprilAire whole-house products from your smartphone. Install your AprilAire Healthy Air App on your smartphone today. " /><meta name="keywords" content="healthy air app, app, thermostat app, aprilaire, aprilaire.com" /></head> <body> <!-- Privacy policy at http://tag.brandcdn.com/privacy --> <script type="text/javascript" src="//tag.brandcdn.com/autoscript/aprilaire_vfdwuk0wnxfvwg89/Aprilaire.js"></script> <!-- Begin IDFX Body  --> <script type='text/javascript'>
    function positionLinkBlock(targetContainer) {
        if (targetContainer != null) {
            var strLinkBlock = '<div class="container-fluid content-block"><div class="be-related-link-container"><div class="be-label">Related Information:</div><ul class="be-list"><li class="be-list-item"><a class="be-related-link" href="https://www.aprilaire.com/whole-house-products/air-purifiers/air-filter-buying-guide">Air Filter Buying Guide</a></li><li class="be-list-item"><a class="be-related-link" href="https://www.aprilaire.com/whole-house-products/air-purifiers">Aprilaire Air Purifiers</a></li><li class="be-list-item"><a class="be-related-link" href="https://www.aprilaire.com/healthy-air">Benefits of Healthy Air</a></li></ul></div></div>';
            targetContainer.insertAdjacentHTML('afterbegin', strLinkBlock);
        }
    }

    jsElementReady('.be-ix-link-block', positionLinkBlock)

</script> <!-- be_ixf, bodystr, _body_open --> <!-- End IDFX Body  --> 


 <!-- Google Tag Manager (noscript) --> <noscript> <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NHN3LXN&gtm_auth=kpmAcuKHz6wevb7LaMxmAg&gtm_preview=env-27&gtm_cookies_win=x"
                height="0" width="0" style="display:none;visibility:hidden"></iframe> </noscript> <!-- End Google Tag Manager (noscript) --> <div class="sfPublicWrapper" id="PublicWrapper"> 

    <div class="container top-bar d-flex">
        <div class="icons-block d-flex">
            <a class="icon-item btn-phone"
               href="tel:8003346011"
               aria-label="Call AprilAire at the phone number 800-334-6011">
                <svg>
                    <use xlink:href="/svg/sprite.svg#nav-contact"></use>
                </svg>
                <span class="visually-hidden">phone</span>
            </a>
            <a class="icon-item btn-cart" href="https://shop.aprilaire.com/cart" aria-label="Your shopping cart">
                <svg>
                    <use xlink:href="/svg/sprite.svg#nav-cart"></use>
                </svg>
                <span class="cart-items">
                    <span class="visually-hidden">cart items</span>
                    <span class="cart-items__number"></span>
                </span>
                <span class="visually-hidden">shopping cart</span>
            </a>
            <a class="icon-item btn-account" href="https://shop.aprilaire.com/account" aria-label="Account">
                <svg>
                    <use xlink:href="/svg/sprite.svg#nav-profile"></use>
                </svg>
                <span class="visually-hidden">Account</span>
            </a>

        </div>

        <form class="d-flex">
            <input class="form-control me-2 txt-search-input" type="search" aria-label="Search" />
            <button class="search-btn" type="submit" aria-label="search button">
                <svg>
                    <use xlink:href="/svg/sprite.svg#nav-search"></use>
                </svg>
            </button>
        </form>
    </div>
    <nav class="navbar navbar-expand-lg">
        <div class="container">
            <a class="navbar-brand" href="/" aria-label="AprilAire Logo">
                <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDEyIiBoZWlnaHQ9IjkxIiB2aWV3Qm94PSIwIDAgNDEyIDkxIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTU0Ljc2NTEgMzYuOTE2MUM1NC4wNTc0IDM4LjAxNDggNDYuNTU3MyAzNi43MDEzIDM3LjUyMTYgMzMuNzEzNUMyOC4yNzM1IDMwLjY1NTUgMTguMTQ2NCAzMC4xMyAxMi4yODE4IDMyLjQwMzFDOC45Nzc1OCAzMy42ODQxIDguOTc3NTggMzMuNjg0MSAxNC4xNyAzMy43NjJDMTcuMDI1OCAzMy44MDQ4IDIzLjgyMzEgMzUuMTcxMyAyOS4yNzUxIDM2Ljc5NzNDMzYuODA4OCAzOS4wNDQ3IDQwLjU4MzUgNDAuODUzMSA0Ny4wMjEyIDQwLjk1NThDNTIuMjM3NyA0MS4zMTA1IDU0LjQ3NjkgMzkuMzk2MSA1NS41MTc4IDQwLjAwNTVDNTYuNTY5MyA0MC42MjEgNTUuNzA5MSAzNS40NTA0IDU0Ljc2NTEgMzYuOTE2MVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNTguMzg5MyA0Ny42OTA5QzU3LjQ2NjEgNDkuMTE5MyA0Ny42ODM1IDQ3LjQxMTcgMzUuODk3OCA0My41Mjc2QzIzLjgzNSAzOS41NTIxIDEwLjYyNTggMzguODY4OSAyLjk3NjMxIDQxLjgyNEMtMS4zMzM1OSA0My40ODkzIC0xLjMzMzU5IDQzLjQ4OTMgNS40MzkxMSA0My41OTA2QzkuMTY0MDkgNDMuNjQ2MiAxOC4wMzAyIDQ1LjQyMjcgMjUuMTQxNSA0Ny41MzY0QzM0Ljk2ODEgNTAuNDU4MSAzOS44OTE2IDUyLjgwOTEgNDguMjg4NSA1Mi45NDI1QzU1LjA5MjcgNTMuNDAzNyA1OC4wMTM0IDUwLjkxNDkgNTkuMzcxMSA1MS43MDcxQzYwLjc0MjUgNTIuNTA3MyA1OS42MjA2IDQ1Ljc4NTUgNTguMzg5MyA0Ny42OTA5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTQwOC41MDggNjNDNDA5LjE3OCA2MyA0MDkuNzc2IDYzLjE0ODIgNDEwLjMwNCA2My40NDQ3QzQxMC44NDIgNjMuNzQxMiA0MTEuMjU5IDY0LjE1ODQgNDExLjU1NSA2NC42OTY1QzQxMS44NTIgNjUuMjIzNSA0MTIgNjUuODI3NSA0MTIgNjYuNTA4MkM0MTIgNjcuMTc4IDQxMS44NTIgNjcuNzc2NSA0MTEuNTU1IDY4LjMwMzVDNDExLjI1OSA2OC44MzA2IDQxMC44NDIgNjkuMjQ3OCA0MTAuMzA0IDY5LjU1NTNDNDA5Ljc3NiA2OS44NTE4IDQwOS4xNzggNzAgNDA4LjUwOCA3MEM0MDcuODM4IDcwIDQwNy4yMzUgNjkuODUxOCA0MDYuNjk2IDY5LjU1NTNDNDA2LjE2OSA2OS4yNDc4IDQwNS43NTIgNjguODMwNiA0MDUuNDQ1IDY4LjMwMzVDNDA1LjE0OCA2Ny43NzY1IDQwNSA2Ny4xNzggNDA1IDY2LjUwODJDNDA1IDY1LjgyNzUgNDA1LjE0OCA2NS4yMjM1IDQwNS40NDUgNjQuNjk2NUM0MDUuNzUyIDY0LjE1ODQgNDA2LjE2OSA2My43NDEyIDQwNi42OTYgNjMuNDQ0N0M0MDcuMjM1IDYzLjE0ODIgNDA3LjgzOCA2MyA0MDguNTA4IDYzWk00MDguNTA4IDY5LjE2QzQwOS4yOTkgNjkuMTYgNDA5LjkzIDY4LjkxODQgNDEwLjQwMiA2OC40MzUzQzQxMC44ODUgNjcuOTQxMiA0MTEuMTI3IDY3LjI5ODggNDExLjEyNyA2Ni41MDgyQzQxMS4xMjcgNjUuNzA2NyA0MTAuODg1IDY1LjA2NDMgNDEwLjQwMiA2NC41ODEyQzQwOS45MyA2NC4wODcxIDQwOS4yOTkgNjMuODQgNDA4LjUwOCA2My44NEM0MDcuNzE4IDYzLjg0IDQwNy4wODYgNjQuMDg3MSA0MDYuNjE0IDY0LjU4MTJDNDA2LjE0MiA2NS4wNjQzIDQwNS45MDYgNjUuNzA2NyA0MDUuOTA2IDY2LjUwODJDNDA1LjkwNiA2Ny4zMDk4IDQwNi4xNDIgNjcuOTUyMiA0MDYuNjE0IDY4LjQzNTNDNDA3LjA4NiA2OC45MTg0IDQwNy43MTggNjkuMTYgNDA4LjUwOCA2OS4xNlpNNDEwLjA1NiA2NS44NDk0QzQxMC4wNTYgNjYuMDkxIDQwOS45OTYgNjYuMjk5NiA0MDkuODc1IDY2LjQ3NTNDNDA5Ljc2NSA2Ni42NTEgNDA5LjYwNiA2Ni43ODI3IDQwOS4zOTggNjYuODcwNkw0MTAuMjU0IDY4LjIyMTJINDA4Ljk2OUw0MDguMjYxIDY2Ljk4NTlINDA4LjE2MlY2OC4yMjEySDQwNy4wNTlWNjQuNjk2NUg0MDguNzg4QzQwOS4xNzMgNjQuNjk2NSA0MDkuNDggNjQuODA2MyA0MDkuNzExIDY1LjAyNTlDNDA5Ljk0MSA2NS4yMzQ1IDQxMC4wNTYgNjUuNTA5IDQxMC4wNTYgNjUuODQ5NFpNNDA4LjE0NiA2Ni4xNjI0SDQwOC42NzNDNDA4Ljc1IDY2LjE2MjQgNDA4LjgxNiA2Ni4xNDA0IDQwOC44NzEgNjYuMDk2NUM0MDguOTI1IDY2LjA1MjUgNDA4Ljk1MyA2NS45ODY3IDQwOC45NTMgNjUuODk4OEM0MDguOTUzIDY1LjczNDEgNDA4Ljg2IDY1LjY1MTggNDA4LjY3MyA2NS42NTE4SDQwOC4xNDZWNjYuMTYyNFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik05OC4yMzM4IDI0LjM0MDRDOTkuODUzOCAyMi4wNjA0IDEwMi4wNzQgMjAuMTcwNCAxMDQuODk0IDE4LjY3MDRDMTA3Ljc3NCAxNy4xMTA0IDExMS4wNDQgMTYuMzMwNCAxMTQuNzA0IDE2LjMzMDRDMTE4Ljk2NCAxNi4zMzA0IDEyMi44MDQgMTcuMzgwNCAxMjYuMjI0IDE5LjQ4MDRDMTI5LjcwNCAyMS41ODA0IDEzMi40MzQgMjQuNTgwNCAxMzQuNDE0IDI4LjQ4MDRDMTM2LjQ1NCAzMi4zMjA0IDEzNy40NzQgMzYuNzkwNCAxMzcuNDc0IDQxLjg5MDRDMTM3LjQ3NCA0Ni45OTA0IDEzNi40NTQgNTEuNTIwNCAxMzQuNDE0IDU1LjQ4MDRDMTMyLjQzNCA1OS4zODA0IDEyOS43MDQgNjIuNDEwNCAxMjYuMjI0IDY0LjU3MDRDMTIyLjgwNCA2Ni43MzA0IDExOC45NjQgNjcuODEwNCAxMTQuNzA0IDY3LjgxMDRDMTExLjA0NCA2Ny44MTA0IDEwNy44MDQgNjcuMDYwNCAxMDQuOTg0IDY1LjU2MDRDMTAyLjIyNCA2NC4wNjA0IDk5Ljk3MzggNjIuMTcwNCA5OC4yMzM4IDU5Ljg5MDRWOTAuNzYwNEg4NS42MzM4VjE3LjE0MDRIOTguMjMzOFYyNC4zNDA0Wk0xMjQuNjA0IDQxLjg5MDRDMTI0LjYwNCAzOC44OTA0IDEyMy45NzQgMzYuMzEwNCAxMjIuNzE0IDM0LjE1MDRDMTIxLjUxNCAzMS45MzA0IDExOS44OTQgMzAuMjUwNCAxMTcuODU0IDI5LjExMDRDMTE1Ljg3NCAyNy45NzA0IDExMy43MTQgMjcuNDAwNCAxMTEuMzc0IDI3LjQwMDRDMTA5LjA5NCAyNy40MDA0IDEwNi45MzQgMjguMDAwNCAxMDQuODk0IDI5LjIwMDRDMTAyLjkxNCAzMC4zNDA0IDEwMS4yOTQgMzIuMDIwNCAxMDAuMDM0IDM0LjI0MDRDOTguODMzOCAzNi40NjA0IDk4LjIzMzggMzkuMDcwNCA5OC4yMzM4IDQyLjA3MDRDOTguMjMzOCA0NS4wNzA0IDk4LjgzMzggNDcuNjgwNCAxMDAuMDM0IDQ5LjkwMDRDMTAxLjI5NCA1Mi4xMjA0IDEwMi45MTQgNTMuODMwNCAxMDQuODk0IDU1LjAzMDRDMTA2LjkzNCA1Ni4xNzA0IDEwOS4wOTQgNTYuNzQwNCAxMTEuMzc0IDU2Ljc0MDRDMTEzLjcxNCA1Ni43NDA0IDExNS44NzQgNTYuMTQwNCAxMTcuODU0IDU0Ljk0MDRDMTE5Ljg5NCA1My43NDA0IDEyMS41MTQgNTIuMDMwNCAxMjIuNzE0IDQ5LjgxMDRDMTIzLjk3NCA0Ny41OTA0IDEyNC42MDQgNDQuOTUwNCAxMjQuNjA0IDQxLjg5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTU5LjIzIDI0Ljg4MDRDMTYwLjg1IDIyLjI0MDQgMTYyLjk1IDIwLjE3MDQgMTY1LjUzIDE4LjY3MDRDMTY4LjE3IDE3LjE3MDQgMTcxLjE3IDE2LjQyMDQgMTc0LjUzIDE2LjQyMDRWMjkuNjUwNEgxNzEuMkMxNjcuMjQgMjkuNjUwNCAxNjQuMjQgMzAuNTgwNCAxNjIuMiAzMi40NDA0QzE2MC4yMiAzNC4zMDA0IDE1OS4yMyAzNy41NDA0IDE1OS4yMyA0Mi4xNjA0VjY3LjAwMDRIMTQ2LjYzVjE3LjE0MDRIMTU5LjIzVjI0Ljg4MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTk1LjYxNyAxNy4xNDA0VjY3LjAwMDRIMTgzLjAxN1YxNy4xNDA0SDE5NS42MTdaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjIwLjY2NSAwLjQwMDM5MVY2Ny4wMDA0SDIwOC4wNjVWMC40MDAzOTFIMjIwLjY2NVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yNzEuNjM0IDU1LjAzMDRIMjQ2LjYxNEwyNDIuNDc0IDY3LjAwMDRIMjI5LjI0NEwyNTEuODM0IDQuMDkwMzlIMjY2LjUwNEwyODkuMDk0IDY3LjAwMDRIMjc1Ljc3NEwyNzEuNjM0IDU1LjAzMDRaTTI2OC4yMTQgNDQuOTUwNEwyNTkuMTI0IDE4LjY3MDRMMjUwLjAzNCA0NC45NTA0SDI2OC4yMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzEwLjEzOCAxNy4xNDA0VjY3LjAwMDRIMjk3LjUzOFYxNy4xNDA0SDMxMC4xMzhaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzM1LjE4NyAyNC44ODA0QzMzNi44MDcgMjIuMjQwNCAzMzguOTA3IDIwLjE3MDQgMzQxLjQ4NyAxOC42NzA0QzM0NC4xMjcgMTcuMTcwNCAzNDcuMTI3IDE2LjQyMDQgMzUwLjQ4NyAxNi40MjA0VjI5LjY1MDRIMzQ3LjE1N0MzNDMuMTk3IDI5LjY1MDQgMzQwLjE5NyAzMC41ODA0IDMzOC4xNTcgMzIuNDQwNEMzMzYuMTc3IDM0LjMwMDQgMzM1LjE4NyAzNy41NDA0IDMzNS4xODcgNDIuMTYwNFY2Ny4wMDA0SDMyMi41ODdWMTcuMTQwNEgzMzUuMTg3VjI0Ljg4MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNDA1LjMyNCA0MC45OTA0QzQwNS4zMjQgNDIuNzkwNCA0MDUuMjA0IDQ0LjQxMDQgNDA0Ljk2NCA0NS44NTA0SDM2OC41MTRDMzY4LjgxNCA0OS40NTA0IDM3MC4wNzQgNTIuMjcwNCAzNzIuMjk0IDU0LjMxMDRDMzc0LjUxNCA1Ni4zNTA0IDM3Ny4yNDQgNTcuMzcwNCAzODAuNDg0IDU3LjM3MDRDMzg1LjE2NCA1Ny4zNzA0IDM4OC40OTQgNTUuMzYwNCAzOTAuNDc0IDUxLjM0MDRINDA0LjA2NEM0MDIuNjI0IDU2LjE0MDQgMzk5Ljg2NCA2MC4xMDA0IDM5NS43ODQgNjMuMjIwNEMzOTEuNzA0IDY2LjI4MDQgMzg2LjY5NCA2Ny44MTA0IDM4MC43NTQgNjcuODEwNEMzNzUuOTU0IDY3LjgxMDQgMzcxLjYzNCA2Ni43NjA0IDM2Ny43OTQgNjQuNjYwNEMzNjQuMDE0IDYyLjUwMDQgMzYxLjA0NCA1OS40NzA0IDM1OC44ODQgNTUuNTcwNEMzNTYuNzg0IDUxLjY3MDQgMzU1LjczNCA0Ny4xNzA0IDM1NS43MzQgNDIuMDcwNEMzNTUuNzM0IDM2LjkxMDQgMzU2Ljc4NCAzMi4zODA0IDM1OC44ODQgMjguNDgwNEMzNjAuOTg0IDI0LjU4MDQgMzYzLjkyNCAyMS41ODA0IDM2Ny43MDQgMTkuNDgwNEMzNzEuNDg0IDE3LjM4MDQgMzc1LjgzNCAxNi4zMzA0IDM4MC43NTQgMTYuMzMwNEMzODUuNDk0IDE2LjMzMDQgMzg5LjcyNCAxNy4zNTA0IDM5My40NDQgMTkuMzkwNEMzOTcuMjI0IDIxLjQzMDQgNDAwLjEzNCAyNC4zNDA0IDQwMi4xNzQgMjguMTIwNEM0MDQuMjc0IDMxLjg0MDQgNDA1LjMyNCAzNi4xMzA0IDQwNS4zMjQgNDAuOTkwNFpNMzkyLjI3NCAzNy4zOTA0QzM5Mi4yMTQgMzQuMTUwNCAzOTEuMDQ0IDMxLjU3MDQgMzg4Ljc2NCAyOS42NTA0QzM4Ni40ODQgMjcuNjcwNCAzODMuNjk0IDI2LjY4MDQgMzgwLjM5NCAyNi42ODA0QzM3Ny4yNzQgMjYuNjgwNCAzNzQuNjM0IDI3LjY0MDQgMzcyLjQ3NCAyOS41NjA0QzM3MC4zNzQgMzEuNDIwNCAzNjkuMDg0IDM0LjAzMDQgMzY4LjYwNCAzNy4zOTA0SDM5Mi4yNzRaIiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIyOTgiIHk9IjIiIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIxODMiIHk9IjIiIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzIgMjUuNUw0NCAyOUw0OCAxN0w2NSA2Ni41SDc5LjVMNTUgM0g0MC41TDMyIDI1LjVaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzMuNSA1N0wyMS41IDU0TDE3IDY2LjVIMzAuNUwzMy41IDU3WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg=="
                     height="91"
                     width="412"
                     alt="AprilAire logo" />
            </a>
            <div class="visible-md navbar--device-cart">
                <a class="icon-item" href="https://shop.aprilaire.com/cart" aria-label="Your shopping cart">
                    <svg>
                        <use xlink:href="/svg/sprite.svg#nav-cart"></use>
                    </svg>
                    <span class="cart-items">
                        <span class="visually-hidden">cart items</span>
                        <span class="cart-items__number"></span>
                    </span>
                    <span class="visually-hidden">shopping cart</span>
                </a>
            </div>
            <button class="navbar-toggler"
                    type="button"
                    data-bs-toggle="collapse"
                    data-bs-target="#navbarSupportedContent"
                    aria-controls="navbarSupportedContent"
                    aria-expanded="false"
                    aria-label="Toggle navigation">
                <span class="navbar-toggler-icon" aria-hidden="true">
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </span>
            </button>

            <div class="collapse navbar-collapse" id="navbarSupportedContent">
                <ul class="navbar-nav me-auto mb-2 mb-lg-0">
                    <li class="nav-item dropdown">
                        <a class="nav-link dropdown-toggle"
                           href="https://shop.aprilaire.com/"
                           id="navbarDropdown0"
                           role="button"
                           data-bs-toggle="dropdown"
                           aria-expanded="false"
                           aria-label="Shop">
                            Shop
                        </a>
                        <div class="dropdown-menu">
                            <div class="dropdown-wrapper">
                                <div class="dropdown-column">
                                    <ul>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/air-filters" aria-label="Air Filters">Air Filters</a>
                                        </li>

                                        <li>
                                            <a href="https://www.aprilaire.com/shop/water-panels" aria-label="Water Panels">Water Panels</a>
                                        </li>
                                        <li>
                                            <a href="https://shop.aprilaire.com/collections/steam-canister" aria-label="Steam Canisters">Steam Canisters</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/air-purifiers" aria-label="Air Purifiers">Air Purifiers</a>
                                        </li>
                                        <li>
                                            <a href="https://shop.aprilaire.com/collections/air-monitors" aria-label="Air Monitors">Air Monitors</a>
                                        </li>
                                        <li>
                                            <a href="https://shop.aprilaire.com/collections/radon" aria-label="Radon">Radon</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/thermostats" aria-label="Thermostats">Thermostats</a>
                                        </li>
                                        <li>
                                            <a href="https://shop.aprilaire.com/collections/air-sanitation" aria-label="UVC">UVC</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/dehumidifiers" aria-label="Dehumidifiers">Dehumidifiers</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/humidifiers" aria-label="Humidifiers">Humidifiers</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/ventilators" aria-label="Ventilators">Ventilators</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/shop/range-hoods" aria-label="Range Hoods">Range Hoods</a>
                                        </li>
                                        <li>
                                            <a href="https://shop-aprilaire.kramermadison.com/" aria-label="Apparel">Apparel</a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </li>

                    <li class="nav-item dropdown">
                        <a class="nav-link dropdown-toggle"
                           href="/systems-and-services"
                           id="navbarDropdown1"
                           role="button"
                           data-bs-toggle="dropdown"
                           aria-expanded="false"
                           aria-label="System and Services">
                            System and Services
                        </a>
                        <div class="dropdown-menu">
                            <div class="dropdown-wrapper d-flex">
                                <div class="dropdown-column">
                                    <p class="dropdown-title">Systems</p>
                                    <ul>
                                        <li>
                                            <a href="https://www.aprilaire.com/aprilaire-healthy-air-system" aria-label="Healthy Air System">Healthy Air System</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/humidifier" aria-label="Humidification">Humidification</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/dehumidifier" aria-label="Dehumidification">Dehumidification</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/thermostats" aria-label="Temperature Control">Temperature Control</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/air-purifiers" aria-label="Air Purification">Air Purification</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/aprilaire-air-filter-guide" aria-label="Air Filter Guide">Air Filter Guide</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/water-panel-guide" aria-label="Water Panel Guide">Water Panel Guide</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/steam-canister" aria-label="Steam Canister">Steam Canister</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/ventilation" aria-label="Fresh Air Ventilation">Fresh Air Ventilation</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/uvc" aria-label="UVC Sanitization">UVC Sanitization</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/radon-mitigation" aria-label="Radon Tests and Fans">Radon Tests and Fans</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/zoning-panels/" aria-label="Zone Control">Zone Control</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/healthy-air-app" aria-label="Healthy Air App">Healthy Air App</a>
                                        </li>
                                    </ul>
                                </div>
                                <div class="dropdown-column">
                                    <p class="dropdown-title">Services</p>
                                    <ul>
                                        <li>
                                            <a href="https://www.aprilaire.com/crawl-space-and-basement-waterproofing" aria-label="Waterproofing">Waterproofing</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/radon-control" aria-label="Radon Mitigation">Radon Mitigation</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/healthy-builders" aria-label="New Homebuilding">New Homebuilding</a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </li>

                    <li class="nav-item dropdown">
                        <a class="nav-link dropdown-toggle"
                           href="https://www.aprilaire.com/why-aprilaire"
                           id="navbarDropdown2"
                           role="button"
                           data-bs-toggle="dropdown"
                           aria-expanded="false"
                           aria-label="About Us">
                            About Us
                        </a>
                        <div class="dropdown-menu">
                            <div class="dropdown-wrapper">
                                <div class="dropdown-column">
                                    <ul>
                                        <li>
                                            <a href="https://www.aprilaire.com/why-aprilaire" aria-label="Why Choose AprilAire">Why Choose AprilAire</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/what-is-healthy-air" aria-label="What is Healthy Air?">What is Healthy Air?</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/careers" aria-label="Careers">Careers</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/aprilaire-awards" aria-label="AprilAire Awards">AprilAire Awards</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/testimonials" aria-label="Testimonials">Testimonials</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/benefits" aria-label="Benefits">Benefits</a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </li>

                    <li class="nav-item dropdown">
                        <a class="nav-link dropdown-toggle"
                           href="/your-air/"
                           id="navbarYourAir"
                           role="button"
                           data-bs-toggle="dropdown"
                           aria-expanded="false"
                           aria-label="Your Air">
                            Your Air
                        </a>
                        <div class="dropdown-menu">
                            <div class="dropdown-wrapper">
                                <div class="dropdown-column">
                                    <ul>
                                        <li>
                                            <a href="/your-air/northeast" aria-label="Northeast">Northeast</a>
                                        </li>
                                        <li>
                                            <a href="/your-air/southeast" aria-label="Southeast">Southeast</a>
                                        </li>
                                        <li>
                                            <a href="/your-air/midwest" aria-label="Midwest">Midwest</a>
                                        </li>
                                        <li>
                                            <a href="/your-air/rockies" aria-label="Rockies">Rockies</a>
                                        </li>
                                        <li>
                                            <a href="/your-air/northwest" aria-label="Northwest">Northwest</a>
                                        </li>
                                        <li>
                                            <a href="/your-air/southwest" aria-label="Southwest">Southwest</a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </li>

                    <li class="nav-item">
                        <a class="nav-link" href="/blog/" aria-label="Blog">Blog</a>
                    </li>

                    <li class="nav-item dropdown">
                        <a class="nav-link dropdown-toggle"
                           href="/contact"
                           id="navbarDropdown4"
                           role="button"
                           data-bs-toggle="dropdown"
                           aria-expanded="false"
                           aria-label="Support">
                            Support
                        </a>
                        <div class="dropdown-menu">
                            <div class="dropdown-wrapper">
                                <div class="dropdown-column">
                                    <ul>
                                        <li>
                                            <a href="https://www.aprilaire.com/contact" aria-label="Contact Us">Contact Us</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/owner-center/warranty-registration" aria-label="Warranty Registration">Warranty Registration</a>
                                        </li>
                                        <li><a href="https://www.aprilaire.com/owner-center/frequently-asked-questions" aria-label="FAQs">FAQs</a></li>
                                        <li>
                                            <a href="https://www.aprilaire.com/whole-house-products/healthy-air-app" aria-label="App User Guide">App User Guide</a>
                                        </li>
                                        <li>
                                            <a href="https://www.aprilaire.com/owner-center/owners-manuals" aria-label="Owner Manuals">Owner Manuals</a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </li>
                </ul>

                <div class="top-bar visible-md">
                    <div class="search-wrapper d-flex">
                        <div class="icons-block d-flex">
                            <a class="icon-item" href="https://shop.aprilaire.com/account" aria-label="Account">
                                <svg>
                                    <use xlink:href="/svg/sprite.svg#nav-profile"></use>
                                </svg>
                                <span class="visually-hidden">Account</span>
                            </a>
                            <a class="icon-item" href="tel:8003346011" aria-label="Call AprilAire at the phone number 800-334-6011">
                                <svg>
                                    <use xlink:href="/svg/sprite.svg#nav-contact"></use>
                                </svg>
                                <span class="visually-hidden">phone</span>
                            </a>
                        </div>

                        <form class="d-flex">
                            <input class="form-control me-2 txt-search-input" type="search" aria-label="Search" />
                            <button class="search-btn" type="submit" aria-label="search button">
                                <svg>
                                    <use xlink:href="/svg/sprite.svg#nav-search"></use>
                                </svg>
                            </button>
                        </form>
                    </div>

                    <div class="green-block">
                        <a href="/find-a-pro" class="btn green-button" aria-label="Find a pro">Find a pro</a>
                    </div>
                </div>

                <form class="form-desktop find-a-pro-form d-flex">
                    <input class="form-control"
                           type="text"
                           placeholder="Zip/Postal Code"
                           aria-label="Zip/Postal Code" />

                    <button class="btn green-button" type="submit">Find a pro</button>
                </form>
            </div>
        </div>
    </nav>
 
<div class="apr-air-hero small-height">
    <div class="hero-text">
            </div>
    <div class="bk-image">
        <div class="object-fit-ie">
                <div class="img-wrapper">
                    <img src="/images/default-source/default-album/2022-productpageheroes-app8e3b9511bd134924bc0c633c6e836191.jpg" class="object-fit-cover" alt="AprilAire Healthy Air App">
                </div>
        </div>
    </div>
</div><div id="AprilairePage_C009_Col00" class="sf_colsIn container max-width margin-bottom-2" data-sf-element="Container" data-placeholder-label="Container"><div>
    <ul class="sf-breadscrumb breadcrumb">
                <li><a href="/">Homepage </a></li>
                <li><a href="/whole-house-products">Whole-house Products </a></li>
                <li class="active">Healthy Air App</li>
    </ul>
</div>
</div>
<div class="title-hero">
    <div class="container">
        <div class="row">
            <div class="col-sm-12 text-center title-hero-text custom-margin-tb">
                    <h1>AprilAire Healthy Air App</h1>
                                    <h2>Healthy Air, Your Way. Control your home's Indoor Air Quality solutions whenever, wherever.</h2>
            </div>
        </div>
    </div>
</div>


        <div class="apr-ecosystem">
            <div class="container">
                <div class="row">
                    <div class="col-sm-6 intro-block">
                        <span class="margin-bottom-2">
                            Why Choose AprilAire
                        </span>
                        <p>The AprilAire Healthy Air App works with your AprilAire connected devices and provides you with a powerful level of control—no matter where you are.  The new and improved AprilAire Healthy Air App is here! Along with a new look and feel, the Healthy Air App is more intuitive and more reliable than ever before. We’ve upgraded the app’s operating cloud to ensure better connection and operation.</p>
                    </div>
                            <div class="col-sm-6 layout-row layout-column--xs justify-content-between">
                                <div class="blue-print-slide">

                                        <div class="widget-block">
                                                <style type="text/css">
                                                .apr-ecosystem .widget-block a.btn-0511dc39-3c63-4e24-b594-94ce42486e4f {
                                                background-color: #003da5;
                                                }
                                                </style>
                                            
                                                <img class="img-responsive margin-bottom-2" src="https://www.aprilaire.com/images/default-source/default-album/apppage-icons_appguide.png" alt="App Guide" />
                                            <p>
                                                Need help navigating the new Healthy Air App?
                                            </p>
                                            <a href="https://www.aprilaire.com/app-user-guide/" class="button button-green btn-0511dc39-3c63-4e24-b594-94ce42486e4f" title="Learn More">Learn More</a>
                                        </div>
                                        <div class="widget-block">
                                                <style type="text/css">
                                                .apr-ecosystem .widget-block a.btn-86399505-d390-4929-af00-10ae5116dc89 {
                                                background-color: #003da5;
                                                }
                                                </style>
                                            
                                                <img class="img-responsive margin-bottom-2" src="https://www.aprilaire.com/images/default-source/default-album/apppage-icons_faq.png" alt="App FAQ" />
                                            <p>
                                                Get quick answers to common questions.
                                            </p>
                                            <a href="https://www.aprilaire.com/owner-center/frequently-asked-questions" class="button button-green btn-86399505-d390-4929-af00-10ae5116dc89" title="Learn More">Learn More</a>
                                        </div>
                                        <div class="widget-block">
                                                <style type="text/css">
                                                .apr-ecosystem .widget-block a.btn-d5136fef-7ca2-4fc3-86ed-c9c2c9ed5be4 {
                                                background-color: #003da5;
                                                }
                                                </style>
                                            
                                                <img class="img-responsive margin-bottom-2" src="https://www.aprilaire.com/images/default-source/default-album/apppage-icons_quickstart.png" alt="App Quick Start Guide" />
                                            <p>
                                                Quick walkthrough of the AprilAire Healthy Air App.
                                            </p>
                                            <a href="https://rp.widen.net/s/zzrsc6qvwd/aprilaire-wi-fi-thermostat-for-ios-and-android-quick-start-guide-b2206505g" class="button button-green btn-d5136fef-7ca2-4fc3-86ed-c9c2c9ed5be4" title="Learn More">Learn More</a>
                                        </div>
                                        <div class="widget-block">
                                                <style type="text/css">
                                                .apr-ecosystem .widget-block a.btn-16d7d003-d723-4db8-8db2-4f0ec61f4967 {
                                                background-color: #003da5;
                                                }
                                                </style>
                                            
                                                <img class="img-responsive margin-bottom-2" src="https://www.aprilaire.com/images/default-source/default-album/apppage-icons_voiceskills.png" alt="New App Voice Skills" />
                                            <p>
                                                Use Google Home or Amazon Alexa to control your AprilAire Thermostat.
                                            </p>
                                            <a href="https://www.aprilaire.com/whole-house-products/healthy-air-app#skills" class="button button-green btn-16d7d003-d723-4db8-8db2-4f0ec61f4967" title="Learn More">Learn More</a>
                                        </div>
                                </div>
                            </div>

                </div>
            </div>
        </div>



<div class="apr-info-icons">
    <div class="container">
        <div class="layout-row layout-column--xs">
                <div class="info-block layout-column align-items-center margin-bottom-3--xs first-item">
                        <img class="img-responsive margin-bottom-3" src="/images/default-source/icons/apppage-icons_controls.png" alt="Control your home&#39;s whole-house products from anywhere with the AprilAire Healthy Air App">

                        <p class="margin-bottom-3">CONTROL FROM ANYWHERE</p>

                    <p class="margin-bottom-3">
                        Monitor and adjust temperature, humidity, and air quality—even when you&#39;re away
                    </p>

                </div>
                            <div class="info-block layout-column align-items-center margin-bottom-3--xs second-item">
                        <img class="img-responsive margin-bottom-3" src="/images/default-source/icons/apppage-icons_notifications.png" alt="Smartphone Healthy Air App Notifications">

                        <p class="margin-bottom-3">STAY IN THE LOOP</p>

                    <p class="margin-bottom-3">
                        Choose how and when you would like to be notified of various alerts, service reminders, weather updates, seasonal tips, and more.
                    </p>

                </div>

                <div class="info-block layout-column align-items-center margin-bottom-3--xs third-item">
                        <img class="img-responsive margin-bottom-3" src="/images/default-source/icons/apppage-icons_money.png" alt="Save Money with the Healthy Air App">

                        <p class="margin-bottom-3">SAVE MONEY</p>

                    <p class="margin-bottom-3">
                        Healthy Air is good for your wellbeing, and can save you money on energy costs and prevent damage to your indoor environment.
                    </p>

                </div>
        </div>
    </div>
</div>
<a name="airecare" id="airecare"></a><div id="AprilairePage_C048_Col00" class="sf_colsIn container" data-sf-element="Container" data-placeholder-label="Container"><div class="row" data-sf-element="Row">
    <div id="AprilairePage_C047_Col00" class="sf_colsIn col-md-6" data-sf-element="Column 1" data-placeholder-label="Column 1"> 
    <img class="dynamic_img" src="/images/default-source/default-album/aprilaire-airecarec69f8493dac7419798581e3cb9e161b5.png" title="AprilAire-AireCare" alt="AprilAire AireCare" 
                
                 /> 

    </div>
    <div id="AprilairePage_C047_Col01" class="sf_colsIn col-md-6" data-sf-element="Column 2" data-placeholder-label="Column 2">
<div >
    <div ><div style="text-align:left;"><p style="color:#161616;font-family:Poppins-Regular;font-size:6.25rem;line-height:6rem;padding-top:0pt;"><span style="color:#1a1a1a;font-size:3.2rem;">Experiencing Wi-Fi Connection Problems?</span><br /></p></div><p style="text-align:left;font-size:3rem;line-height:4rem;padding-left:0pt;padding-right:35pt;padding-top:35pt;">Download the AprilAire AireCare app to help you troubleshoot any internet and connectivity issues you may encounter at your home network. Keep your home's Healthy Air on track with AprilAire AireCare.</p><p style="text-align:left;font-size:3rem;line-height:4rem;padding-left:0pt;padding-right:75pt;padding-top:35pt;"><a href="https://play.google.com/store/apps/details?id=com.routethis.aprilaire&amp;hl=en_CA&amp;gl=US"><img alt="Google App Download Badge to download the smartphone app Healthy Air App on your Android" data-displaymode="Original" src="/images/default-source/icons/google-download_on_the_app_store_badge_us-uk_wht_092917.png" title="Healthy Air App Google Play Download Icon" /></a>
 <span class="sf-Image-wrapper" data-sfref="[images|OpenAccessDataProvider]c877c14c-b2b3-4c3b-8a01-79aa96ccc27b">&nbsp;&nbsp;</span><a href="https://apps.apple.com/us/app/aire-care/id1641934646"><img alt="Apple App Store Badge to download the smartphone app Healthy Air App on your iPhone" data-displaymode="Original" src="/images/default-source/icons/download_on_the_app_store_badge_us-uk_wht_092917c5e497dce66a49978afe48dca8a7741d.png" title="Healthy Air App Apple App Store Icon" /></a></p><p style="text-align:left;font-size:3rem;line-height:4rem;">&nbsp;</p><p style="text-align:left;font-size:3rem;line-height:4rem;">&nbsp;</p><p style="text-align:left;font-size:3rem;line-height:4rem;color:#003da5;display:inline !important;">&nbsp;</p><div style="text-align:left;"></div></div>    

</div>
    </div>
</div>

</div>

<p id="skills" style="text-align:center;"></p><div id="AprilairePage_C028_Col00" class="sf_colsIn container" data-sf-element="Container" data-placeholder-label="Container">
<div >
    <div ><br /><br /><h2 style="text-align:center;color:#161616;font-family:Poppins-Regular;font-size:6.25rem;">Voice Skills Available</h2><p style="text-align:center;font-size:3rem;line-height:4rem;padding-left:75pt;padding-right:75pt;padding-top:15pt;">To get started, enable the new skill in the Alexa App or add your AprilAire thermostat in the Google Home App and link your AprilAire Wi-Fi Thermostat account. Select your preferred app below for further directions.</p><p style="text-align:center;font-size:3rem;line-height:4rem;">&nbsp;</p><p style="text-align:center;font-size:3rem;line-height:4rem;">&nbsp;</p><p style="text-align:center;font-size:3rem;line-height:4rem;color:#003da5;display:inline !important;">&nbsp;</p><p style="text-align:center;">&nbsp;</p></div>    

</div><div class="row" data-sf-element="Row">
    <div id="AprilairePage_C040_Col00" class="sf_colsIn col-md-3" data-sf-element="Column 1" data-placeholder-label="Column 1">
    </div>
     <div id="AprilairePage_C040_Col01" class="sf_colsIn col-md-3" data-sf-element="Column 2" data-placeholder-label="Column 2">
<div >
    <div ><div style="text-align:center;"><span class="sf-Image-wrapper" data-sfref="[images|OpenAccessDataProvider]1bebc8b2-b9d8-4c32-a35f-be4d6e945e2e"><img alt="Healthy Air App with Amazon Alexa" data-displaymode="Original" src="/images/default-source/default-album/healthyairapp-update-email-alexa.jpg" style="display:block;margin-left:auto;margin-right:auto;" title="HealthyAirApp-Update-Email-Alexa" /></span></div></div>    

</div>
<div >
    <div ><p style="text-align:center;font-size:3rem;line-height:4rem;color:#003da5;"><a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/wifi-thermostat-works-with-amazon-alexa" title="Amazon Alexa Setup">Amazon Alexa Setup</a></p><p style="text-align:center;font-size:3rem;line-height:4rem;color:#003da5;"><a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/wifi-thermostat-works-with-amazon-alexa/amazon-alexa-commands-for-thermostat" title="Amazon Alexa Skills">Amazon Alexa Skills</a></p></div>    

</div>
    </div>
     <div id="AprilairePage_C040_Col02" class="sf_colsIn col-md-3" data-sf-element="Column 3" data-placeholder-label="Column 3">
<div >
    <div ><div style="text-align:center;"><span class="sf-Image-wrapper" data-sfref="[images|OpenAccessDataProvider]30b7ae9c-5bc1-46de-85c3-a4fb492aab4a"><img alt="Google Assistant Healthy Air App" data-displaymode="Original" src="/images/default-source/default-album/healthyairapp-update-email-google.jpg" style="display:block;margin-left:auto;margin-right:auto;" title="HealthyAirApp-Update-Email-Google" /></span></div></div>    

</div>
<div >
    <div ><p style="text-align:center;font-size:3rem;line-height:4rem;color:#003da5;"><a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/wifi-thermostat-works-with-google-assistant">Google Assistant Setup</a></p><p style="text-align:center;font-size:3rem;line-height:4rem;color:#003da5;"><a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/wifi-thermostat-works-with-google-assistant/google-assistant-commands-for-thermostat">Google Assistant Skills</a></p></div>    

</div>
    </div>
     <div id="AprilairePage_C040_Col03" class="sf_colsIn col-md-3" data-sf-element="Column 4" data-placeholder-label="Column 4">
    </div>
</div>
<div class="row" data-sf-element="Row">
    <div id="AprilairePage_C029_Col00" class="sf_colsIn col-md-6" data-sf-element="Column 1" data-placeholder-label="Column 1">
    </div>
    <div id="AprilairePage_C029_Col01" class="sf_colsIn col-md-6" data-sf-element="Column 2" data-placeholder-label="Column 2">
    </div>
</div>

<div >
    <div ><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></div>    

</div>
<div >
    <div ><p style="text-align:center;background-color:#003da5;color:#ffffff;padding:35px;">&nbsp;</p><h2 style="text-align:center;color:#161616;font-family:Poppins-Regular;font-size:6.25rem;background-color:#003da5;color:#ffffff;">Attention Owners of Newly<br />Installed Thermostats</h2><p style="text-align:center;font-size:3rem;line-height:4rem;background-color:#003da5;color:#ffffff;padding:75px;">The AprilAire Healthy Air App on your phone will automatically be updated to this newest version when your new Wi-Fi Thermostat has received its upgrade. All AprilAire connected devices will automatically receive this upgrade.</p><p style="text-align:center;font-size:3rem;line-height:4rem;background-color:#003da5;color:#ffffff;">&nbsp;</p></div>    

</div>
</div>

<div >
    <div ><p>&nbsp;</p><p>&nbsp;</p><br /><br /><br /><br /><h2 style="text-align:center;color:#161616;font-family:Poppins-Regular;font-size:6.25rem;">Download the AprilAire Healthy Air App Today</h2><p style="text-align:center;font-size:3rem;line-height:4rem;">&nbsp;</p></div>    

</div><div class="row" data-sf-element="Row">
    <div id="AprilairePage_C024_Col00" class="sf_colsIn col-md-3" data-sf-element="Column 1" data-placeholder-label="Column 1">
    </div>
     <div id="AprilairePage_C024_Col01" class="sf_colsIn col-md-3" data-sf-element="Column 2" data-placeholder-label="Column 2">
<div >
    <div ><p><a href="https://apps.apple.com/us/app/aprilaire-wi-fi-thermostat-app/id1044963508"><span class="sf-Image-wrapper" data-sfref="[images|OpenAccessDataProvider]57688b11-82d0-4614-a3af-60f5d52b7fe2"><img alt="Apple App Store Badge" data-displaymode="Original" src="/images/default-source/icons/download_on_the_app_store_badge_us-uk_wht_092917c5e497dce66a49978afe48dca8a7741d.png" style="display:block;margin-left:auto;margin-right:auto;" title="Download_on_the_App_Store_Badge_US-UK_wht_092917" /></span></a></p><p><span class="sf-Image-wrapper" data-sfref="[images|OpenAccessDataProvider]c877c14c-b2b3-4c3b-8a01-79aa96ccc27b"><br /></span></p></div>    

</div>
    </div>
     <div id="AprilairePage_C024_Col02" class="sf_colsIn col-md-3" data-sf-element="Column 3" data-placeholder-label="Column 3">
<div >
    <div ><p><a href="https://play.google.com/store/apps/details?id=com.aprilaire.remoteaccess&amp;hl=en_US&amp;gl=US"><span class="sf-Image-wrapper" data-sfref="[images|OpenAccessDataProvider]c877c14c-b2b3-4c3b-8a01-79aa96ccc27b"><img alt="Google App Download Badge" data-displaymode="Original" src="/images/default-source/icons/google-download_on_the_app_store_badge_us-uk_wht_092917.png" style="display:block;margin-left:auto;margin-right:auto;" title="Google-Download_on_the_App_Store_Badge_US-UK_wht_092917" /></span></a></p></div>    

</div>
    </div>
     <div id="AprilairePage_C024_Col03" class="sf_colsIn col-md-3" data-sf-element="Column 4" data-placeholder-label="Column 4">
    </div>
</div>

<div >
    <div ><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></div>    

</div>
<div class="margin-top-5 margin-bottom-5">
    <div class="container">
        <div class="display-flex layout-column--sm layout-column--xs">
                    <div class="col-md-6 col-sm-12">
                        <div class="air-item-reduce grey-bg margin-right-auto">
                                <img class="img-responsive margin-bottom-3 margin-bottom-2--xs" src="https://www.aprilaire.com/images/default-source/default-album/has9c9f2ed802b043408836914d19259135.png" alt="Healthy Air System&#174;">
                            <p class="margin-bottom-3  margin-bottom-2--xs">The AprilAire Healthy Air System<sup>&reg;</sup> provides fresh air ventilation, air purification, humidity control, zoning control, and radon mitigation to fill your home with fresh, clean Healthy Air.</p>
                            <a href="https://www.aprilaire.com/aprilaire-healthy-air-system" class="button button-blue-light">Get Healthy Air</a>
                        </div>
                    </div>
                    <div class="col-md-6 col-sm-12">
                        <div class="air-item-reduce grey-bg margin-right-auto">
<span class="title-block margin-bottom-4 margin-bottom-2--xs"><strong>Energy Savings</strong><br>
Without Sacrifice</span>                            <p class="margin-bottom-3  margin-bottom-2--xs">Integrate convenience and Healthy Air with your programmable thermostat. This innovative Healthy Home solution is an all-in-one device to control all of your home's Indoor Air Quality solutions efficiently.</p>
                            <a href="https://www.aprilaire.com/benefits/energy-efficiency" class="button button-blue-light">Save On Energy</a>
                        </div>
                    </div>

        </div>
    </div>
</div>
<div class="compare-models margin-top-15 margin-bottom-5">
    <div class="container max-width">
        <div class="title-section">
                <h2>See All Compatible AprilAire Wi-Fi Thermostats</h2>
        </div>

        <div class="category-compare-table">
            <div class=" align-center space-above d-flex">
                        <div class="col-md-3 col-xs-6 category-compare-item">
                            <div class="item-content padding-bottom-2 padding-top-2">
                                <a href="https://shop.aprilaire.com/collections/thermostats/products/aprilaire-s86wmupr">
                                        <img src="https://www.aprilaire.com/images/default-source/products/thermostat-icons_s86wmupr-2.jpg" alt="Thermostat Icons S86WMUPR">
                                </a>
                                <a href="https://shop.aprilaire.com/collections/thermostats/products/aprilaire-s86wmupr">S86WMUPR Wi-Fi Thermostat</a>
                            </div>
                        </div>
                        <div class="col-md-3 col-xs-6 category-compare-item">
                            <div class="item-content padding-bottom-2 padding-top-2">
                                <a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/model-8920w">
                                        <img src="https://www.aprilaire.com/images/default-source/default-album/aprilaire-8920w-wi-fi-thermostat-hero-photo--copy.png" alt="aprilaire 8920w thermostat">
                                </a>
                                <a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/model-8920w">8920W Wi-Fi Thermostat</a>
                            </div>
                        </div>
                        <div class="col-md-3 col-xs-6 category-compare-item">
                            <div class="item-content padding-bottom-2 padding-top-2">
                                <a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/model-8910w">
                                        <img src="https://www.aprilaire.com/images/default-source/default-album/aprilaire-8910w-thermostat-front-copyfd02099ebb394f948433266dbf649a45.png" alt="aprilaire 8910w thermostat">
                                </a>
                                <a href="https://www.aprilaire.com/whole-house-products/thermostats/wifi-thermostat/model-8910w">8910W Wi-Fi Thermostat</a>
                            </div>
                        </div>
            </div>
        </div>
    </div>
</div>

        <div class="apr-slider">
            <div class="">
                <div class="slider image-slider">
                        <div class="object-fit-ie">
                            <div class="img-wrapper">
                                    <a href="https://www.aprilaire.com/blog/preparing-for-cold-weather-home-advice-and-hvac-maintenance-tips-from-an-aprilaire-healthy-air-hero/" target="_blank">
                                        <img src="https://ddfbouszjen72.cloudfront.net/blog/wp-content/uploads/2023/09/Header-Winter-Fall-Maintenance_SeanN.webp" class="object-fit-contain" alt="Go to https://www.aprilaire.com/blog/preparing-for-cold-weather-home-advice-and-hvac-maintenance-tips-from-an-aprilaire-healthy-air-hero/">
                                    </a>
                            </div>
                        </div>
                        <div class="object-fit-ie">
                            <div class="img-wrapper">
                                    <a href="https://www.aprilaire.com/blog/managing-summer-humidity-from-the-ground-up/" target="_blank">
                                        <img src="https://ddfbouszjen72.cloudfront.net/blog/wp-content/uploads/2023/06/shutterstock_2118783734.webp" class="object-fit-contain" alt="Go to https://www.aprilaire.com/blog/managing-summer-humidity-from-the-ground-up/">
                                    </a>
                            </div>
                        </div>
                        <div class="object-fit-ie">
                            <div class="img-wrapper">
                                    <a href="https://www.aprilaire.com/blog/healthy-air-checklist-for-buying-a-home/" target="_blank">
                                        <img src="https://ddfbouszjen72.cloudfront.net/blog/wp-content/uploads/2023/04/LUNDSTROM-9855.webp" class="object-fit-contain" alt="Go to https://www.aprilaire.com/blog/healthy-air-checklist-for-buying-a-home/">
                                    </a>
                            </div>
                        </div>
                </div>
                <div class="slider text-slider text-center">
                        <div class="text-item">
                                <h3>
                                    <a href="https://www.aprilaire.com/blog/preparing-for-cold-weather-home-advice-and-hvac-maintenance-tips-from-an-aprilaire-healthy-air-hero/" target="_blank">
                                        Preparing for Cold Weather: Home Advice and HVAC Maintenance Tips From an AprilAire Healthy Air Hero
                                    </a>
                                </h3>
                            <div class="text-slider-controls"></div>
                            <p><p>How can you stay healthy this winter? Chesterfield Service breaks down the HVAC services to explore and shares top HVAC maintenance tips and home advice.</p>
</p>
                        </div>
                        <div class="text-item">
                                <h3>
                                    <a href="https://www.aprilaire.com/blog/managing-summer-humidity-from-the-ground-up/" target="_blank">
                                        Managing Summer Humidity From the Ground Up
                                    </a>
                                </h3>
                            <div class="text-slider-controls"></div>
                            <p><p>As we approach the heat and high humidity of the summer months, let’s look at some best practices for ensuring a Healthy Air environment in your basement and crawl space.</p>
</p>
                        </div>
                        <div class="text-item">
                                <h3>
                                    <a href="https://www.aprilaire.com/blog/healthy-air-checklist-for-buying-a-home/" target="_blank">
                                        Healthy Air Checklist for Buying a Home
                                    </a>
                                </h3>
                            <div class="text-slider-controls"></div>
                            <p><p>The last step in the homebuying process will always be crucial: the inspection. Make sure you don&#8217;t overlook anything with this checklist.</p>
</p>
                        </div>
                </div>

            </div>
        </div>
<div class="apr-get-started col-sm-12" style="background: #000 url(/images/default-source/default-album/apr-lets-get-started-bk.jpg) no-repeat 0 0; background-size: cover;">
    <div class="content-block layout-row layout-column--xs justify-content-center">
        <div class="col-sm-6 left-side">
            <p class="margin-bottom-5"><span>Healthy Air Professionals</span> Who Care</p>
            <ul class="list-block list-unstyled">
                <li class="layout-row align-items-center">
                    <img src="/images/default-source/default-album/custom-evaluations-icon.png" alt="custom-evaluations-icon">
                    <span>Custom Evaluations and Expert Advice</span>
                </li>

                <li class="layout-row align-items-center">
                    <img src="/images/default-source/default-album/professional-installations-icon.png" alt="professional-installations-icon">
                    <span>Professional Installations and Maintenance</span>
                </li>

                <li class="layout-row align-items-center">
                    <img src="/images/default-source/default-album/local-service-icon.png" alt="local-service-icon">
                    <span>Fast and Friendly Local Service</span>
                </li>
            </ul>
        </div>

        <div class="col-sm-6 right-side text-center">
            <h2>Let&#39;s Get Started</h2>
            <p>The first step is simple. Share your zip code below for a comprehensive list of Healthy Air Professionals in your area who can help you establish a healthy home.</p>

            <label for="apr-zip-search" class="sr-only">Let's get started - Search Zip</label>
            <div class="form-group layout-row align-items-center justify-content-center">
                <input type="text" id="apr-zip-search" placeholder="ZIP">
                <button class="button button-blue-light search-find-pro" type="button" data-url="https://www.aprilaire.com/find-a-pro">Find a Pro</button>
            </div>
        </div>
    </div>
</div>
    <footer>
        <div class="container">
            <div class="row">
                <div class="col-lg-6 left-side">
                    <div>
                        <a class="logo-block" href="https://www.aprilaire.com/" aria-label="Aprilaire Logo">
                            <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDEyIiBoZWlnaHQ9IjkxIiB2aWV3Qm94PSIwIDAgNDEyIDkxIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTU0Ljc2NTEgMzYuOTE2MUM1NC4wNTc0IDM4LjAxNDggNDYuNTU3MyAzNi43MDEzIDM3LjUyMTYgMzMuNzEzNUMyOC4yNzM1IDMwLjY1NTUgMTguMTQ2NCAzMC4xMyAxMi4yODE4IDMyLjQwMzFDOC45Nzc1OCAzMy42ODQxIDguOTc3NTggMzMuNjg0MSAxNC4xNyAzMy43NjJDMTcuMDI1OCAzMy44MDQ4IDIzLjgyMzEgMzUuMTcxMyAyOS4yNzUxIDM2Ljc5NzNDMzYuODA4OCAzOS4wNDQ3IDQwLjU4MzUgNDAuODUzMSA0Ny4wMjEyIDQwLjk1NThDNTIuMjM3NyA0MS4zMTA1IDU0LjQ3NjkgMzkuMzk2MSA1NS41MTc4IDQwLjAwNTVDNTYuNTY5MyA0MC42MjEgNTUuNzA5MSAzNS40NTA0IDU0Ljc2NTEgMzYuOTE2MVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNTguMzg5MyA0Ny42OTA5QzU3LjQ2NjEgNDkuMTE5MyA0Ny42ODM1IDQ3LjQxMTcgMzUuODk3OCA0My41Mjc2QzIzLjgzNSAzOS41NTIxIDEwLjYyNTggMzguODY4OSAyLjk3NjMxIDQxLjgyNEMtMS4zMzM1OSA0My40ODkzIC0xLjMzMzU5IDQzLjQ4OTMgNS40MzkxMSA0My41OTA2QzkuMTY0MDkgNDMuNjQ2MiAxOC4wMzAyIDQ1LjQyMjcgMjUuMTQxNSA0Ny41MzY0QzM0Ljk2ODEgNTAuNDU4MSAzOS44OTE2IDUyLjgwOTEgNDguMjg4NSA1Mi45NDI1QzU1LjA5MjcgNTMuNDAzNyA1OC4wMTM0IDUwLjkxNDkgNTkuMzcxMSA1MS43MDcxQzYwLjc0MjUgNTIuNTA3MyA1OS42MjA2IDQ1Ljc4NTUgNTguMzg5MyA0Ny42OTA5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTQwOC41MDggNjNDNDA5LjE3OCA2MyA0MDkuNzc2IDYzLjE0ODIgNDEwLjMwNCA2My40NDQ3QzQxMC44NDIgNjMuNzQxMiA0MTEuMjU5IDY0LjE1ODQgNDExLjU1NSA2NC42OTY1QzQxMS44NTIgNjUuMjIzNSA0MTIgNjUuODI3NSA0MTIgNjYuNTA4MkM0MTIgNjcuMTc4IDQxMS44NTIgNjcuNzc2NSA0MTEuNTU1IDY4LjMwMzVDNDExLjI1OSA2OC44MzA2IDQxMC44NDIgNjkuMjQ3OCA0MTAuMzA0IDY5LjU1NTNDNDA5Ljc3NiA2OS44NTE4IDQwOS4xNzggNzAgNDA4LjUwOCA3MEM0MDcuODM4IDcwIDQwNy4yMzUgNjkuODUxOCA0MDYuNjk2IDY5LjU1NTNDNDA2LjE2OSA2OS4yNDc4IDQwNS43NTIgNjguODMwNiA0MDUuNDQ1IDY4LjMwMzVDNDA1LjE0OCA2Ny43NzY1IDQwNSA2Ny4xNzggNDA1IDY2LjUwODJDNDA1IDY1LjgyNzUgNDA1LjE0OCA2NS4yMjM1IDQwNS40NDUgNjQuNjk2NUM0MDUuNzUyIDY0LjE1ODQgNDA2LjE2OSA2My43NDEyIDQwNi42OTYgNjMuNDQ0N0M0MDcuMjM1IDYzLjE0ODIgNDA3LjgzOCA2MyA0MDguNTA4IDYzWk00MDguNTA4IDY5LjE2QzQwOS4yOTkgNjkuMTYgNDA5LjkzIDY4LjkxODQgNDEwLjQwMiA2OC40MzUzQzQxMC44ODUgNjcuOTQxMiA0MTEuMTI3IDY3LjI5ODggNDExLjEyNyA2Ni41MDgyQzQxMS4xMjcgNjUuNzA2NyA0MTAuODg1IDY1LjA2NDMgNDEwLjQwMiA2NC41ODEyQzQwOS45MyA2NC4wODcxIDQwOS4yOTkgNjMuODQgNDA4LjUwOCA2My44NEM0MDcuNzE4IDYzLjg0IDQwNy4wODYgNjQuMDg3MSA0MDYuNjE0IDY0LjU4MTJDNDA2LjE0MiA2NS4wNjQzIDQwNS45MDYgNjUuNzA2NyA0MDUuOTA2IDY2LjUwODJDNDA1LjkwNiA2Ny4zMDk4IDQwNi4xNDIgNjcuOTUyMiA0MDYuNjE0IDY4LjQzNTNDNDA3LjA4NiA2OC45MTg0IDQwNy43MTggNjkuMTYgNDA4LjUwOCA2OS4xNlpNNDEwLjA1NiA2NS44NDk0QzQxMC4wNTYgNjYuMDkxIDQwOS45OTYgNjYuMjk5NiA0MDkuODc1IDY2LjQ3NTNDNDA5Ljc2NSA2Ni42NTEgNDA5LjYwNiA2Ni43ODI3IDQwOS4zOTggNjYuODcwNkw0MTAuMjU0IDY4LjIyMTJINDA4Ljk2OUw0MDguMjYxIDY2Ljk4NTlINDA4LjE2MlY2OC4yMjEySDQwNy4wNTlWNjQuNjk2NUg0MDguNzg4QzQwOS4xNzMgNjQuNjk2NSA0MDkuNDggNjQuODA2MyA0MDkuNzExIDY1LjAyNTlDNDA5Ljk0MSA2NS4yMzQ1IDQxMC4wNTYgNjUuNTA5IDQxMC4wNTYgNjUuODQ5NFpNNDA4LjE0NiA2Ni4xNjI0SDQwOC42NzNDNDA4Ljc1IDY2LjE2MjQgNDA4LjgxNiA2Ni4xNDA0IDQwOC44NzEgNjYuMDk2NUM0MDguOTI1IDY2LjA1MjUgNDA4Ljk1MyA2NS45ODY3IDQwOC45NTMgNjUuODk4OEM0MDguOTUzIDY1LjczNDEgNDA4Ljg2IDY1LjY1MTggNDA4LjY3MyA2NS42NTE4SDQwOC4xNDZWNjYuMTYyNFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik05OC4yMzM4IDI0LjM0MDRDOTkuODUzOCAyMi4wNjA0IDEwMi4wNzQgMjAuMTcwNCAxMDQuODk0IDE4LjY3MDRDMTA3Ljc3NCAxNy4xMTA0IDExMS4wNDQgMTYuMzMwNCAxMTQuNzA0IDE2LjMzMDRDMTE4Ljk2NCAxNi4zMzA0IDEyMi44MDQgMTcuMzgwNCAxMjYuMjI0IDE5LjQ4MDRDMTI5LjcwNCAyMS41ODA0IDEzMi40MzQgMjQuNTgwNCAxMzQuNDE0IDI4LjQ4MDRDMTM2LjQ1NCAzMi4zMjA0IDEzNy40NzQgMzYuNzkwNCAxMzcuNDc0IDQxLjg5MDRDMTM3LjQ3NCA0Ni45OTA0IDEzNi40NTQgNTEuNTIwNCAxMzQuNDE0IDU1LjQ4MDRDMTMyLjQzNCA1OS4zODA0IDEyOS43MDQgNjIuNDEwNCAxMjYuMjI0IDY0LjU3MDRDMTIyLjgwNCA2Ni43MzA0IDExOC45NjQgNjcuODEwNCAxMTQuNzA0IDY3LjgxMDRDMTExLjA0NCA2Ny44MTA0IDEwNy44MDQgNjcuMDYwNCAxMDQuOTg0IDY1LjU2MDRDMTAyLjIyNCA2NC4wNjA0IDk5Ljk3MzggNjIuMTcwNCA5OC4yMzM4IDU5Ljg5MDRWOTAuNzYwNEg4NS42MzM4VjE3LjE0MDRIOTguMjMzOFYyNC4zNDA0Wk0xMjQuNjA0IDQxLjg5MDRDMTI0LjYwNCAzOC44OTA0IDEyMy45NzQgMzYuMzEwNCAxMjIuNzE0IDM0LjE1MDRDMTIxLjUxNCAzMS45MzA0IDExOS44OTQgMzAuMjUwNCAxMTcuODU0IDI5LjExMDRDMTE1Ljg3NCAyNy45NzA0IDExMy43MTQgMjcuNDAwNCAxMTEuMzc0IDI3LjQwMDRDMTA5LjA5NCAyNy40MDA0IDEwNi45MzQgMjguMDAwNCAxMDQuODk0IDI5LjIwMDRDMTAyLjkxNCAzMC4zNDA0IDEwMS4yOTQgMzIuMDIwNCAxMDAuMDM0IDM0LjI0MDRDOTguODMzOCAzNi40NjA0IDk4LjIzMzggMzkuMDcwNCA5OC4yMzM4IDQyLjA3MDRDOTguMjMzOCA0NS4wNzA0IDk4LjgzMzggNDcuNjgwNCAxMDAuMDM0IDQ5LjkwMDRDMTAxLjI5NCA1Mi4xMjA0IDEwMi45MTQgNTMuODMwNCAxMDQuODk0IDU1LjAzMDRDMTA2LjkzNCA1Ni4xNzA0IDEwOS4wOTQgNTYuNzQwNCAxMTEuMzc0IDU2Ljc0MDRDMTEzLjcxNCA1Ni43NDA0IDExNS44NzQgNTYuMTQwNCAxMTcuODU0IDU0Ljk0MDRDMTE5Ljg5NCA1My43NDA0IDEyMS41MTQgNTIuMDMwNCAxMjIuNzE0IDQ5LjgxMDRDMTIzLjk3NCA0Ny41OTA0IDEyNC42MDQgNDQuOTUwNCAxMjQuNjA0IDQxLjg5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTU5LjIzIDI0Ljg4MDRDMTYwLjg1IDIyLjI0MDQgMTYyLjk1IDIwLjE3MDQgMTY1LjUzIDE4LjY3MDRDMTY4LjE3IDE3LjE3MDQgMTcxLjE3IDE2LjQyMDQgMTc0LjUzIDE2LjQyMDRWMjkuNjUwNEgxNzEuMkMxNjcuMjQgMjkuNjUwNCAxNjQuMjQgMzAuNTgwNCAxNjIuMiAzMi40NDA0QzE2MC4yMiAzNC4zMDA0IDE1OS4yMyAzNy41NDA0IDE1OS4yMyA0Mi4xNjA0VjY3LjAwMDRIMTQ2LjYzVjE3LjE0MDRIMTU5LjIzVjI0Ljg4MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTk1LjYxNyAxNy4xNDA0VjY3LjAwMDRIMTgzLjAxN1YxNy4xNDA0SDE5NS42MTdaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjIwLjY2NSAwLjQwMDM5MVY2Ny4wMDA0SDIwOC4wNjVWMC40MDAzOTFIMjIwLjY2NVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yNzEuNjM0IDU1LjAzMDRIMjQ2LjYxNEwyNDIuNDc0IDY3LjAwMDRIMjI5LjI0NEwyNTEuODM0IDQuMDkwMzlIMjY2LjUwNEwyODkuMDk0IDY3LjAwMDRIMjc1Ljc3NEwyNzEuNjM0IDU1LjAzMDRaTTI2OC4yMTQgNDQuOTUwNEwyNTkuMTI0IDE4LjY3MDRMMjUwLjAzNCA0NC45NTA0SDI2OC4yMTRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzEwLjEzOCAxNy4xNDA0VjY3LjAwMDRIMjk3LjUzOFYxNy4xNDA0SDMxMC4xMzhaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzM1LjE4NyAyNC44ODA0QzMzNi44MDcgMjIuMjQwNCAzMzguOTA3IDIwLjE3MDQgMzQxLjQ4NyAxOC42NzA0QzM0NC4xMjcgMTcuMTcwNCAzNDcuMTI3IDE2LjQyMDQgMzUwLjQ4NyAxNi40MjA0VjI5LjY1MDRIMzQ3LjE1N0MzNDMuMTk3IDI5LjY1MDQgMzQwLjE5NyAzMC41ODA0IDMzOC4xNTcgMzIuNDQwNEMzMzYuMTc3IDM0LjMwMDQgMzM1LjE4NyAzNy41NDA0IDMzNS4xODcgNDIuMTYwNFY2Ny4wMDA0SDMyMi41ODdWMTcuMTQwNEgzMzUuMTg3VjI0Ljg4MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNDA1LjMyNCA0MC45OTA0QzQwNS4zMjQgNDIuNzkwNCA0MDUuMjA0IDQ0LjQxMDQgNDA0Ljk2NCA0NS44NTA0SDM2OC41MTRDMzY4LjgxNCA0OS40NTA0IDM3MC4wNzQgNTIuMjcwNCAzNzIuMjk0IDU0LjMxMDRDMzc0LjUxNCA1Ni4zNTA0IDM3Ny4yNDQgNTcuMzcwNCAzODAuNDg0IDU3LjM3MDRDMzg1LjE2NCA1Ny4zNzA0IDM4OC40OTQgNTUuMzYwNCAzOTAuNDc0IDUxLjM0MDRINDA0LjA2NEM0MDIuNjI0IDU2LjE0MDQgMzk5Ljg2NCA2MC4xMDA0IDM5NS43ODQgNjMuMjIwNEMzOTEuNzA0IDY2LjI4MDQgMzg2LjY5NCA2Ny44MTA0IDM4MC43NTQgNjcuODEwNEMzNzUuOTU0IDY3LjgxMDQgMzcxLjYzNCA2Ni43NjA0IDM2Ny43OTQgNjQuNjYwNEMzNjQuMDE0IDYyLjUwMDQgMzYxLjA0NCA1OS40NzA0IDM1OC44ODQgNTUuNTcwNEMzNTYuNzg0IDUxLjY3MDQgMzU1LjczNCA0Ny4xNzA0IDM1NS43MzQgNDIuMDcwNEMzNTUuNzM0IDM2LjkxMDQgMzU2Ljc4NCAzMi4zODA0IDM1OC44ODQgMjguNDgwNEMzNjAuOTg0IDI0LjU4MDQgMzYzLjkyNCAyMS41ODA0IDM2Ny43MDQgMTkuNDgwNEMzNzEuNDg0IDE3LjM4MDQgMzc1LjgzNCAxNi4zMzA0IDM4MC43NTQgMTYuMzMwNEMzODUuNDk0IDE2LjMzMDQgMzg5LjcyNCAxNy4zNTA0IDM5My40NDQgMTkuMzkwNEMzOTcuMjI0IDIxLjQzMDQgNDAwLjEzNCAyNC4zNDA0IDQwMi4xNzQgMjguMTIwNEM0MDQuMjc0IDMxLjg0MDQgNDA1LjMyNCAzNi4xMzA0IDQwNS4zMjQgNDAuOTkwNFpNMzkyLjI3NCAzNy4zOTA0QzM5Mi4yMTQgMzQuMTUwNCAzOTEuMDQ0IDMxLjU3MDQgMzg4Ljc2NCAyOS42NTA0QzM4Ni40ODQgMjcuNjcwNCAzODMuNjk0IDI2LjY4MDQgMzgwLjM5NCAyNi42ODA0QzM3Ny4yNzQgMjYuNjgwNCAzNzQuNjM0IDI3LjY0MDQgMzcyLjQ3NCAyOS41NjA0QzM3MC4zNzQgMzEuNDIwNCAzNjkuMDg0IDM0LjAzMDQgMzY4LjYwNCAzNy4zOTA0SDM5Mi4yNzRaIiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIyOTgiIHk9IjIiIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIxODMiIHk9IjIiIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzIgMjUuNUw0NCAyOUw0OCAxN0w2NSA2Ni41SDc5LjVMNTUgM0g0MC41TDMyIDI1LjVaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzMuNSA1N0wyMS41IDU0TDE3IDY2LjVIMzAuNUwzMy41IDU3WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg=="
                                 height="91"
                                 width="412"
                                 alt="AprilAire logo" />
                        </a>

                        <div class="row">
                            <div class="col-sm-6">
                                <ul class="list-unstyled">
                                    <li>
                                        <a href="https://shop.aprilaire.com/" aria-label="Shop">Shop</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/systems-and-services" aria-label="Systems and Services">Systems and Services</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/about-aprilaire/careers" aria-label="About Us">About Us</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/your-air" aria-label="Your Air">Your Air</a>
                                    </li>
                                    <li>
                                        <a href="/blog" aria-label="Blog">Blog</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/contact" aria-label="Support">Support</a>
                                    </li>
                                </ul>
                            </div>

                            <div class="col-sm-6">
                                <ul class="list-unstyled">
                                    <li>
                                        <a href="https://www.aprilaire.com/contact" aria-label="Contact Us">Contact Us</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/owner-center/owners-manuals" aria-label="Owner Manuals">Owner Manuals</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/owner-center/warranty-registration" aria-label="Warranty Registration">Warranty Registration</a>
                                    </li>
                                    <li>
                                        <a href="https://www.aprilaire.com/careers" aria-label="Careers">Careers</a>
                                    </li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="col-lg-6 right-side">
                    <div class="column-item">
                        <div class="column-item-content">
                            <strong>AireMail: Delivered</strong>
                            <p>
                                Sign up for our Healthy Air newsletter to make sure you always get
                                the latest Healthy Air solutions and innovations from AprilAire.
                            </p>
                        </div>

                        <form action="">
                            <div class="form-group">
                                <label for="staticEmail2" class="visually-hidden">Email</label>
                                <input autocomplete="email"
                                       type="email"
                                       required
                                       class="form-control txt-email"
                                       id="staticEmail2"
                                       placeholder="email"
                                       name="email" />
                            </div>
                            <div class="form-group">
                                <button type="submit" class="btn green-button">
                                    Join Newsletter
                                </button>
                            </div>
                        </form>
                    </div>
                </div>
                <div class="social-icons col-lg-6">
                    <div>
                        <ul class="list-unstyled d-flex">
                            <li>
                                <a href="https://www.facebook.com/Aprilaire" aria-label="facebook" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                                        <path d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" />
                                    </svg>
                                </a>
                            </li>

                            <li>
                                <a href="https://twitter.com/Aprilaire" aria-label="twitter" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
                                        <path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" />
                                    </svg>
                                </a>
                            </li>

                            <li>
                                <a href="https://www.instagram.com/aprilaireco/" aria-label="instagram" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                                        <path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" />
                                    </svg>
                                </a>
                            </li>

                            <li>
                                <a href="https://www.tiktok.com/@aprilaireco" aria-label="tiktok" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                                        <path d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" />
                                    </svg>
                                </a>
                            </li>

                            <li>
                                <a href="https://www.linkedin.com/company/aprilaire-a-division-of-research-products-corporation/" aria-label="linkedin" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                                        <path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z" />
                                    </svg>
                                </a>
                            </li>

                            <li>
                                <a href="https://www.pinterest.com/aprilaire0250/" aria-label="pinterest" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
                                        <path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" />
                                    </svg>
                                </a>
                            </li>

                            <li>
                                <a href="https://www.youtube.com/user/researchproducts" aria-label="youtube" target="_blank">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
                                        <path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" />
                                    </svg>
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>

                <!-- Begin IDFX Block  -->
                <div class="be-ix-link-block">
                </div>
                <!-- End IDFX Block  -->

                <div class="col-lg-6 right-side-bottom">
                    <div class="column-item">
                        <ul class="list-unstyled d-flex">
                            <li>
                                <a href="https://www.researchproducts.com/" aria-label="Research Products" target="_blank">Research Products</a>
                                <span> | </span>
                            </li>
                            <li>
                                <a href="/aprilaire-privacy-policy" aria-label="Privacy">Privacy</a>
                                <span> | </span>
                            </li>
                            <li>
                                <a href="/aprilaire-legal" aria-label="Legal">Legal</a>
                                <span> | </span>
                            </li>
                            <li>
                                <a href="/site-map" aria-label="Sitemap">Sitemap</a>
                            </li>
                        </ul>

                        <p class="copyright-text">
                            &copy; 2023 AprilAire. Madison, WI USA. All rights reserved.
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </footer>
<div class="row" data-sf-element="Row">
    <div id="AprilairePage_C046_Col00" class="sf_colsIn col-md-6" data-sf-element="Column 1" data-placeholder-label="Column 1">
    </div>
    <div id="AprilairePage_C046_Col01" class="sf_colsIn col-md-6" data-sf-element="Column 2" data-placeholder-label="Column 2">
    </div>
</div>
 
 </div> <script src='/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/JS/vendor.min.js?v=638346186733695365'></script> <script type="text/javascript" async src="https://cdn.reamaze.com/assets/reamaze.js"></script> <script type="text/javascript">
            var _support = _support || { 'ui': {}, 'user': {} };
            _support['account'] = 'aprilaire';
            _support['ui']['contactMode'] = 'traditional';
            _support['ui']['enableKb'] = 'true';
            _support['ui']['styles'] = {
                widgetColor: 'rgb(0, 61, 165)',
                gradient: true,
            };
            _support['ui']['shoutboxFacesMode'] = 'brand-avatar';
            _support['ui']['shoutboxHeaderLogo'] = true;
            _support['ui']['widget'] = {
                img: 'https://rp.widen.net/content/gnca9waxwd/jpeg/aprilaire-chat-blue-logo.jpeg?w=2048&h=2048&position=c&color=ffffffff&quality=100&u=qg0jvc&use=cfrfk',
                displayOn: 'all',
                fontSize: 'default',
                allowBotProcessing: true,
                label: {
                    text: 'Let us know if you have any questions! &#128522;',
                    mode: "none",
                    delay: 3,
                    duration: 25,
                },
                position: 'bottom-right',
                size: '60',
                mobilePosition: 'bottom-right',
                mobileSize: '40'
            };
            _support['apps'] = {
                faq: { "enabled": true },
                recentConversations: {},
                orders: { "enabled": true, "enable_notes": false }
            };
        </script> <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=6LcvxqoUAAAAAPIRsQQuawrIzRQ0aGjokW8vCm58"></script> <script src='/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/JS/app.min.js?v=638346186733695365'></script> <script src='/Sitefinity/WebsiteTemplates/AprilAire/App_Themes/2017/JS/isotope.pkgd.min.js?v=638346186733695365'></script> <script src='/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/JS/custom.js?v=638346186733695365'></script> <script src='/Sitefinity/WebsiteTemplates/AprilAire/App_Themes/2017/JS/header.js?v=638346186733695365' defer></script> <script src='/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/JS/custom-header-footer-2023.min.js?v=638346186733695365'></script> <script src='/Sitefinity/WebsiteTemplates/Aprilaire2019/App_Themes/2019/JS/header-footer-2023.js?v=638346186733695365'></script> <script src='/Sitefinity/WebsiteTemplates/Aprilaire2023/App_Themes/2023/js/custom-2023.js?v=638346186733695365'></script> <script type="text/javascript">
        _linkedin_data_partner_id = "67801";
    </script> <script type="text/javascript">
        (function () {
            var s = document.getElementsByTagName("script")[0];
            var b = document.createElement("script");
            b.type = "text/javascript"; b.async = true;
            b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
            s.parentNode.insertBefore(b, s);
        })();
    </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://dc.ads.linkedin.com/collect/?pid=67801&fmt=gif" /> </noscript> <script type="text/javascript" async
            src="https://cdn.reamaze.com/assets/reamaze.js"></script> </body> </html>
