<!doctype html>
<html class="no-js no-touch" lang="en">
  <head>
   
    <script>
      window.Store = window.Store || {};
      window.Store.id = 86458597655;
    </script>
    
<!-- 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-P98MF6PT');</script>
<!-- End Google Tag Manager -->
    
    <script>

  
  (function() {
      class Ultimate_Shopify_DataLayer {
        constructor() {
          window.dataLayer = window.dataLayer || []; 
          
          // use a prefix of events name
          this.eventPrefix = '';

          //Keep the value false to get non-formatted product ID
          this.formattedItemId = false; 

          // data schema
          this.dataSchema = {
            ecommerce: {
                show: true
            },
            dynamicRemarketing: {
                show: false,
                business_vertical: 'retail'
            }
          }

          // add to wishlist selectors
          this.addToWishListSelectors = {
            'addWishListIcon': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // quick view selectors
          this.quickViewSelector = {
            'quickViewElement': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // mini cart button selector
          this.miniCartButton = [
            'a[href="/cart"]', 
          ];
          this.miniCartAppersOn = 'click';


          // begin checkout buttons/links selectors
          this.beginCheckoutButtons = [
            'input[name="checkout"]',
            'button[name="checkout"]',
            'a[href="/checkout"]',
            '.additional-checkout-buttons',
          ];

          // direct checkout button selector
          this.shopifyDirectCheckoutButton = [
            '.shopify-payment-button'
          ]

          //Keep the value true if Add to Cart redirects to the cart page
          this.isAddToCartRedirect = false;
          
          // keep the value false if cart items increment/decrement/remove refresh page 
          this.isAjaxCartIncrementDecrement = true;
          

          // Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
          this.countryCode = "US";
          this.storeURL = "https://shop.avispl.com";
          localStorage.setItem('shopCountryCode', this.countryCode);
          this.collectData(); 
          this.itemsList = [];
        }

        updateCart() {
          fetch("/cart.js")
          .then((response) => response.json())
          .then((data) => {
            this.cart = data;
          });
        }

       debounce(delay) {         
          let timeoutId;
          return function(func) {
            const context = this;
            const args = arguments;
            
            clearTimeout(timeoutId);
            
            timeoutId = setTimeout(function() {
              func.apply(context, args);
            }, delay);
          };
        }

        eventConsole(eventName, eventData) {
          const css1 = 'background: red; color: #fff; font-size: normal; border-radius: 3px 0 0 3px; padding: 3px 4px;';
          const css2 = 'background-color: blue; color: #fff; font-size: normal; border-radius: 0 3px 3px 0; padding: 3px 4px;';
          console.log('%cGTM DataLayer Event:%c' + eventName, css1, css2, eventData);
        }

        collectData() { 
            this.customerData();
            this.ajaxRequestData();
            this.searchPageData();
            this.miniCartData();
            this.beginCheckoutData();
  
            
  
            
  
            
            
            this.addToWishListData();
            this.quickViewData();
            this.selectItemData(); 
            this.formData();
            this.phoneClickData();
            this.emailClickData();
            this.loginRegisterData();
        }        

        //logged-in customer data 
        customerData() {
            const currentUser = {};
            

            if (currentUser.email) {
              currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            if (currentUser.phone) {
              currentUser.hash_phone = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            window.dataLayer = window.dataLayer || [];
            dataLayer.push({
              customer: currentUser
            });
        }

        // add_to_cart, remove_from_cart, search
        ajaxRequestData() {
          const self = this;
          
          // handle non-ajax add to cart
          if(this.isAddToCartRedirect) {
            document.addEventListener('submit', function(event) {
              const addToCartForm = event.target.closest('form[action="/cart/add"]');
              if(addToCartForm) {
                event.preventDefault();
                
                const formData = new FormData(addToCartForm);
            
                fetch(window.Shopify.routes.root + 'cart/add.js', {
                  method: 'POST',
                  body: formData
                })
                .then(response => {
                    window.location.href = "/cart";
                })
                .catch((error) => {
                  console.error('Error:', error);
                });
              }
            });
          }
          
          // fetch
          let originalFetch = window.fetch;
          let debounce = this.debounce(800);
          
          window.fetch = function () {
            return originalFetch.apply(this, arguments).then((response) => {
              if (response.ok) {
                let cloneResponse = response.clone();
                let requestURL = arguments[0]['url'] || arguments[0];
                
                if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {   
                  const queryString = requestURL.split('?')[1];
                  const urlParams = new URLSearchParams(queryString);
                  const search_term = urlParams.get("q");

                  debounce(function() {
                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                      .then(res => res.json())
                      .then(function(data) {
                            const products = data.resources.results.products;
                            if(products.length) {
                              const fetchRequests = products.map(product =>
                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                  .then(response => response.json())
                                  .catch(error => console.error('Error fetching:', error))
                              );

                              Promise.all(fetchRequests)
                                .then(products => {
                                    const items = products.map((product) => {
                                      return {
                                        product_id: product.id,
                                        product_title: product.title,
                                        variant_id: product.variants[0].id,
                                        variant_title: product.variants[0].title,
                                        vendor: product.vendor,
                                        total_discount: 0,
                                        final_price: product.price_min,
                                        product_type: product.type, 
                                        quantity: 1
                                      }
                                    });

                                    self.ecommerceDataLayer('search', {search_term, items});
                                })
                            }else {
                              self.ecommerceDataLayer('search', {search_term, items: []});
                            }
                      });
                  });
                }
                else if (requestURL.includes("/cart/add")) {
                  cloneResponse.text().then((text) => {
                    let data = JSON.parse(text);

                    if(data.items && Array.isArray(data.items)) {
                      data.items.forEach(function(item) {
                         self.ecommerceDataLayer('add_to_cart', {items: [item]});
                      })
                    } else {
                      self.ecommerceDataLayer('add_to_cart', {items: [data]});
                    }
                    self.updateCart();
                  });
                }else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
                  
                   cloneResponse.text().then((text) => {
                     
                    let newCart = JSON.parse(text);
                    let newCartItems = newCart.items;
                    let oldCartItems = self.cart.items;

                    for(let i = 0; i < oldCartItems.length; i++) {
                      let item = oldCartItems[i];
                      let newItem = newCartItems.find(newItems => newItems.id === item.id);


                      if(newItem) {

                        if(newItem.quantity > item.quantity) {
                          // cart item increment
                          let quantity = (newItem.quantity - item.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                          self.updateCart(); 

                        }else if(newItem.quantity < item.quantity) {
                          // cart item decrement
                          let quantity = (item.quantity - newItem.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                          self.updateCart(); 
                        }
                        

                      }else {
                        self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                        self.updateCart(); 
                      }
                    }
                     
                  });
                }
              }
              return response;
            });
          }
          // end fetch 


          //xhr
          var origXMLHttpRequest = XMLHttpRequest;
          XMLHttpRequest = function() {
            var requestURL;
    
            var xhr = new origXMLHttpRequest();
            var origOpen = xhr.open;
            var origSend = xhr.send;
            
            // Override the `open` function.
            xhr.open = function(method, url) {
                requestURL = url;
                return origOpen.apply(this, arguments);
            };
    
    
            xhr.send = function() {
    
                // Only proceed if the request URL matches what we're looking for.
                if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
        
                    xhr.addEventListener('load', function() {
                        if (xhr.readyState === 4) {
                            if (xhr.status >= 200 && xhr.status < 400) { 

                              if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
                                const queryString = requestURL.split('?')[1];
                                const urlParams = new URLSearchParams(queryString);
                                const search_term = urlParams.get("q");

                                debounce(function() {
                                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                                      .then(res => res.json())
                                      .then(function(data) {
                                            const products = data.resources.results.products;
                                            if(products.length) {
                                              const fetchRequests = products.map(product =>
                                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                                  .then(response => response.json())
                                                  .catch(error => console.error('Error fetching:', error))
                                              );
                
                                              Promise.all(fetchRequests)
                                                .then(products => {
                                                    const items = products.map((product) => {
                                                      return {
                                                        product_id: product.id,
                                                        product_title: product.title,
                                                        variant_id: product.variants[0].id,
                                                        variant_title: product.variants[0].title,
                                                        vendor: product.vendor,
                                                        total_discount: 0,
                                                        final_price: product.price_min,
                                                        product_type: product.type, 
                                                        quantity: 1
                                                      }
                                                    });
                
                                                    self.ecommerceDataLayer('search', {search_term, items});
                                                })
                                            }else {
                                              self.ecommerceDataLayer('search', {search_term, items: []});
                                            }
                                      });
                                  });

                              }

                              else if(requestURL.includes("/cart/add")) {
                                  const data = JSON.parse(xhr.responseText);

                                  if(data.items && Array.isArray(data.items)) {
                                    data.items.forEach(function(item) {
                                        self.ecommerceDataLayer('add_to_cart', {items: [item]});
                                      })
                                  } else {
                                    self.ecommerceDataLayer('add_to_cart', {items: [data]});
                                  }
                                  self.updateCart();
                                 
                               }else if(requestURL.includes("/cart/change")) {
                                 
                                  const newCart = JSON.parse(xhr.responseText);
                                  const newCartItems = newCart.items;
                                  let oldCartItems = self.cart.items;
              
                                  for(let i = 0; i < oldCartItems.length; i++) {
                                    let item = oldCartItems[i];
                                    let newItem = newCartItems.find(newItems => newItems.id === item.id);
              
              
                                    if(newItem) {
                                      if(newItem.quantity > item.quantity) {
                                        // cart item increment
                                        let quantity = (newItem.quantity - item.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                                        self.updateCart(); 
              
                                      }else if(newItem.quantity < item.quantity) {
                                        // cart item decrement
                                        let quantity = (item.quantity - newItem.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                                        self.updateCart(); 
                                      }
                                      
              
                                    }else {
                                      self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                                      self.updateCart(); 
                                    }
                                  }
                               }          
                            }
                        }
                    });
                }
    
                return origSend.apply(this, arguments);
            };
    
            return xhr;
          }; 
          //end xhr
        }

        // search event from search page
        searchPageData() {
          const self = this;
          let pageUrl = window.location.href;
          
          if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {   
            const queryString = pageUrl.split('?')[1];
            const urlParams = new URLSearchParams(queryString);
            const search_term = urlParams.get("q");
                
            fetch(`https://shop.avispl.com/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
            .then(res => res.json())
            .then(function(data) {
                  const products = data.resources.results.products;
                  if(products.length) {
                    const fetchRequests = products.map(product =>
                      fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                        .then(response => response.json())
                        .catch(error => console.error('Error fetching:', error))
                    );
                    Promise.all(fetchRequests)
                    .then(products => {
                        const items = products.map((product) => {
                            return {
                            product_id: product.id,
                            product_title: product.title,
                            variant_id: product.variants[0].id,
                            variant_title: product.variants[0].title,
                            vendor: product.vendor,
                            total_discount: 0,
                            final_price: product.price_min,
                            product_type: product.type, 
                            quantity: 1
                            }
                        });

                        self.ecommerceDataLayer('search', {search_term, items});
                    });
                  }else {
                    self.ecommerceDataLayer('search', {search_term, items: []});
                  }
            });
          }
        }

        // view_cart
        miniCartData() {
          if(this.miniCartButton.length) {
            let self = this;
            if(this.miniCartAppersOn === 'hover') {
              this.miniCartAppersOn = 'mouseenter';
            }
            this.miniCartButton.forEach((selector) => {
              let miniCartButtons = document.querySelectorAll(selector);
              miniCartButtons.forEach((miniCartButton) => {
                  miniCartButton.addEventListener(self.miniCartAppersOn, () => {
                    self.ecommerceDataLayer('view_cart', self.cart);
                  });
              })
            });
          }
        }

        // begin_checkout
        beginCheckoutData() {
          let self = this;
          document.addEventListener('pointerdown', (event) => {
            let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
            if(targetElement) {
              self.ecommerceDataLayer('begin_checkout', self.cart);
            }
          });
        }

        // view_cart, add_to_cart, remove_from_cart
        viewCartPageData() {
          
          this.ecommerceDataLayer('view_cart', this.cart);

          //if cart quantity chagne reload page 
          if(!this.isAjaxCartIncrementDecrement) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              const target = event.target.closest('a[href*="/cart/change?"]');
              if(target) {
                const linkUrl = target.getAttribute('href');
                const queryString = linkUrl.split("?")[1];
                const urlParams = new URLSearchParams(queryString);
                const newQuantity = urlParams.get("quantity");
                const line = urlParams.get("line");
                const cart_id = urlParams.get("id");
        
                
                if(newQuantity && (line || cart_id)) {
                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
        
                  let event = 'add_to_cart';
                  if(newQuantity < item.quantity) {
                    event = 'remove_from_cart';
                  }
        
                  let quantity = Math.abs(newQuantity - item.quantity);
                  item['quantity'] = quantity;
        
                  self.ecommerceDataLayer(event, {items: [item]});
                }
              }
            });
          }
        }

        productSinglePage() {
        
        }

        collectionsPageData() {
          var ecommerce = {
            'items': [
              
              ]
          };

          this.itemsList = ecommerce.items;
          ecommerce['item_list_id'] = null
          ecommerce['item_list_name'] = null

          this.ecommerceDataLayer('view_item_list', ecommerce);
        }
        
        
        // add to wishlist
        addToWishListData() {
          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              
              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
                let pageULR = window.location.href.replace(/\?.+/, '');
                let requestURL = undefined;
          
                if(/\/products\/[^/]+$/.test(pageULR)) {
                  requestURL = pageULR;
                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
                  if(itemElement) {
                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector); 
                    if(linkElement) {
                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                      if(link && /\/products\/[^/]+$/.test(link)) {
                        requestURL = link;
                      }
                    }
                  }
                }

                if(requestURL) {
                  fetch(requestURL + '.json')
                    .then(res => res.json())
                    .then(result => {
                      let data = result.product;                    
                      if(data) {
                        let dataLayerData = {
                          product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                          quantity: 1,
                          final_price: parseFloat(data.variants[0].price) * 100,
                          total_discount: 0,
                          product_type: data.product_type,
                          vendor: data.vendor,
                          variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                          sku: data.variants[0].sku,
                        }

                        self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
                      }
                    });
                }
              }
            });
          }
        }

        quickViewData() {
          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              if(target.closest(self.quickViewSelector.quickViewElement)) {
                let requestURL = undefined;
                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
                
                if(itemElement) {
                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector); 
                  if(linkElement) {
                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                    if(link && /\/products\/[^/]+$/.test(link)) {
                      requestURL = link;
                    }
                  }
                }   
                
                if(requestURL) {
                    fetch(requestURL + '.json')
                      .then(res => res.json())
                      .then(result => {
                        let data = result.product;                    
                        if(data) {
                          let dataLayerData = {
                            product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                            quantity: 1,
                            final_price: parseFloat(data.variants[0].price) * 100,
                            total_discount: 0,
                            product_type: data.product_type,
                            vendor: data.vendor,
                            variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                            sku: data.variants[0].sku,
                          }
  
                          self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
                          self.quickViewVariants = data.variants;
                          self.quickViewedItem = dataLayerData;
                        }
                      });
                  }
              }
            });

            
              if(this.shopifyDirectCheckoutButton.length) {
                let self = this;
                document.addEventListener('pointerdown', (event) => {
                  let target = event.target;
                  let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
                  
                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {

                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
                    if(checkoutForm) {
                        let quantity = 1;
                        let varientInput = checkoutForm.querySelector('input[name="id"]');
                        let quantitySelector = checkoutForm.getAttribute('id');

                        if(quantitySelector) {
                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
                          if(quentityInput) {
                              quantity = +quentityInput.value;
                          }
                        }

                        if(varientInput) {
                            let variant_id = parseInt(varientInput.value);

                            if(variant_id) {
                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
                                if(variant && self.quickViewedItem) {
                                    self.quickViewedItem['variant_id'] = variant_id;
                                    self.quickViewedItem['variant_title'] = variant.title;
                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
                                    self.quickViewedItem['quantity'] = quantity; 
    
                                    self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
                                    self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
                                }
                            }
                        }
                    }

                  }
                }); 
            }
            
          }
        }

        // select_item events
        selectItemData() {
          
          const self = this;
          const items = this.itemsList;

          

          // select item on varient change
          document.addEventListener('variant:change', function(event) {            
            const product_id = event.detail.product.id;
            const variant_id = event.detail.variant.id;
            const vendor = event.detail.product.vendor; 
            const variant_title = event.detail.variant.public_title;
            const product_title = event.detail.product.title;
            const final_price = event.detail.variant.price;
            const product_type = event.detail.product.type;

             const item = {
                product_id: product_id,
                product_title: product_title,
                variant_id: variant_id,
                variant_title: variant_title,
                vendor: vendor,
                final_price: final_price,
                product_type: product_type, 
                quantity: 1
             }
            
             self.ecommerceDataLayer('select_item', {items: [item]});
          });
        }

        // all ecommerce events
        ecommerceDataLayer(event, data) {
          const self = this;
          dataLayer.push({ 'ecommerce': null });
          const dataLayerData = {
            "event": this.eventPrefix + event,
            'ecommerce': {
               'currency': this.cart.currency,
               'items': data.items.map((item, index) => {
                 const dataLayerItem = {
                    'index': index,
                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
                    'product_id': item.product_id.toString(),
                    'variant_id': item.variant_id.toString(),
                    'item_name': item.product_title,
                    'quantity': item.quantity,
                    'price': +((item.final_price / 100).toFixed(2)),
                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0 
                }

                if(item.product_type) {
                  dataLayerItem['item_category'] = item.product_type;
                }
                
                if(item.vendor) {
                  dataLayerItem['item_brand'] = item.vendor;
                }
               
                if(item.variant_title && item.variant_title !== 'Default Title') {
                  dataLayerItem['item_variant'] = item.variant_title;
                }
              
                if(item.sku) {
                  dataLayerItem['sku'] = item.sku;
                }

                if(item.item_list_name) {
                  dataLayerItem['item_list_name'] = item.item_list_name;
                }

                if(item.item_list_id) {
                  dataLayerItem['item_list_id'] = item.item_list_id.toString()
                }

                return dataLayerItem;
              })
            }
          }

          if(data.total_price !== undefined) {
            dataLayerData['ecommerce']['value'] =  +((data.total_price / 100).toFixed(2));
          } else {
            dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + (item.price * item.quantity), 0)).toFixed(2);
          }
          
          if(data.item_list_id) {
            dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
          }
          
          if(data.item_list_name) {
            dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
          }

          if(data.search_term) {
            dataLayerData['search_term'] = data.search_term;
          }

          if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
            dataLayer.push({ 'dynamicRemarketing': null });
            dataLayerData['dynamicRemarketing'] = {
                value: dataLayerData.ecommerce.value,
                items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
            }
          }

          if(!self.dataSchema.ecommerce ||  !self.dataSchema.ecommerce.show) {
            delete dataLayerData['ecommerce'];
          }

          dataLayer.push(dataLayerData);
          self.eventConsole(self.eventPrefix + event, dataLayerData);
        }

        
        // contact form submit & newsletters signup
        formData() {
          const self = this;
          document.addEventListener('submit', function(event) {

            let targetForm = event.target.closest('form[action^="/contact"]');


            if(targetForm) {
              const formData = {
                form_location: window.location.href,
                form_id: targetForm.getAttribute('id'),
                form_classes: targetForm.getAttribute('class')
              };
                            
              let formType = targetForm.querySelector('input[name="form_type"]');
              let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
              
              inputs.forEach(function(input) {
                var inputName = input.name;
                var inputValue = input.value;
                
                if (inputName && inputValue) {
                  var matches = inputName.match(/\[(.*?)\]/);
                  if (matches && matches.length > 1) {
                     var fieldName = matches[1];
                     formData[fieldName] = input.value;
                  }
                }
              });
              
              if(formType && formType.value === 'customer') {
                dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
                self.eventConsole(self.eventPrefix + 'newsletter_signup', { event: self.eventPrefix + 'newsletter_signup', ...formData});

              } else if(formType && formType.value === 'contact') {
                dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
                self.eventConsole(self.eventPrefix + 'contact_form_submit', { event: self.eventPrefix + 'contact_form_submit', ...formData});
              }
            }
          });

        }

        // phone_number_click event
        phoneClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="tel:"]');
            if(target) {
              let phone_number = target.getAttribute('href').replace('tel:', '');
              let eventData = {
                event: self.eventPrefix + 'phone_number_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                phone_number
              }

              dataLayer.push(eventData);
              this.eventConsole(self.eventPrefix + 'phone_number_click', eventData);
            }
          });
        }
  
        // email_click event
        emailClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="mailto:"]');
            if(target) {
              let email_address = target.getAttribute('href').replace('mailto:', '');
              let eventData = {
                event: self.eventPrefix + 'email_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                email_address
              }

              dataLayer.push(eventData);
              this.eventConsole(self.eventPrefix + 'email_click', eventData);
            }
          });
        }

        //login register 
        loginRegisterData() {
          
          const self = this; 
          let isTrackedLogin = false;
          let isTrackedRegister = false;
          
          if(window.location.href.includes('/account/login')) {
            document.addEventListener('submit', function(e) {
              const loginForm = e.target.closest('[action="/account/login"]');
              if(loginForm && !isTrackedLogin) {
                  const eventData = {
                    event: self.eventPrefix + 'login'
                  }
                  isTrackedLogin = true;
                  dataLayer.push(eventData);
                  self.eventConsole(self.eventPrefix + 'login', eventData);
              }
            });
          }

          if(window.location.href.includes('/account/register')) {
            document.addEventListener('submit', function(e) {
              const registerForm = e.target.closest('[action="/account"]');
              if(registerForm && !isTrackedRegister) {
                  const eventData = {
                    event: self.eventPrefix + 'sign_up'
                  }
                
                  isTrackedRegister = true;
                  dataLayer.push(eventData);
                  self.eventConsole(self.eventPrefix + 'sign_up', eventData);
              }
            });
          }
        }
      } 
      // end Ultimate_Shopify_DataLayer

      document.addEventListener('DOMContentLoaded', function() {
        try{
          new Ultimate_Shopify_DataLayer();
        }catch(error) {
          console.log(error);
        }
      });
    
  })();
</script>
    
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="IE=edge">

    <link rel="preconnect" href="https://cdn.shopify.com">
    <link rel="preconnect" href="https://fonts.shopifycdn.com">
    <link rel="preconnect" href="https://v.shopify.com">
    <link rel="preconnect" href="https://cdn.shopifycloud.com">

    <!-- Google Merchant Center - Verification Tag -->
    <meta name="google-site-verification" content="S8WWicEweG72WPzj4SeIzSB4csU1CKb2OnWDjtIVdfQ">

    <!-- Google search console verfication tag -->
    <meta name="google-site-verification" content="O94GJTnIQiVHjtTA6Mha0wO8ODlIzG6SakP53Dj_pAk">
    <title>Blog — AVI-SPL Shop</title>

    

    
  <link rel="shortcut icon" href="//shop.avispl.com/cdn/shop/files/favicon_80804938-0773-42f6-9950-bd5623eafeff_32x32.png?v=1736969950" type="image/png">


    
      <link rel="canonical" href="https://shop.avispl.com/blogs/blog">
    

    <meta name="viewport" content="width=device-width">

    
    















<meta property="og:site_name" content="AVI-SPL Shop">
<meta property="og:url" content="https://shop.avispl.com/blogs/blog">
<meta property="og:title" content="Blog">
<meta property="og:type" content="website">
<meta property="og:description" content="Find today&#39;s top audiovisual and unified communications solutions at the best prices — trusted by enterprise, higher education, government, and IT.">




    
    
    

    
    
    <meta
      property="og:image"
      content="https://shop.avispl.com/cdn/shop/files/avispl_COLOR_logo_no_tag_no_R_3721x630.png?v=1719237079"
    />
    <meta
      property="og:image:secure_url"
      content="https://shop.avispl.com/cdn/shop/files/avispl_COLOR_logo_no_tag_no_R_3721x630.png?v=1719237079"
    />
    <meta property="og:image:width" content="3721" />
    <meta property="og:image:height" content="630" />
    
    
    <meta property="og:image:alt" content="Social media image" />
  









  <meta name="twitter:site" content="@avisplinfo">








<meta name="twitter:title" content="Blog">
<meta name="twitter:description" content="Find today&#39;s top audiovisual and unified communications solutions at the best prices — trusted by enterprise, higher education, government, and IT.">


    
    
    
      
      
      <meta name="twitter:card" content="summary_large_image">
    
    
    <meta
      property="twitter:image"
      content="https://shop.avispl.com/cdn/shop/files/avispl_COLOR_logo_no_tag_no_R_1200x600_crop_center.png?v=1719237079"
    />
    <meta property="twitter:image:width" content="1200" />
    <meta property="twitter:image:height" content="600" />
    
    
    <meta property="twitter:image:alt" content="Social media image" />
  



    <link rel="preload" href="//shop.avispl.com/cdn/fonts/ibm_plex_sans/ibmplexsans_n4.4633946c9236bd5cc5d0394ad07b807eb7ca1b32.woff2" as="font" crossorigin="anonymous">
    <link rel="preload" as="style" href="//shop.avispl.com/cdn/shop/t/25/assets/theme.css?v=177146973830517928621762529885">
    <link rel="preload" as="style" href="//shop.avispl.com/cdn/shop/t/25/assets/custom.css?v=119943480833075278531765330740">
    <link rel="preload" as="style" href="//shop.avispl.com/cdn/shop/t/25/assets/headsets-reps-by-state.css?v=71375961838776735971738765421">

    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="facebook-domain-verification" content="3mfia2ct4qx82bkoh7kfnr53iqz6ji">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/86458597655/digital_wallets/dialog">
<link rel="alternate" type="application/atom+xml" title="Feed" href="/blogs/blog.atom" />
<link rel="next" href="/blogs/blog?page=2">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
<script id="shopify-features" type="application/json">{"accessToken":"9ae3ff93a63e88597035eebbfb3c23b1","betas":["rich-media-storefront-analytics"],"domain":"shop.avispl.com","predictiveSearch":true,"shopId":86458597655,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "14c1a9-07.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"USD","rate":"1.0"};
Shopify.country = "US";
Shopify.theme = {"name":"2025 New Branding","id":174842806551,"schema_name":"Empire","schema_version":"11.1.0","theme_store_id":838,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "shop.avispl.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"blog"}</script>
<script defer="defer" async type="module" src="//shop.avispl.com/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_D0dqhulL.en.esm.js"></script>
<script defer="defer" async type="module" src="//shop.avispl.com/cdn/shopifycloud/shop-js/modules/v2/chunk.common_CpVO7qML.esm.js"></script>
<script type="module">
  await import("//shop.avispl.com/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_D0dqhulL.en.esm.js");
await import("//shop.avispl.com/cdn/shopifycloud/shop-js/modules/v2/chunk.common_CpVO7qML.esm.js");

  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});

</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/cdn.logbase.io\/lb-upsell-wrapper.js?shop=14c1a9-07.myshopify.com","https:\/\/wisepops.net\/loader.js?v=3\u0026h=BeK2uUpRPm\u0026shop=14c1a9-07.myshopify.com","https:\/\/chimpstatic.com\/mcjs-connected\/js\/users\/5ed7c8625ef40dc8292109422\/3a99fd40e24d91b31e691ca40.js?shop=14c1a9-07.myshopify.com","https:\/\/ecommplugins-scripts.trustpilot.com\/v2.1\/js\/header.min.js?settings=eyJrZXkiOiI4dUsyNHhSMVVWdU42UDJtIiwicyI6Im5vbmUifQ==\u0026v=2.5\u0026shop=14c1a9-07.myshopify.com","https:\/\/ecommplugins-scripts.trustpilot.com\/v2.1\/js\/success.min.js?settings=eyJrZXkiOiI4dUsyNHhSMVVWdU42UDJtIiwicyI6Im5vbmUiLCJ0IjpbIm9yZGVycy9mdWxmaWxsZWQiXSwidiI6IiIsImEiOiIifQ==\u0026shop=14c1a9-07.myshopify.com","https:\/\/ecommplugins-trustboxsettings.trustpilot.com\/14c1a9-07.myshopify.com.js?settings=1762964269979\u0026shop=14c1a9-07.myshopify.com"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":86458597655,"offset":-18000,"reqid":"4560d224-1af7-4a77-91e1-c620c540afec-1765340202","pageurl":"shop.avispl.com\/blogs\/blog","s":"blogs-111268364567","u":"8687aeae798a","p":"blog","rtyp":"blog","rid":111268364567};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-52AcMU7V7pcBOXWImdc/TAGTFKeNjmkeM1Pvks/DTgc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//shop.avispl.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-81c60534.js" crossorigin="anonymous"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://shop.avispl.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>

<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>

    <link href="//shop.avispl.com/cdn/shop/t/25/assets/theme.css?v=177146973830517928621762529885" rel="stylesheet" type="text/css" media="all" />
    <link href="//shop.avispl.com/cdn/shop/t/25/assets/custom.css?v=119943480833075278531765330740" rel="stylesheet" type="text/css" media="all" />
    <link href="//shop.avispl.com/cdn/shop/t/25/assets/headsets-reps-by-state.css?v=71375961838776735971738765421" rel="stylesheet" type="text/css" media="all" />

    
      <link href="//shop.avispl.com/cdn/shop/t/25/assets/ripple.css?v=100240391239311985871738765421" rel="stylesheet" type="text/css" media="all" />
    

    
    <script>
      window.Theme = window.Theme || {};
      window.Theme.version = '11.1.0';
      window.Theme.name = 'Empire';
      window.Theme.routes = {
        "root_url": "/",
        "account_url": "/account",
        "account_login_url": "https://shopify.com/86458597655/account?locale=en&region_country=US",
        "account_logout_url": "/account/logout",
        "account_register_url": "https://shopify.com/86458597655/account?locale=en",
        "account_addresses_url": "/account/addresses",
        "collections_url": "/collections",
        "all_products_collection_url": "/collections/all",
        "search_url": "/search",
        "predictive_search_url": "/search/suggest",
        "cart_url": "/cart",
        "cart_add_url": "/cart/add",
        "cart_change_url": "/cart/change",
        "cart_clear_url": "/cart/clear",
        "product_recommendations_url": "/recommendations/products",
      };
    </script>
    

    <link href="//shop.avispl.com/cdn/shop/t/25/assets/custom_style.css?v=115893634958046533551749060871" rel="stylesheet" type="text/css" media="all" />
    <!-- Include the JavaScript file to capitalize uppercases -->
  

  
  	



<script src="https://snapui.searchspring.io/zpswrf/bundle.js" id="searchspring-context" defer>
	
		template = "blog";
	
	format = "${{amount}}";

</script>
  
<!-- <script src="//shop.avispl.com/cdn/shop/t/25/assets/menu-variant.js?v=145540440051846673981758912165" type="text/javascript"></script>  -->   
  

<!-- BEGIN app block: shopify://apps/also-bought/blocks/app-embed-block/b94b27b4-738d-4d92-9e60-43c22d1da3f2 --><script>
    window.codeblackbelt = window.codeblackbelt || {};
    window.codeblackbelt.shop = window.codeblackbelt.shop || '14c1a9-07.myshopify.com';
    </script><script src="//cdn.codeblackbelt.com/widgets/also-bought/bootstrap.min.js?version=2025120923-0500" async></script>
<!-- END app block --><!-- BEGIN app block: shopify://apps/xo-insert-code/blocks/insert-code-header/72017b12-3679-442e-b23c-5c62460717f5 --><!-- XO-InsertCode Header -->


<!-- End: XO-InsertCode Header -->


<!-- END app block --><script src="https://cdn.shopify.com/extensions/019b0404-e0a8-7b0e-90f6-d923ce991cc9/lb-upsell-217/assets/lb-selleasy.js" type="text/javascript" defer="defer"></script>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 86458597655,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "blog"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 86458597655,storefrontBaseUrl: "https://shop.avispl.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86"],webPixelsConfigList: [{"id":"1040711959","configuration":"{\"hash\":\"BeK2uUpRPm\",\"ingestion_url\":\"https:\/\/activity.wisepops.com\",\"goal_hash\":\"RB0RVJQxMRQr4oMv7JaX6YqAmQdh1Z5i\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"c39e6b8427cc0209a276307998116879","type":"APP","apiClientId":461977,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"469893399","configuration":"{\"siteId\":\"zpswrf\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"f88b08d400ce7352a836183c6cef69ee","type":"APP","apiClientId":12202,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_personal_data","read_customer_phone"]}},{"id":"469860631","configuration":"{\"accountID\":\"selleasy-metrics-track\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5aac1f99a8ca74af74cea751ede503d2","type":"APP","apiClientId":5519923,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data"]}},{"id":"398098711","configuration":"{\"pixel_id\":\"488423569025090\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ca16bc87fe92b6042fbaa3acc2fbdaa6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"165576983","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"3","type":"CUSTOM","privacyPurposes":[],"name":"GTM script GA4"},{"id":"168722711","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":[],"name":"JumpFly - DO NOT REMOVE"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"AVI-SPL Shop","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"14c1a9-07.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/shop.avispl.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://shop.avispl.com/cdn","ae1676cfwd2530674p4253c800m34e853cb",{"modern":"","legacy":""},{"shopId":"86458597655","storefrontBaseUrl":"https:\/\/shop.avispl.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\"]","isMerchantRequest":"false","hashVersion":"ae1676cfwd2530674p4253c800m34e853cb","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'USD';
  var meta = {"page":{"pageType":"blog","resourceType":"blog","resourceId":111268364567}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

      if (window.jQuery) {
        jquery = window.jQuery;
      } else if (window.Checkout && window.Checkout.$) {
        jquery = window.Checkout.$;
      }

      if (jquery) {
        jquery('body').append(content);
      }
    };

    var hasLoggedConversion = function(token) {
      if (token) {
        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
      }
      return false;
    }

    var setCookieIfConversion = function(token) {
      if (token) {
        var twoMonthsFromNow = new Date(Date.now());
        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);

        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
      }
    }

    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
    if (trekkie.integrations) {
      return;
    }
    trekkie.methods = [
      'identify',
      'page',
      'ready',
      'track',
      'trackForm',
      'trackLink'
    ];
    trekkie.factory = function(method) {
      return function() {
        var args = Array.prototype.slice.call(arguments);
        args.unshift(method);
        trekkie.push(args);
        return trekkie;
      };
    };
    for (var i = 0; i < trekkie.methods.length; i++) {
      var key = trekkie.methods[i];
      trekkie[key] = trekkie.factory(key);
    }
    trekkie.load = function(config) {
      trekkie.config = config || {};
      trekkie.config.initialDocumentCookie = document.cookie;
      var first = document.getElementsByTagName('script')[0];
      var script = document.createElement('script');
      script.type = 'text/javascript';
      script.onerror = function(e) {
        var scriptFallback = document.createElement('script');
        scriptFallback.type = 'text/javascript';
        scriptFallback.onerror = function(error) {
                var Monorail = {
      produce: function produce(monorailDomain, schemaId, payload) {
        var currentMs = new Date().getTime();
        var event = {
          schema_id: schemaId,
          payload: payload,
          metadata: {
            event_created_at_ms: currentMs,
            event_sent_at_ms: currentMs
          }
        };
        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
      },
      sendRequest: function sendRequest(endpointUrl, payload) {
        // Try the sendBeacon API
        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
          var blobData = new window.Blob([payload], {
            type: 'text/plain'
          });

          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
            return true;
          } // sendBeacon was not successful

        } // XHR beacon

        var xhr = new XMLHttpRequest();

        try {
          xhr.open('POST', endpointUrl);
          xhr.setRequestHeader('Content-Type', 'text/plain');
          xhr.send(payload);
        } catch (e) {
          console.log(e);
        }

        return false;
      },
      isIos12: function isIos12() {
        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
      }
    };
    Monorail.produce('monorail-edge.shopifysvc.com',
      'trekkie_storefront_load_errors/1.1',
      {shop_id: 86458597655,
      theme_id: 174842806551,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//shop.avispl.com/cdn/s/trekkie.storefront.94e7babdf2ec3663c2b14be7d5a3b25b9303ebb0.min.js"});

        };
        scriptFallback.async = true;
        scriptFallback.src = '//shop.avispl.com/cdn/s/trekkie.storefront.94e7babdf2ec3663c2b14be7d5a3b25b9303ebb0.min.js';
        first.parentNode.insertBefore(scriptFallback, first);
      };
      script.async = true;
      script.src = '//shop.avispl.com/cdn/s/trekkie.storefront.94e7babdf2ec3663c2b14be7d5a3b25b9303ebb0.min.js';
      first.parentNode.insertBefore(script, first);
    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":86458597655,"isMerchantRequest":null,"themeId":174842806551,"themeCityHash":"4784074481303947503","contentLanguage":"en","currency":"USD","eventMetadataId":"8b9939e8-15d6-4d3d-889a-0614724e8490"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["f0df213a"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

    var loaded = false;
    trekkie.ready(function() {
      if (loaded) return;
      loaded = true;

      window.ShopifyAnalytics.lib = window.trekkie;

      var originalDocumentWrite = document.write;
      document.write = customDocumentWrite;
      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
      document.write = originalDocumentWrite;

      window.ShopifyAnalytics.lib.page(null,{"pageType":"blog","resourceType":"blog","resourceId":111268364567,"shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        
      }
    });


        var eventsListenerScript = document.createElement('script');
        eventsListenerScript.async = true;
        eventsListenerScript.src = "//shop.avispl.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);

})();</script>
<script
  defer
  src="https://shop.avispl.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-2.1.2.min.js"
  data-application="storefront-renderer"
  data-shop-id="86458597655"
  data-render-region="gcp-us-central1"
  data-page-type="blog"
  data-theme-instance-id="174842806551"
  data-theme-name="Empire"
  data-theme-version="11.1.0"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
></script>
</head>

  <body
    class="template-blog"
    data-instant-allow-query-string
    
  >
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MDN2C3DT"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
    <script>
      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
    </script>

    
    <svg
      class="icon-star-reference"
      aria-hidden="true"
      focusable="false"
      role="presentation"
      xmlns="http://www.w3.org/2000/svg"
      width="20"
      height="20"
      viewBox="3 3 17 17"
      fill="none"
    >
      <symbol id="icon-star">
        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
      </symbol>
      <clipPath id="icon-star-clip">
        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </clipPath>
    </svg>
    

    <a class="skip-to-main" href="#site-main">Skip to content</a>

    <!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--23926582673687__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  type="application/json"
  data-section-id="sections--23926582673687__announcement-bar"
  data-section-type="static-announcement">
</script>









  
    <div
      class="
        announcement-bar
        
      "
      style="
        color: #ffffff;
        background: #182957;
      "
      data-announcement-bar
    >
      

      
        <div class="announcement-bar-text">
          Your Source for Everything AV and UC Since 1999   |     Free Shipping on All Orders      |    We Currently Ship Only Within the United States
        </div>
      

      <div class="announcement-bar-text-mobile">
        
          Free Shipping on All Orders |  Currently, we only ship to USA. All pricing is in ($) USD.
        
      </div>
    </div>
  


<style> #shopify-section-sections--23926582673687__announcement-bar .announcement-bar {padding: 8px 0;} </style></div><div id="shopify-section-sections--23926582673687__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">


<script
  type="application/json"
  data-section-id="sections--23926582673687__header"
  data-section-type="static-header"
  data-section-data
>
  {
    "settings": {
      "sticky_header": true,
      "has_box_shadow": true,
      "live_search": {
        "enable": true,
        "money_format": "${{amount}}",
        "show_mobile_search_bar": true
      }
    }
  }
</script>

<!-- ========================= TRUST PILOT ====================== -->
<!-- TrustBox script --> <script type="text/javascript" src="//widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js" async></script>
<!-- End TrustBox script -->





<style data-shopify>
  .site-logo {
    max-width: 200px;
  }

  .site-logo-image {
    max-height: 80px;
  }
</style>

<header
  class="site-header site-header-nav--open"
  role="banner"
  data-site-header
>
  <div
    class="
      site-header-main
      
    "
    data-site-header-main
    
      data-site-header-sticky
    
    
      data-site-header-mobile-search-bar
    
  >
    <button class="site-header-menu-toggle" data-menu-toggle>
      <div class="site-header-menu-toggle--button" tabindex="-1">
        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
        <span class="visually-hidden">Menu</span>
      </div>
    </button>

    

    <div
      class="
        site-header-main-content
        
          small-promo-enabled
        
      "
    >
      <div class="site-header-logo">
        <a
          class="site-logo"
          href="/"
        >
          
            
            

            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/AVI-SPL-Logo-Main_200x80.png?v=1736970134"
    
    alt="AVI-SPL logo"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/AVI-SPL-Logo-Main_200x80.png?v=1736970134 1x"
    

    class="site-logo-image"
    style="
        object-fit:cover;object-position:50.0% 50.0%;
      
"
    
  >




          
        </a>
      </div>

      
        <div class="live-search">
            <form class="live-search-form form-fields-inline" action="/collections/shop" method="get" role="search" aria-label="Product">
                <div class="form-field no-label">
                    <input class="ss__autocomplete__input form-field-input live-search-form-field" type="text" name="q" aria-label="Search" placeholder="What are you looking for?" autocomplete="off">
                    <button class="live-search-button" type="submit" aria-label="Search">
                        <span class="search-icon search-icon--inactive">
                            <svg aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="23" height="24" fill="none" viewBox="0 0 23 24">
                                <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
                                <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2" />
                            </svg>
                        </span>
                    </button>
                </div>
            </form>
        </div>
      

      
        
          <a
            class="small-promo-content--link"
            href="tel:+18882480675"
          >
        
        <div class="small-promo">
          

          <div class="small-promo-content">
            

            
              <div class="small-promo-content--mobile">
                <p><strong>1 (888) 248-0675</strong></p>
              </div>
            

            
              <div class="small-promo-content--desktop">
                <p><strong>1 (888) 248-0675</strong></p>
              </div>
            
          </div>
        </div>
        
          </a>
        
      
    </div>

    <div class="site-header-right">
      <ul class="site-header-actions" data-header-actions>
  
    
      <li class="site-header-actions__account-link">
        <a
          class="site-header_account-link-anchor"
          href="https://shopify.com/86458597655/account?locale=en&region_country=US"
        >
          <span class="site-header__account-icon">
            


    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                  

          </span>
          
          <span class="site-header_account-link-text">
            Login
          </span>
        </a>
      </li>
    
  
</ul>


      <div class="site-header-cart">
        <a class="site-header-cart--button" href="/cart">
          <span
            class="site-header-cart--count "
            data-header-cart-count=""
          >
          </span>
          <span class="site-header-cart-icon site-header-cart-icon--svg">
            
              


            <svg width="25" height="24" viewBox="0 0 25 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M1 0C0.447715 0 0 0.447715 0 1C0 1.55228 0.447715 2 1 2H1.33877H1.33883C1.61048 2.00005 2.00378 2.23945 2.10939 2.81599L2.10937 2.816L2.11046 2.82171L5.01743 18.1859C5.12011 18.7286 5.64325 19.0852 6.18591 18.9826C6.21078 18.9779 6.23526 18.9723 6.25933 18.9658C6.28646 18.968 6.31389 18.9692 6.34159 18.9692H18.8179H18.8181C19.0302 18.9691 19.2141 18.9765 19.4075 18.9842L19.4077 18.9842C19.5113 18.9884 19.6175 18.9926 19.7323 18.9959C20.0255 19.0043 20.3767 19.0061 20.7177 18.9406C21.08 18.871 21.4685 18.7189 21.8028 18.3961C22.1291 18.081 22.3266 17.6772 22.4479 17.2384C22.4569 17.2058 22.4642 17.1729 22.4699 17.1396L23.944 8.46865C24.2528 7.20993 23.2684 5.99987 21.9896 6H21.9894H4.74727L4.07666 2.45562L4.07608 2.4525C3.83133 1.12381 2.76159 8.49962e-05 1.33889 0H1.33883H1ZM5.12568 8L6.8227 16.9692H18.8178H18.8179C19.0686 16.9691 19.3257 16.9793 19.5406 16.9877L19.5413 16.9877C19.633 16.9913 19.7171 16.9947 19.7896 16.9967C20.0684 17.0047 20.2307 16.9976 20.3403 16.9766C20.3841 16.9681 20.4059 16.96 20.4151 16.9556C20.4247 16.9443 20.4639 16.8918 20.5077 16.7487L21.9794 8.09186C21.9842 8.06359 21.9902 8.03555 21.9974 8.0078C21.9941 8.00358 21.9908 8.00108 21.989 8H5.12568ZM20.416 16.9552C20.4195 16.9534 20.4208 16.9524 20.4205 16.9523C20.4204 16.9523 20.4199 16.9525 20.4191 16.953L20.416 16.9552ZM10.8666 22.4326C10.8666 23.2982 10.195 24 9.36658 24C8.53815 24 7.86658 23.2982 7.86658 22.4326C7.86658 21.567 8.53815 20.8653 9.36658 20.8653C10.195 20.8653 10.8666 21.567 10.8666 22.4326ZM18.0048 24C18.8332 24 19.5048 23.2982 19.5048 22.4326C19.5048 21.567 18.8332 20.8653 18.0048 20.8653C17.1763 20.8653 16.5048 21.567 16.5048 22.4326C16.5048 23.2982 17.1763 24 18.0048 24Z" fill="currentColor"/>    </svg>                                                                                                          

            
          </span>
          <span class="visually-hidden">View cart</span>
        </a>
      </div>
    </div>
  </div>

  <div
    class="
      site-navigation-wrapper
      
        site-navigation--has-actions
      
      
    "
    data-site-navigation
    id="site-header-nav"
  >
    <nav
      class="site-navigation"
      aria-label="Main"
    >
      




<ul
  class="navmenu navmenu-depth-1"
  data-navmenu
  aria-label="Main menu"
>
  
    
    

    
    
    
    
<li
      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop-all"
      
        data-navmenu-meganav-trigger
        data-navmenu-meganav-type="meganav-sidenav"
      
      data-navmenu-parent
      
    >
      
        <details data-navmenu-details>
        <summary
      
        class="
          navmenu-link
          navmenu-link-depth-1
          navmenu-link-parent
          
        "
        
          aria-haspopup="true"
          aria-expanded="false"
          data-href="#"
        
      >
        Shop All
        
          <span
            class="navmenu-icon navmenu-icon-depth-1"
            data-navmenu-trigger
          >
            <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

          </span>
        
      
        </summary>
      

      
        
            



<div
  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  data-navmenu-submenu
  data-meganav-menu
  data-meganav-id="meganav_sidenav_E9rYBE"
  
    data-meganav-sidenav-image-aspect-ratio="square"
    data-meganav-sidenav-image-crop="false"
  
>
  <div
    class="
      navmenu-meganav-wrapper
      navmenu-meganav-sidenav__wrapper
      
        navmenu-meganav-sidenav__wrapper--images
      
    "
  >
    <ul
      class="navmenu  navmenu-depth-2  navmenu-meganav-sidenav__items      navmenu-meganav-sidenav__items--images  "
      data-navmenu
    >
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-audio          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Audio</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-headsets"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/headsets"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/HP77Y99AA_600x400.jpg?v=1764621996"
    
    alt="Headsets"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/HP77Y99AA_600x400.jpg?v=1764621996 1x, //shop.avispl.com/cdn/shop/files/HP77Y99AA_798x532.jpg?v=1764621996 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Headsets
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-microphones"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/microphones"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SHUSM86_600x412.jpg?v=1764626461"
    
    alt="Microphones"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SHUSM86_600x412.jpg?v=1764626461 1x, //shop.avispl.com/cdn/shop/files/SHUSM86_798x548.jpg?v=1764626461 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Microphones
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-amplifiers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/amplifier"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAB40881_600x400.jpg?v=1764622577"
    
    alt="Audio Amplifiers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAB40881_600x400.jpg?v=1764622577 1x, //shop.avispl.com/cdn/shop/files/CAB40881_798x532.jpg?v=1764622577 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Audio Amplifiers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-cables"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAB50227_600x400.jpg?v=1764629985"
    
    alt="Audio Cables"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAB50227_600x400.jpg?v=1764629985 1x, //shop.avispl.com/cdn/shop/files/CAB50227_798x532.jpg?v=1764629985 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Audio Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-conferencing"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-conferencing"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/HP89B58AA_600x400.jpg?v=1764623293"
    
    alt="Audio Conferencing"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/HP89B58AA_600x400.jpg?v=1764623293 1x, //shop.avispl.com/cdn/shop/files/HP89B58AA_798x532.jpg?v=1764623293 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Audio Conferencing
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-mixers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-mixers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SHUSCM410_600x400.jpg?v=1764620522"
    
    alt="Audio Mixers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SHUSCM410_600x400.jpg?v=1764620522 1x, //shop.avispl.com/cdn/shop/files/SHUSCM410_798x532.jpg?v=1764620522 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Audio Mixers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-processors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-processor"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/HP8L547AA_600x400.jpg?v=1764623990"
    
    alt="Audio Processors"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/HP8L547AA_600x400.jpg?v=1764623990 1x, //shop.avispl.com/cdn/shop/files/HP8L547AA_798x532.jpg?v=1764623990 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Audio Processors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-speakers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/speakers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LIBDLUSB360SPKMIC_600x400.jpg?v=1764627047"
    
    alt="Speakers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LIBDLUSB360SPKMIC_600x400.jpg?v=1764627047 1x, //shop.avispl.com/cdn/shop/files/LIBDLUSB360SPKMIC_798x532.jpg?v=1764627047 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Speakers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-wireless-microphone-systems"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/wireless-microphone-systems"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CATPCABC0AC00AFK00_600x358.jpg?v=1764627188"
    
    alt="Wireless Microphone Systems"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CATPCABC0AC00AFK00_600x358.jpg?v=1764627188 1x, //shop.avispl.com/cdn/shop/files/CATPCABC0AC00AFK00_798x476.jpg?v=1764627188 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Wireless Microphone Systems
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-cables          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Cables</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-cables"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAB26954_600x400.jpg?v=1764629981"
    
    alt="Video Cables"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAB26954_600x400.jpg?v=1764629981 1x, //shop.avispl.com/cdn/shop/files/CAB26954_798x532.jpg?v=1764629981 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Video Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-network-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/network-cables"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LUX10GCAB05_600x400.jpg?v=1764624446"
    
    alt="Network Cables"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LUX10GCAB05_600x400.jpg?v=1764624446 1x, //shop.avispl.com/cdn/shop/files/LUX10GCAB05_798x532.jpg?v=1764624446 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Network Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-cables"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAB50227_600x400.jpg?v=1764629985"
    
    alt="Audio Cables"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAB50227_600x400.jpg?v=1764629985 1x, //shop.avispl.com/cdn/shop/files/CAB50227_798x532.jpg?v=1764629985 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Audio Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-cable-adapters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/cable-adapters"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/HP85S07AA_600x400.jpg?v=1764620890"
    
    alt="Cable Adapters"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/HP85S07AA_600x400.jpg?v=1764620890 1x, //shop.avispl.com/cdn/shop/files/HP85S07AA_798x532.jpg?v=1764620890 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Cable Adapters
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-cable-management"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/cable-management"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREFT2700ELECPTLAL_600x400.jpg?v=1764626650"
    
    alt="Cable Management"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREFT2700ELECPTLAL_600x400.jpg?v=1764626650 1x, //shop.avispl.com/cdn/shop/files/CREFT2700ELECPTLAL_798x532.jpg?v=1764626650 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Cable Management
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-power-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/power-cables"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAB09482_600x400.jpg?v=1764624158"
    
    alt="Power Cables"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAB09482_600x400.jpg?v=1764624158 1x, //shop.avispl.com/cdn/shop/files/CAB09482_798x532.jpg?v=1764624158 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Power Cables
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-computers-and-networking          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Computers and Networking</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-bridges"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/bridges"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/VAD99996450570_600x600.jpg?v=1764624078"
    
    alt="Bridges"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/VAD99996450570_600x600.jpg?v=1764624078 1x, //shop.avispl.com/cdn/shop/files/VAD99996450570_798x798.jpg?v=1764624078 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Bridges
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-computer-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/computer-accessories"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LOG910006491_600x400.jpg?v=1764625747"
    
    alt="Computer Accessories"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LOG910006491_600x400.jpg?v=1764625747 1x, //shop.avispl.com/cdn/shop/files/LOG910006491_798x532.jpg?v=1764625747 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Computer Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-control-systems"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/control-systems"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CRETSR310B_600x1668.jpg?v=1764627776"
    
    alt="Control Systems"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CRETSR310B_600x1668.jpg?v=1764627776 1x, //shop.avispl.com/cdn/shop/files/CRETSR310B_798x2218.jpg?v=1764627776 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Control Systems
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-docking-stations"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/docking-stations"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CABC2G54543_600x600.jpg?v=1764623919"
    
    alt="Docking Stations"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CABC2G54543_600x600.jpg?v=1764623919 1x, //shop.avispl.com/cdn/shop/files/CABC2G54543_798x798.jpg?v=1764623919 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Docking Stations
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-extenders"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/extenders"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREUSBEXT2LOCAL_600x400.jpg?v=1764628150"
    
    alt="Extenders"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREUSBEXT2LOCAL_600x400.jpg?v=1764628150 1x, //shop.avispl.com/cdn/shop/files/CREUSBEXT2LOCAL_798x532.jpg?v=1764628150 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Extenders
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-laptops"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/laptop-computers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/ASUCM3401FFAYZ566TS_600x600.jpg?v=1764622435"
    
    alt="Laptops"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/ASUCM3401FFAYZ566TS_600x600.jpg?v=1764622435 1x, //shop.avispl.com/cdn/shop/files/ASUCM3401FFAYZ566TS_798x798.jpg?v=1764622435 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Laptops
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-monitors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/monitors"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/NEWFLEX_600x400.jpg?v=1764629901"
    
    alt="Monitors"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/NEWFLEX_600x400.jpg?v=1764629901 1x, //shop.avispl.com/cdn/shop/files/NEWFLEX_798x532.jpg?v=1764629901 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Monitors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-routers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/routers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREDMNVXDIR2_600x1364.jpg?v=1764622925"
    
    alt="Routers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREDMNVXDIR2_600x1364.jpg?v=1764622925 1x, //shop.avispl.com/cdn/shop/files/CREDMNVXDIR2_798x1814.jpg?v=1764622925 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Routers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-switchers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/switchers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LUXSW50516PR_600x600.jpg?v=1764630276"
    
    alt="Switchers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LUXSW50516PR_600x600.jpg?v=1764630276 1x, //shop.avispl.com/cdn/shop/files/LUXSW50516PR_798x798.jpg?v=1764630276 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Switchers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-transmitters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/transmitters"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CRECREHDTX301CE_600x400.jpg?v=1764630008"
    
    alt="Transmitters"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CRECREHDTX301CE_600x400.jpg?v=1764630008 1x, //shop.avispl.com/cdn/shop/files/CRECREHDTX301CE_798x532.jpg?v=1764630008 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Transmitters
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-web-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/web-cameras"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LOG960001105_600x400.jpg?v=1764624269"
    
    alt="Web Cameras"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LOG960001105_600x400.jpg?v=1764624269 1x, //shop.avispl.com/cdn/shop/files/LOG960001105_798x532.jpg?v=1764624269 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Web Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-wireless-adapters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/wireless-adapters"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LUXAP3064_600x600.jpg?v=1764625521"
    
    alt="Wireless Adapters"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LUXAP3064_600x600.jpg?v=1764625521 1x, //shop.avispl.com/cdn/shop/files/LUXAP3064_798x798.jpg?v=1764625521 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Wireless Adapters
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-displays          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Displays</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-tvs-displays"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/tvs-displays"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SONFW32BZ30J_600x400.jpg?v=1764628429"
    
    alt="TVs &amp; Displays"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SONFW32BZ30J_600x400.jpg?v=1764628429 1x, //shop.avispl.com/cdn/shop/files/SONFW32BZ30J_798x532.jpg?v=1764628429 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          TVs & Displays
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-presentation-solutions"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/presentation-solutions"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREAM3111KIT_600x348.jpg?v=1764627511"
    
    alt="Presentation Solutions"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREAM3111KIT_600x348.jpg?v=1764627511 1x, //shop.avispl.com/cdn/shop/files/CREAM3111KIT_798x463.jpg?v=1764627511 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Presentation Solutions
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-document-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/document-cameras"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SMASDC650_600x342.jpg?v=1764627174"
    
    alt="Document Cameras"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SMASDC650_600x342.jpg?v=1764627174 1x, //shop.avispl.com/cdn/shop/files/SMASDC650_798x455.jpg?v=1764627174 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Document Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-dv-led"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/dv-led"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/NECLEDFE019I2110IN_600x400.jpg?v=1764627743"
    
    alt="DV-LED"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/NECLEDFE019I2110IN_600x400.jpg?v=1764627743 1x, //shop.avispl.com/cdn/shop/files/NECLEDFE019I2110IN_798x532.jpg?v=1764627743 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          DV-LED
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-mounts"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/mounts"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CHIRPAU_600x600.jpg?v=1764627945"
    
    alt="Mounts"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CHIRPAU_600x600.jpg?v=1764627945 1x, //shop.avispl.com/cdn/shop/files/CHIRPAU_798x798.jpg?v=1764627945 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Mounts
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-licenses-warranties          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Licenses & Warranties</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-extended-warranties"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/extended-warranties"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/OPTBWWTP05_600x510.jpg?v=1764624817"
    
    alt="Extended Warranties"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/OPTBWWTP05_600x510.jpg?v=1764624817 1x, //shop.avispl.com/cdn/shop/files/OPTBWWTP05_798x678.jpg?v=1764624817 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Extended Warranties
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-software-licenses"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/software-licenses"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SMALUMSW1_600x400.jpg?v=1764623486"
    
    alt="Software Licenses"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SMALUMSW1_600x400.jpg?v=1764623486 1x, //shop.avispl.com/cdn/shop/files/SMALUMSW1_798x532.jpg?v=1764623486 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Software Licenses
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-printers-and-printer-supplies          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Printers and Printer Supplies</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-large-format-printer"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/printer"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAN6242C002AC_600x240.jpg?v=1764625704"
    
    alt="Large Format Printer"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAN6242C002AC_600x240.jpg?v=1764625704 1x, //shop.avispl.com/cdn/shop/files/CAN6242C002AC_798x319.jpg?v=1764625704 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Large Format Printer
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-printer-ink"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/printer-ink"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAN6444C001AA_600x600.jpg?v=1764621748"
    
    alt="Printer Ink"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAN6444C001AA_600x600.jpg?v=1764621748 1x, //shop.avispl.com/cdn/shop/files/CAN6444C001AA_798x798.jpg?v=1764621748 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Printer Ink
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-printer-paper"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/printer-paper"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAN3873V022_600x400.jpg?v=1764622578"
    
    alt="Printer Paper"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAN3873V022_600x400.jpg?v=1764622578 1x, //shop.avispl.com/cdn/shop/files/CAN3873V022_798x532.jpg?v=1764622578 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Printer Paper
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-power-management          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Power Management</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-chargers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/chargers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/WIRWCP10_600x400.jpg?v=1764622323"
    
    alt="Chargers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/WIRWCP10_600x400.jpg?v=1764622323 1x, //shop.avispl.com/cdn/shop/files/WIRWCP10_798x532.jpg?v=1764622323 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Chargers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-extension-cords"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/extension-cords"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/HOSPWX425_600x400.jpg?v=1764629419"
    
    alt="Extension Cords"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/HOSPWX425_600x400.jpg?v=1764629419 1x, //shop.avispl.com/cdn/shop/files/HOSPWX425_798x532.jpg?v=1764629419 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Extension Cords
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-power-strips"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/power-strips"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/MIDPWR8V_600x600.jpg?v=1764623065"
    
    alt="Power Strips"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/MIDPWR8V_600x600.jpg?v=1764623065 1x, //shop.avispl.com/cdn/shop/files/MIDPWR8V_798x798.jpg?v=1764623065 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Power Strips
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-ups"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/ups"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/MIDLP61200_600x600.jpg?v=1764623266"
    
    alt="UPS"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/MIDLP61200_600x600.jpg?v=1764623266 1x, //shop.avispl.com/cdn/shop/files/MIDLP61200_798x798.jpg?v=1764623266 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          UPS
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-projectors          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Projectors</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projectors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projectors"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SHAXPP721QW_600x600.jpg?v=1764629960"
    
    alt="Projectors"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SHAXPP721QW_600x600.jpg?v=1764629960 1x, //shop.avispl.com/cdn/shop/files/SHAXPP721QW_798x798.jpg?v=1764629960 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Projectors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-lamps"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-lamps"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/EPSV13H010L93_600x400.jpg?v=1764622016"
    
    alt="Projector Lamps"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/EPSV13H010L93_600x400.jpg?v=1764622016 1x, //shop.avispl.com/cdn/shop/files/EPSV13H010L93_798x532.jpg?v=1764622016 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Projector Lamps
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-lenses"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-lenses"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/SONVPLLZ4107_600x400.jpg?v=1764623601"
    
    alt="Projector Lenses"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/SONVPLLZ4107_600x400.jpg?v=1764623601 1x, //shop.avispl.com/cdn/shop/files/SONVPLLZ4107_798x532.jpg?v=1764623601 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Projector Lenses
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-accessories"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/BENEZC5201BS_600x600.jpg?v=1764626982"
    
    alt="Projector Accessories"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/BENEZC5201BS_600x600.jpg?v=1764626982 1x, //shop.avispl.com/cdn/shop/files/BENEZC5201BS_798x798.jpg?v=1764626982 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Projector Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-open-box-projectors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/open-box-projectors"
        >
          
        
      
          Open Box Projectors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-filters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-filters"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/EPSV13H134A30_600x400.jpg?v=1764624104"
    
    alt="Projector Filters"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/EPSV13H134A30_600x400.jpg?v=1764624104 1x, //shop.avispl.com/cdn/shop/files/EPSV13H134A30_798x532.jpg?v=1764624104 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Projector Filters
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-projector-screens          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="/collections/projector-screens"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Projector Screens</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-fixed-frame-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/fixed-frame-screens"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/ELIAR135HATD4_600x444.jpg?v=1764628684"
    
    alt="Fixed Frame Screens"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/ELIAR135HATD4_600x444.jpg?v=1764628684 1x, //shop.avispl.com/cdn/shop/files/ELIAR135HATD4_798x591.jpg?v=1764628684 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Fixed Frame Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-electric-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/electric-screens"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/DAL34460_600x600.jpg?v=1764627660"
    
    alt="Electric Screens"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/DAL34460_600x600.jpg?v=1764627660 1x, //shop.avispl.com/cdn/shop/files/DAL34460_798x798.jpg?v=1764627660 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Electric Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-manual-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/manual-screens"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/ELIM125S_600x420.jpg?v=1764622264"
    
    alt="Manual Screens"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/ELIM125S_600x420.jpg?v=1764622264 1x, //shop.avispl.com/cdn/shop/files/ELIM125S_798x559.jpg?v=1764622264 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Manual Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-outdoor-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/outdoor-screens"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/ELIOMS200H2PLUS_600x444.jpg?v=1764629149"
    
    alt="Outdoor Screens"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/ELIOMS200H2PLUS_600x444.jpg?v=1764629149 1x, //shop.avispl.com/cdn/shop/files/ELIOMS200H2PLUS_798x591.jpg?v=1764629149 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Outdoor Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-portable-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/portable-screens"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/ELIFT113UHC4D_600x444.jpg?v=1764622951"
    
    alt="Portable Screens"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/ELIFT113UHC4D_600x444.jpg?v=1764622951 1x, //shop.avispl.com/cdn/shop/files/ELIFT113UHC4D_798x591.jpg?v=1764622951 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Portable Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-golf-simulation-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/golf-simulation-screens"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/ELIGSB10x10IPW1145_600x400.jpg?v=1764621362"
    
    alt="Golf Simulation Screens"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/ELIGSB10x10IPW1145_600x400.jpg?v=1764621362 1x, //shop.avispl.com/cdn/shop/files/ELIGSB10x10IPW1145_798x532.jpg?v=1764621362 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Golf Simulation Screens
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-racks-furniture          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Racks & Furniture</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-lecterns"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/lecterns"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/MIDL5FLATFR23LDW_600x600.jpg?v=1764627589"
    
    alt="Lecterns"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/MIDL5FLATFR23LDW_600x600.jpg?v=1764627589 1x, //shop.avispl.com/cdn/shop/files/MIDL5FLATFR23LDW_798x798.jpg?v=1764627589 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Lecterns
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-mobile-carts"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/mobile-carts"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CHLSCUW_jpg_600x600.jpg?v=1764623688"
    
    alt="Mobile Carts"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CHLSCUW_jpg_600x600.jpg?v=1764623688 1x, //shop.avispl.com/cdn/shop/files/CHLSCUW_jpg_798x798.jpg?v=1764623688 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Mobile Carts
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-mounts"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/mounts"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CHIRPAU_600x600.jpg?v=1764627945"
    
    alt="Mounts"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CHIRPAU_600x600.jpg?v=1764627945 1x, //shop.avispl.com/cdn/shop/files/CHIRPAU_798x798.jpg?v=1764627945 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Mounts
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-rack-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/rack-accessories"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/DAL98037_600x402.jpg?v=1764624851"
    
    alt="Rack Accessories"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/DAL98037_600x402.jpg?v=1764624851 1x, //shop.avispl.com/cdn/shop/files/DAL98037_798x535.jpg?v=1764624851 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Rack Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-stands"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/stands"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CHILDS1U_600x600.jpg?v=1764627052"
    
    alt="Stands"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CHILDS1U_600x600.jpg?v=1764627052 1x, //shop.avispl.com/cdn/shop/files/CHILDS1U_798x798.jpg?v=1764627052 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Stands
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-signal-processing          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Signal Processing</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-distribution-amplifiers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/distribution-amplifiers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREHDDA44KZE_600x400.jpg?v=1764620823"
    
    alt="Distribution Amplifiers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREHDDA44KZE_600x400.jpg?v=1764620823 1x, //shop.avispl.com/cdn/shop/files/CREHDDA44KZE_798x532.jpg?v=1764620823 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Distribution Amplifiers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-encoders-decoders"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/encoders-decoders"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREDMNVXD10_600x400.jpg?v=1764621111"
    
    alt="Encoders/Decoders"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREDMNVXD10_600x400.jpg?v=1764621111 1x, //shop.avispl.com/cdn/shop/files/CREDMNVXD10_798x532.jpg?v=1764621111 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Encoders/Decoders
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-receivers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="#"
        >
          
          Receivers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-routers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/routers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREDMNVXDIR2_600x1364.jpg?v=1764622925"
    
    alt="Routers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREDMNVXDIR2_600x1364.jpg?v=1764622925 1x, //shop.avispl.com/cdn/shop/files/CREDMNVXDIR2_798x1814.jpg?v=1764622925 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Routers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-scalers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/scalers"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CREDMRMC4KZSCALERC_600x400.jpg?v=1764627045"
    
    alt="Scalers"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CREDMRMC4KZSCALERC_600x400.jpg?v=1764627045 1x, //shop.avispl.com/cdn/shop/files/CREDMRMC4KZSCALERC_798x532.jpg?v=1764627045 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Scalers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-splitters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/splitters"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CABC2G41601_600x400.jpg?v=1764627730"
    
    alt="Splitters"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CABC2G41601_600x400.jpg?v=1764627730 1x, //shop.avispl.com/cdn/shop/files/CABC2G41601_798x532.jpg?v=1764627730 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Splitters
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-transmitters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/transmitters"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CRECREHDTX301CE_600x400.jpg?v=1764630008"
    
    alt="Transmitters"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CRECREHDTX301CE_600x400.jpg?v=1764630008 1x, //shop.avispl.com/cdn/shop/files/CRECREHDTX301CE_798x532.jpg?v=1764630008 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Transmitters
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      

        

        <li
          class="navmenu-item          navmenu-item-parent          navmenu-id-video          navmenu-meganav-sidenav__item"
          
            data-navmenu-trigger
            data-navmenu-parent
          
          
        >
          
            <details data-navmenu-details>
            <summary
              data-href="#"
          
            class="
              navmenu-item-text
              navmenu-link
              
                navmenu-link-parent
              
              navmenu-meganav-sidenav__item-text
            "
            
              aria-haspopup="true"
              aria-expanded="false"
          
           >
            <span class="navmenu-meganav-sidenav__submenu-wrapper">
              <span>Video</span>
              
                <span
                  class="navmenu-icon navmenu-icon-depth-2"
                >
                  <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

                </span>
              
            </span>
          
            </summary>
          

          

          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-conferencing"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-conferencing"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LOG960001336_600x400.jpg?v=1764626147"
    
    alt="Video Conferencing"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LOG960001336_600x400.jpg?v=1764626147 1x, //shop.avispl.com/cdn/shop/files/LOG960001336_798x532.jpg?v=1764626147 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Video Conferencing
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-ptz-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/ptz-cameras"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/VAD99999437000W_600x600.jpg?v=1764627538"
    
    alt="PTZ Cameras"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/VAD99999437000W_600x600.jpg?v=1764627538 1x, //shop.avispl.com/cdn/shop/files/VAD99999437000W_798x798.jpg?v=1764627538 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          PTZ Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-cameras-camcorders"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/cameras-camcorders"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAN5736C002_600x400.jpg?v=1764627135"
    
    alt="Cameras &amp; Camcorders"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAN5736C002_600x400.jpg?v=1764627135 1x, //shop.avispl.com/cdn/shop/files/CAN5736C002_798x532.jpg?v=1764627135 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Cameras & Camcorders
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-camera-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/camera-accessories"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAN6529C001_600x400.jpg?v=1764628207"
    
    alt="Camera Accessories"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAN6529C001_600x400.jpg?v=1764628207 1x, //shop.avispl.com/cdn/shop/files/CAN6529C001_798x532.jpg?v=1764628207 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Camera Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-web-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/web-cameras"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/LOG960001105_600x400.jpg?v=1764624269"
    
    alt="Web Cameras"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/LOG960001105_600x400.jpg?v=1764624269 1x, //shop.avispl.com/cdn/shop/files/LOG960001105_798x532.jpg?v=1764624269 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Web Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-cables"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/CAB26954_600x400.jpg?v=1764629981"
    
    alt="Video Cables"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/CAB26954_600x400.jpg?v=1764629981 1x, //shop.avispl.com/cdn/shop/files/CAB26954_798x532.jpg?v=1764629981 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Video Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-production"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-production"
        >
          
        
          <div class="navmenu-item__image-wrapper">
            

  

  <img
    
      src="//shop.avispl.com/cdn/shop/files/INOCAM230_600x315.jpg?v=1764624117"
    
    alt="Video Production"

    
      data-rimg
      srcset="//shop.avispl.com/cdn/shop/files/INOCAM230_600x315.jpg?v=1764624117 1x, //shop.avispl.com/cdn/shop/files/INOCAM230_798x419.jpg?v=1764624117 1.33x"
    

    class="navmenu-item__image"
    
    
  >




          </div>
        
      
          Video Production
</a>
      </li>
    
  
</ul>

          
            </details>
          
        </li>
      
    </ul>
  </div>
</div>

        
      
      </details>
    </li>
  
    
    

    
    
    
    
<li
      class="navmenu-item              navmenu-basic__item                    navmenu-item-parent                  navmenu-basic__item-parent                    navmenu-id-shop-by-solution"
      
      data-navmenu-parent
      
    >
      
        <details data-navmenu-details>
        <summary
      
        class="
          navmenu-link
          navmenu-link-depth-1
          navmenu-link-parent
          
        "
        
          aria-haspopup="true"
          aria-expanded="false"
          data-href="#"
        
      >
        Shop by Solution
        
          <span
            class="navmenu-icon navmenu-icon-depth-1"
            data-navmenu-trigger
          >
            <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

          </span>
        
      
        </summary>
      

      
        












<ul
  class="
    navmenu
    navmenu-depth-2
    navmenu-submenu
    
  "
  data-navmenu
  
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-meeting-rooms"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/pages/meeting-rooms"
        >
          
          Meeting Rooms
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-corporate"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/corporate"
        >
          
          Corporate
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-education"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/education-av"
        >
          
          Education
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-government"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/government"
        >
          
          Government
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-healthcare"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/healthcare"
        >
          
          Healthcare
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-house-of-worship"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/house-of-worship/house-of-worship"
        >
          
          House of Worship
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-home-theater"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/home-theater-projectors"
        >
          
          Home Theater
</a>
      </li>
    
  
</ul>

      
      </details>
    </li>
  
    
    

    
    
    
    
<li
      class="navmenu-item              navmenu-basic__item                  navmenu-id-shop-by-brand"
      
      
      
    >
      
        <a
      
        class="
          navmenu-link
          navmenu-link-depth-1
          
          
        "
        
          href="/pages/shop-by-brand"
        
      >
        Shop by Brand
        
      
        </a>
      

      
      </details>
    </li>
  
    
    

    
    
    
    
<li
      class="navmenu-item              navmenu-basic__item                  navmenu-id-deals"
      
      
      
    >
      
        <a
      
        class="
          navmenu-link
          navmenu-link-depth-1
          
          
        "
        
          href="/pages/deals"
        
      >
        Deals
        
      
        </a>
      

      
      </details>
    </li>
  
</ul>


      
        












<ul
  class="
    navmenu
    navmenu-depth-1
    
    site-navigation__secondary-menu
  "
  data-navmenu
  
  
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-customer-service"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/customer-service"
        >
          
          Customer Service
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-contact"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/contact"
        >
          
          Contact
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-blog"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          navmenu-link-active
        "
        href="/blogs/blog"
        >
          
          Blog
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-resources"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/blogs/resources"
        >
          
          Resources
</a>
      </li>
    
  
</ul>

      
    </nav>
  </div>

  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  <div class="mobile-nav-panel" data-mobile-nav-panel>

    <ul class="site-header-actions" data-header-actions>
  
    
      <li class="site-header-actions__account-link">
        <a
          class="site-header_account-link-anchor"
          href="https://shopify.com/86458597655/account?locale=en&region_country=US"
        >
          <span class="site-header__account-icon">
            


    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                  

          </span>
          
          <span class="site-header_account-link-text">
            Login
          </span>
        </a>
      </li>
    
  
</ul>


    <a
      class="mobile-nav-close"
      href="#site-header-nav"
      data-mobile-nav-close>
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  xmlns="http://www.w3.org/2000/svg"
  width="13"
  height="13"
  viewBox="0 0 13 13"
>
  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
</svg>
      <span class="visually-hidden">Close</span>
    </a>

    <div class="mobile-nav-content" data-mobile-nav-content>
      




<ul
  class="navmenu navmenu-depth-1"
  data-navmenu
  aria-label="Main menu"
>
  
    
    

    
    
    
<li
      class="navmenu-item      navmenu-item-parent      navmenu-id-shop-all"
      data-navmenu-parent
    >
      <a
        class="navmenu-link navmenu-link-parent "
        href="#"
        
          aria-haspopup="true"
          aria-expanded="false"
        
      >
        Shop All
      </a>

      
        



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon ">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Shop All</span>
  </div>
</button>

      

      
      

      
        












<ul
  class="
    navmenu
    navmenu-depth-2
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-audio"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Audio

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Audio</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-headsets"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/headsets"
        >
          
          Headsets
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-microphones"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/microphones"
        >
          
          Microphones
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-amplifiers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/amplifier"
        >
          
          Audio Amplifiers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-cables"
        >
          
          Audio Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-conferencing"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-conferencing"
        >
          
          Audio Conferencing
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-mixers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-mixers"
        >
          
          Audio Mixers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-processors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-processor"
        >
          
          Audio Processors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-speakers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/speakers"
        >
          
          Speakers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-wireless-microphone-systems"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/wireless-microphone-systems"
        >
          
          Wireless Microphone Systems
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-cables"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Cables

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Cables</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-cables"
        >
          
          Video Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-network-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/network-cables"
        >
          
          Network Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-audio-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/audio-cables"
        >
          
          Audio Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-cable-adapters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/cable-adapters"
        >
          
          Cable Adapters
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-cable-management"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/cable-management"
        >
          
          Cable Management
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-power-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/power-cables"
        >
          
          Power Cables
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-computers-and-networking"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Computers and Networking

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Computers and Networking</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-bridges"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/bridges"
        >
          
          Bridges
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-computer-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/computer-accessories"
        >
          
          Computer Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-control-systems"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/control-systems"
        >
          
          Control Systems
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-docking-stations"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/docking-stations"
        >
          
          Docking Stations
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-extenders"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/extenders"
        >
          
          Extenders
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-laptops"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/laptop-computers"
        >
          
          Laptops
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-monitors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/monitors"
        >
          
          Monitors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-routers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/routers"
        >
          
          Routers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-switchers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/switchers"
        >
          
          Switchers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-transmitters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/transmitters"
        >
          
          Transmitters
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-web-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/web-cameras"
        >
          
          Web Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-wireless-adapters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/wireless-adapters"
        >
          
          Wireless Adapters
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-displays"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Displays

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Displays</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-tvs-displays"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/tvs-displays"
        >
          
          TVs & Displays
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-presentation-solutions"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/presentation-solutions"
        >
          
          Presentation Solutions
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-document-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/document-cameras"
        >
          
          Document Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-dv-led"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/dv-led"
        >
          
          DV-LED
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-mounts"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/mounts"
        >
          
          Mounts
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-licenses-warranties"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Licenses & Warranties

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Licenses & Warranties</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-extended-warranties"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/extended-warranties"
        >
          
          Extended Warranties
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-software-licenses"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/software-licenses"
        >
          
          Software Licenses
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-printers-and-printer-supplies"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Printers and Printer Supplies

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Printers and Printer Supplies</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-large-format-printer"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/printer"
        >
          
          Large Format Printer
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-printer-ink"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/printer-ink"
        >
          
          Printer Ink
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-printer-paper"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/printer-paper"
        >
          
          Printer Paper
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-power-management"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Power Management

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Power Management</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-chargers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/chargers"
        >
          
          Chargers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-extension-cords"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/extension-cords"
        >
          
          Extension Cords
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-power-strips"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/power-strips"
        >
          
          Power Strips
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-ups"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/ups"
        >
          
          UPS
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-projectors"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Projectors

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Projectors</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projectors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projectors"
        >
          
          Projectors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-lamps"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-lamps"
        >
          
          Projector Lamps
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-lenses"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-lenses"
        >
          
          Projector Lenses
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-accessories"
        >
          
          Projector Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-open-box-projectors"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/open-box-projectors"
        >
          
          Open Box Projectors
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-projector-filters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/projector-filters"
        >
          
          Projector Filters
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-projector-screens"
        data-navmenu-parent
      >
        
          <a
            href="/collections/projector-screens"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Projector Screens

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Projector Screens</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-fixed-frame-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/fixed-frame-screens"
        >
          
          Fixed Frame Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-electric-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/electric-screens"
        >
          
          Electric Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-manual-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/manual-screens"
        >
          
          Manual Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-outdoor-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/outdoor-screens"
        >
          
          Outdoor Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-portable-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/portable-screens"
        >
          
          Portable Screens
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-golf-simulation-screens"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/golf-simulation-screens"
        >
          
          Golf Simulation Screens
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-racks-furniture"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Racks & Furniture

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Racks & Furniture</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-lecterns"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/lecterns"
        >
          
          Lecterns
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-mobile-carts"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/mobile-carts"
        >
          
          Mobile Carts
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-mounts"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/mounts"
        >
          
          Mounts
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-rack-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/rack-accessories"
        >
          
          Rack Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-stands"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/stands"
        >
          
          Stands
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-signal-processing"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Signal Processing

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Signal Processing</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-distribution-amplifiers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/distribution-amplifiers"
        >
          
          Distribution Amplifiers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-encoders-decoders"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/encoders-decoders"
        >
          
          Encoders/Decoders
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-receivers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="#"
        >
          
          Receivers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-routers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/routers"
        >
          
          Routers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-scalers"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/scalers"
        >
          
          Scalers
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-splitters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/splitters"
        >
          
          Splitters
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-transmitters"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/transmitters"
        >
          
          Transmitters
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
    

    
    

    
    

    

    
<li
        class="navmenu-item        navmenu-item-parent        navmenu-id-video"
        data-navmenu-parent
      >
        
          <a
            href="#"
        
          class="navmenu-link navmenu-link-parent "
          
            aria-haspopup="true"
            aria-expanded="false"
          
        >
          
          Video

        
          </a>
        

        
          



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon navmenu-icon-depth-2">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Video</span>
  </div>
</button>

        

        
          












<ul
  class="
    navmenu
    navmenu-depth-3
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-conferencing"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-conferencing"
        >
          
          Video Conferencing
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-ptz-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/ptz-cameras"
        >
          
          PTZ Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-cameras-camcorders"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/cameras-camcorders"
        >
          
          Cameras & Camcorders
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-camera-accessories"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/camera-accessories"
        >
          
          Camera Accessories
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-web-cameras"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/web-cameras"
        >
          
          Web Cameras
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-cables"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-cables"
        >
          
          Video Cables
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-video-production"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-3
          
        "
        href="/collections/video-production"
        >
          
          Video Production
</a>
      </li>
    
  
</ul>

        
        
      </li>
    
  
</ul>

      

      
    </li>
  
    
    

    
    
    
<li
      class="navmenu-item      navmenu-item-parent      navmenu-id-shop-by-solution"
      data-navmenu-parent
    >
      <a
        class="navmenu-link navmenu-link-parent "
        href="#"
        
          aria-haspopup="true"
          aria-expanded="false"
        
      >
        Shop by Solution
      </a>

      
        



<button
  class="navmenu-button"
  data-navmenu-trigger
  aria-expanded="false"
>
  <div class="navmenu-button-wrapper" tabindex="-1">
    <span class="navmenu-icon ">
      <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

    </span>
    <span class="visually-hidden">Shop by Solution</span>
  </div>
</button>

      

      
      

      
        












<ul
  class="
    navmenu
    navmenu-depth-2
    navmenu-submenu
    
  "
  data-navmenu
  data-accordion-content
  data-navmenu-submenu
  aria-label="Main menu"
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-meeting-rooms"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/pages/meeting-rooms"
        >
          
          Meeting Rooms
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-corporate"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/corporate"
        >
          
          Corporate
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-education"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/education-av"
        >
          
          Education
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-government"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/government"
        >
          
          Government
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-healthcare"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/healthcare"
        >
          
          Healthcare
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-house-of-worship"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/house-of-worship/house-of-worship"
        >
          
          House of Worship
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-home-theater"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-2
          
        "
        href="/collections/home-theater-projectors"
        >
          
          Home Theater
</a>
      </li>
    
  
</ul>

      

      
    </li>
  
    
    

    
    
    
<li
      class="navmenu-item            navmenu-id-shop-by-brand"
      
    >
      <a
        class="navmenu-link  "
        href="/pages/shop-by-brand"
        
      >
        Shop by Brand
      </a>

      

      
      

      

      
    </li>
  
    
    

    
    
    
<li
      class="navmenu-item            navmenu-id-deals"
      
    >
      <a
        class="navmenu-link  "
        href="/pages/deals"
        
      >
        Deals
      </a>

      

      
      

      

      
    </li>
  
</ul>


      
        <span class="mobile-nav-content__border"></span>
        <div class="mobile-nav-content__secondary-menu">
          












<ul
  class="
    navmenu
    navmenu-depth-1
    
    
  "
  data-navmenu
  
  
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-customer-service"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/customer-service"
        >
          
          Customer Service
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-contact"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/contact"
        >
          
          Contact
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-blog"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          navmenu-link-active
        "
        href="/blogs/blog"
        >
          
          Blog
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-resources"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/blogs/resources"
        >
          
          Resources
</a>
      </li>
    
  
</ul>

        </div>
      
    </div>
    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  </div>

  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
</div>

</header>





  <div id="sitewide-banner">
    
      <a href="https://shop.avispl.com/collections/corporate">
        <img
          src="//shop.avispl.com/cdn/shop/files/sitewide-finish-the-year-strong.jpg?v=1765205451"
          alt="Sitewide Banner"
          width="100%"
          height="100%"
        >
      </a>
    
  </div>





<style> #shopify-section-sections--23926582673687__header .navmenu-link-depth-2 {text-align: left;} </style></div>
<!-- END sections: header-group -->

    <div style="--background-color: #ffffff">
      


    </div>

    <div class="intersection-target" data-header-intersection-target></div>
    <div class="site-main-dimmer" data-site-main-dimmer></div>
    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
      <div id="shopify-section-template--23926587621655__main" class="shopify-section blog--section section--canonical"><script
  type="application/json"
  data-section-type="static-blog"
  data-section-id="template--23926587621655__main">
</script>







<section class="blog--container">
  <header class="blog-title">
    <h1>Blog</h1>
    
      <a href="/blogs/blog.atom">
        <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  xmlns="http://www.w3.org/2000/svg"
  width="10"
  height="10"
  viewBox="0 0 10 10"
>
  <path d="M1.33479667,7.31943167 C0.589831816,7.31943167 0,7.93121348 0,8.66520333 C0,9.41016818 0.589831816,10.010975 1.33479667,10.010975 C2.07990983,10.010975 2.68056833,9.42114318 2.68056833,8.66520333 C2.66959333,7.93121348 2.06878652,7.31943167 1.33479667,7.31943167 Z M0.0783080711,3.44822472 L0.0783080711,5.20600362 C1.33538991,5.22795361 2.50333699,5.71752736 3.39320144,6.60739181 C4.28306588,7.50823125 4.77263963,8.67617833 4.79458962,9.93340848 L6.56334352,9.93340848 C6.50713375,6.3739507 3.63776585,3.48189126 0.0783080711,3.44822472 Z M0.0892830659,6.39488462e-14 L0.0892830659,1.7577789 C4.54958028,1.80167888 8.18660457,5.45041972 8.2422211,9.93340848 L10,9.93340848 C9.95535847,4.48298876 5.52872779,0.0446415329 0.0892830659,6.39488462e-14 Z"></path>
</svg>
        <span class="visually-hidden">RSS</span>
      </a>
    
  </header>

  

    

    <ul class="blog--inner">
      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/plug-in-and-meet-the-neat-bar-byod-solution-for-modern-workspaces"
        aria-label="Plug In and Meet: The Neat Bar BYOD Solution for Modern Workspaces"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/NEATBar_700x700_crop_center.jpg?v=1762282933"
        

        alt="Plug In and Meet: The Neat Bar BYOD Solution for Modern Workspaces"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/NEATBar_700x700_crop_center.jpg?v=1762282933 1x, //shop.avispl.com/cdn/shop/articles/NEATBar_1400x1400_crop_center.jpg?v=1762282933 2x, //shop.avispl.com/cdn/shop/articles/NEATBar_1890x1890_crop_center.jpg?v=1762282933 2.7x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/NEATBar_700x700_crop_center.jpg?v=1762282933"
    
    alt="Plug In and Meet: The Neat Bar BYOD Solution for Modern Workspaces"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/NEATBar_{size}_crop_center.jpg?v=1762282933"
      data-rimg-max="3360x1894"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='700'%20height='700'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              November  4, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/plug-in-and-meet-the-neat-bar-byod-solution-for-modern-workspaces">
          Plug In and Meet: The Neat Bar BYOD Solution for Modern Workspaces
        </a>
      </h2><div class="article--excerpt-text rte"><p>The Neat Bar BYOD Meeting Room Solution brings simplicity and clarity to small and medium collaboration spaces. With plug-and-play setup and high-quality audio and video, it makes every meeting feel more natural and effortless.</p>
</div><a class="article--excerpt-readmore" href="/blogs/blog/plug-in-and-meet-the-neat-bar-byod-solution-for-modern-workspaces">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/crestron-room-scheduler-smarter-scheduling-for-better-productivity"
        aria-label="Crestron Room Scheduler: Smarter Scheduling for Better Productivity"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/CrestronSceduler_img_630x630_crop_center.png?v=1762282689"
        

        alt="Modern conference room with a long rectangular table surrounded by chairs, a wall‐mounted display at one end showing scheduling panels, and large floor‑to‑ceiling windows letting in daylight"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/CrestronSceduler_img_630x630_crop_center.png?v=1762282689 1x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/CrestronSceduler_img_630x630_crop_center.png?v=1762282689"
    
    alt="Modern conference room with a long rectangular table surrounded by chairs, a wall‐mounted display at one end showing scheduling panels, and large floor‑to‑ceiling windows letting in daylight"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/CrestronSceduler_img_{size}_crop_center.png?v=1762282689"
      data-rimg-max="1110x630"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='630'%20height='630'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              November  4, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/crestron-room-scheduler-smarter-scheduling-for-better-productivity">
          Crestron Room Scheduler: Smarter Scheduling for Better Productivity
        </a>
      </h2><div class="article--excerpt-text rte"><p>The Crestron Room Scheduler makes it simple to find and reserve meeting spaces with real-time availability and one-touch booking. It helps teams stay productive and keeps collaboration flowing.</p>
</div><a class="article--excerpt-readmore" href="/blogs/blog/crestron-room-scheduler-smarter-scheduling-for-better-productivity">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/clear-simple-connected-introducing-the-logitech-meetup-2"
        aria-label="Clear, Simple, Connected: Introducing the Logitech MeetUp 2"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/meetup-2-overview_678x678_crop_center.webp?v=1762282645"
        

        alt="“Front-view of the Logitech MeetUp 2 all-in-one video bar: a wide, black rectangular unit with a centered camera lens flanked by dual speaker grilles."
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/meetup-2-overview_678x678_crop_center.webp?v=1762282645 1x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/meetup-2-overview_678x678_crop_center.webp?v=1762282645"
    
    alt="“Front-view of the Logitech MeetUp 2 all-in-one video bar: a wide, black rectangular unit with a centered camera lens flanked by dual speaker grilles."

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/meetup-2-overview_{size}_crop_center.webp?v=1762282645"
      data-rimg-max="1206x678"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='678'%20height='678'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              November  4, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/clear-simple-connected-introducing-the-logitech-meetup-2">
          Clear, Simple, Connected: Introducing the Logitech MeetUp 2
        </a>
      </h2><div class="article--excerpt-text rte"><p>The Logitech MeetUp 2 brings smarter collaboration to small meeting rooms with simple setup, AI-enhanced audio and video, and a natural, inclusive meeting experience.</p>
</div><a class="article--excerpt-readmore" href="/blogs/blog/clear-simple-connected-introducing-the-logitech-meetup-2">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/transform-collaboration-with-the-logitech-rally-board-65-video-conferencing-display"
        aria-label="Transform Collaboration with the Logitech Rally Board 65” Video Conferencing Display"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/maxresdefault_1_0ba1eced-2dba-486e-a995-37b7857a87f9_700x700_crop_center.jpg?v=1752163806"
        

        alt="Transform Collaboration with the Logitech Rally Board 65” Video Conferencing Display"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/maxresdefault_1_0ba1eced-2dba-486e-a995-37b7857a87f9_700x700_crop_center.jpg?v=1752163806 1x, //shop.avispl.com/cdn/shop/articles/maxresdefault_1_0ba1eced-2dba-486e-a995-37b7857a87f9_714x714_crop_center.jpg?v=1752163806 1.02x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/maxresdefault_1_0ba1eced-2dba-486e-a995-37b7857a87f9_700x700_crop_center.jpg?v=1752163806"
    
    alt="Transform Collaboration with the Logitech Rally Board 65” Video Conferencing Display"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/maxresdefault_1_0ba1eced-2dba-486e-a995-37b7857a87f9_{size}_crop_center.jpg?v=1752163806"
      data-rimg-max="1280x720"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='700'%20height='700'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              July 28, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/transform-collaboration-with-the-logitech-rally-board-65-video-conferencing-display">
          Transform Collaboration with the Logitech Rally Board 65” Video Conferencing Display
        </a>
      </h2><div class="article--excerpt-text rte"><p>The Logitech Rally Board 65” is an all-in-one video collaboration display that brings together premium hardware, intuitive controls, and AI-powered features are designed to meet the demands of today’s flexible work environments. Whether you’re equipping executive conference rooms, training spaces,...</p></div><a class="article--excerpt-readmore" href="/blogs/blog/transform-collaboration-with-the-logitech-rally-board-65-video-conferencing-display">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/check-out-epsons-powerlite-l-series-projectors-for-meeting-room-classroom-and-golf-simulator"
        aria-label="Epson PowerLite L Series: Perfect Projectors for Meetings, Classrooms, and Golf Simulators"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/Epson_PowerLite_Projectors_narrow_b28ac11d-34e6-4094-aa84-627791fea46a_700x700_crop_center.jpg?v=1751293281"
        

        alt="Group of four Epson PowerLite L Series projectors displayed together"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/Epson_PowerLite_Projectors_narrow_b28ac11d-34e6-4094-aa84-627791fea46a_700x700_crop_center.jpg?v=1751293281 1x, //shop.avispl.com/cdn/shop/articles/Epson_PowerLite_Projectors_narrow_b28ac11d-34e6-4094-aa84-627791fea46a_1400x1400_crop_center.jpg?v=1751293281 2x, //shop.avispl.com/cdn/shop/articles/Epson_PowerLite_Projectors_narrow_b28ac11d-34e6-4094-aa84-627791fea46a_1414x1414_crop_center.jpg?v=1751293281 2.02x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/Epson_PowerLite_Projectors_narrow_b28ac11d-34e6-4094-aa84-627791fea46a_700x700_crop_center.jpg?v=1751293281"
    
    alt="Group of four Epson PowerLite L Series projectors displayed together"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/Epson_PowerLite_Projectors_narrow_b28ac11d-34e6-4094-aa84-627791fea46a_{size}_crop_center.jpg?v=1751293281"
      data-rimg-max="2700x1414"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='700'%20height='700'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              July 28, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/check-out-epsons-powerlite-l-series-projectors-for-meeting-room-classroom-and-golf-simulator">
          Epson PowerLite L Series: Perfect Projectors for Meetings, Classrooms, and Golf Simulators
        </a>
      </h2><div class="article--excerpt-text rte"><p>Epson has a good lineup of PowerLite L Series projectors that are so versatile. Whether you're trying to impress the big wigs in the meeting room, keep the kiddos engaged in the classroom, transport your audience to another dimension with an...</p></div><a class="article--excerpt-readmore" href="/blogs/blog/check-out-epsons-powerlite-l-series-projectors-for-meeting-room-classroom-and-golf-simulator">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/exploring-sony-bravia-professional-display-solutions"
        aria-label="Sony BRAVIA Professional Displays: Revolutionizing Workspaces, Classrooms, and Beyond with Cutting-Edge Technology"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/SonyDisplays_versatile_b7e9f99c-4978-4c07-bb7e-fd761cf1fc30_550x550_crop_center.jpg?v=1762265773"
        

        alt="Professional-grade Sony Bravia display presenting information in a contemporary office lobby"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/SonyDisplays_versatile_b7e9f99c-4978-4c07-bb7e-fd761cf1fc30_550x550_crop_center.jpg?v=1762265773 1x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/SonyDisplays_versatile_b7e9f99c-4978-4c07-bb7e-fd761cf1fc30_550x550_crop_center.jpg?v=1762265773"
    
    alt="Professional-grade Sony Bravia display presenting information in a contemporary office lobby"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/SonyDisplays_versatile_b7e9f99c-4978-4c07-bb7e-fd761cf1fc30_{size}_crop_center.jpg?v=1762265773"
      data-rimg-max="1400x550"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='550'%20height='550'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              July 28, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/exploring-sony-bravia-professional-display-solutions">
          Sony BRAVIA Professional Displays: Revolutionizing Workspaces, Classrooms, and Beyond with Cutting-Edge Technology
        </a>
      </h2><div class="article--excerpt-text rte"><p>Sony BRAVIA Professional Display, the only display designed to create connected experiences in places like Hybrid workspaces, Classrooms, Immersive exhibits, Transportation hubs, Retail spaces and so on.. They aren't just gloried TVs, they're packed with advanced imaging and audio tech,...</p></div><a class="article--excerpt-readmore" href="/blogs/blog/exploring-sony-bravia-professional-display-solutions">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/crestron-government-solutions"
        aria-label="Crestron Government Solutions"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/commandcenter_700x700_crop_center.jpg?v=1741279999"
        

        alt="Crestron Government Solutions"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/commandcenter_700x700_crop_center.jpg?v=1741279999 1x, //shop.avispl.com/cdn/shop/articles/commandcenter_1022x1022_crop_center.jpg?v=1741279999 1.46x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/commandcenter_700x700_crop_center.jpg?v=1741279999"
    
    alt="Crestron Government Solutions"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/commandcenter_{size}_crop_center.jpg?v=1741279999"
      data-rimg-max="2579x1028"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='700'%20height='700'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              July 28, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/crestron-government-solutions">
          Crestron Government Solutions
        </a>
      </h2><div class="article--excerpt-text rte"><p>Government agencies all around the world rely on Crestron’s complete portfolio of certified, robust, and TAA compliant Audio-Visual and Unified Communications technology. Crestron’s expertise in this field is supported by key security certifications and approvals, ensuring your needs and requirements...</p></div><a class="article--excerpt-readmore" href="/blogs/blog/crestron-government-solutions">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/explore-poly-bluetooth-headsets"
        aria-label="Explore Poly Bluetooth Headsets"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/Article_351_HeroImage_1000x374_bb69037f-ef6e-4d8e-8a1a-53cef2865063_374x374_crop_center.png?v=1740062802"
        

        alt="Explore Poly Bluetooth Headsets"
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/Article_351_HeroImage_1000x374_bb69037f-ef6e-4d8e-8a1a-53cef2865063_374x374_crop_center.png?v=1740062802 1x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/Article_351_HeroImage_1000x374_bb69037f-ef6e-4d8e-8a1a-53cef2865063_374x374_crop_center.png?v=1740062802"
    
    alt="Explore Poly Bluetooth Headsets"

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/Article_351_HeroImage_1000x374_bb69037f-ef6e-4d8e-8a1a-53cef2865063_{size}_crop_center.png?v=1740062802"
      data-rimg-max="1000x374"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='374'%20height='374'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              July 28, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/explore-poly-bluetooth-headsets">
          Explore Poly Bluetooth Headsets
        </a>
      </h2><div class="article--excerpt-text rte"><p><span>Poly Bluetooth headsets guarantee your calls are crystal clear. Learn which headset will work best where you do by getting to know Poly Bluetooth headsets.</span></p>
</div><a class="article--excerpt-readmore" href="/blogs/blog/explore-poly-bluetooth-headsets">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
        



<li class="article--excerpt-wrapper  ">
<article class="article-list-item">

  
    
      <a
        class="article--excerpt-image"
        href="/blogs/blog/enhancing-hybrid-learning-top-neat-devices-seamless-classroom-conference-room"
        aria-label="Enhancing Hybrid Learning: Top Neat Devices for Seamless Classroom and Conference Room"
      >
        

  
    <noscript data-rimg-noscript>
      <img
        
          src="//shop.avispl.com/cdn/shop/articles/neat6_083c7eef-71af-4477-840e-ed4015818b1a_559x559_crop_center.jpg?v=1739378593"
        

        alt="A Neat Board with a video bar and a Neat Bar Pro placed separately, along with a pad nearly positioned in front, ready for use."
        data-rimg="noscript"
        srcset="//shop.avispl.com/cdn/shop/articles/neat6_083c7eef-71af-4477-840e-ed4015818b1a_559x559_crop_center.jpg?v=1739378593 1x"
        
        
        
      >
    </noscript>
  

  <img
    
      src="//shop.avispl.com/cdn/shop/articles/neat6_083c7eef-71af-4477-840e-ed4015818b1a_559x559_crop_center.jpg?v=1739378593"
    
    alt="A Neat Board with a video bar and a Neat Bar Pro placed separately, along with a pad nearly positioned in front, ready for use."

    
      data-rimg="lazy"
      data-rimg-scale="1"
      data-rimg-template="//shop.avispl.com/cdn/shop/articles/neat6_083c7eef-71af-4477-840e-ed4015818b1a_{size}_crop_center.jpg?v=1739378593"
      data-rimg-max="1904x559"
      data-rimg-crop="center"
      
      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='559'%20height='559'></svg>"
    

    
    
    
  >



  <div data-rimg-canvas></div>


      </a>
    

    <div class="article--excerpt-content">
      
        <div class="article--excerpt-meta">
          
            <span class="article--excerpt-meta-item">
              July 28, 2025
            </span>
          

          
        </div>
      

      <h2 class="article--excerpt-title">
        <a href="/blogs/blog/enhancing-hybrid-learning-top-neat-devices-seamless-classroom-conference-room">
          Enhancing Hybrid Learning: Top Neat Devices for Seamless Classroom and Conference Room
        </a>
      </h2><div class="article--excerpt-text rte"><p>In today’s hybrid learning environments, it’s vital to make sure both in-person and remote students have a smooth ride. Whether you’re in a seminar, training session, or class, clear audio and video are a must. This allows everyone to easily...</p></div><a class="article--excerpt-readmore" href="/blogs/blog/enhancing-hybrid-learning-top-neat-devices-seamless-classroom-conference-room">
        Read now

        <span class="article--excerpt-readmore--icon">
          


                                                                                                      <svg class="icon-signpost-arrow "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none">      <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7272 5.6364L10.3636 1.27279L11.6364 0L17.2728 5.6364L11.6364 11.2728L10.3636 10L14.7272 5.6364Z" fill="currentColor"/>      <path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.73645L16 4.73645L16 6.53645L-1.57361e-07 6.53645L0 4.73645Z" fill="currentColor"/>    </svg>                

        </span>
      </a>
    </div>
  

</article>
</li>

      
    </ul>

    


  <nav class="pagination--container" aria-label="Pagination">
    <ul class="pagination--inner">

      

      
        
          
            <li
              class="pagination--active"
              aria-label="Page 1"
              aria-current="true"
            >
              <span class="pagination--item">
                1
              </span>
            </li>
          
        
      
        
          <li>
            <a
              class="pagination--item"
              href="/blogs/blog?page=2"
              aria-label="Go to page 2"
            >
              2
            </a>
          </li>
        
      
        
          <li>
            <a
              class="pagination--item"
              href="/blogs/blog?page=3"
              aria-label="Go to page 3"
            >
              3
            </a>
          </li>
        
      
        
          
            <li class="pagination--ellipsis">
              <span class="pagination--item">
                &hellip;
              </span>
            </li>
          
        
      
        
          <li>
            <a
              class="pagination--item"
              href="/blogs/blog?page=7"
              aria-label="Go to page 7"
            >
              7
            </a>
          </li>
        
      
      
        <li class="pagination--next">
          <a
            class="pagination--item"
            href="/blogs/blog?page=2"
            aria-label="Go to next page"
          >
            Next
            <span class="pagination--chevron-right" aria-hidden="true">
              <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

            </span>
          </a>
        </li>
      
    </ul>
  </nav>


  
</section>

</div>
    </main><div
  class="back-to-top"
  data-back-to-top
>
<button class="back-to-top__button" aria-label="Back to Top">
  <span class="back-to-top__desktop-label-wrapper">
    <span
      class="
        back-to-top__button-label
        back-to-top__button-label--desktop
      "
    >Top</span>
  </span>

    <span
      class="
        back-to-top__button-label
        back-to-top__button-label--mobile
      "
    >Back to top</span>
    <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="8"
  height="6"
  viewBox="0 0 8 6"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
  class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>

  </button>
</div>
<!-- BEGIN sections: footer-group -->
<div id="shopify-section-sections--23926582640919__footer" class="shopify-section shopify-section-group-footer-group"><script
  type="application/json"
  data-section-id="sections--23926582640919__footer"
  data-section-type="static-footer">
</script>





<footer role="contentinfo" aria-label="Footer">
  <section class="site-footer-wrapper">
    
      <div class="site-footer-item">
        <div class="site-footer-blocks column-count-5">
          <div class="site-footer-block-item  site-footer-block-rich-text  " >

  
    
      <h2 class="site-footer-block-title">
        Contact
      </h2>
    

    
      <div class="site-footer-block-content rte">
        <p>AVI-SPL, LLC.<br/>6301 Benajmin Rd. Suite 101<br/>Tampa, FL 33634</p><p><strong>+1 (888) 248-0675</strong></p>
      </div>
    

    
  
</div>
<div class="site-footer-block-item  site-footer-block-menu  has-accordion" >

  
      <h2 class="site-footer-block-title" data-accordion-trigger>
        Products

        <span class="site-footer-block-icon accordion--icon">
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="14"
  height="8"
  viewBox="0 0 14 8"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>

        </span>
      </h2>

      <div class="site-footer-block-content">
        












<ul
  class="
    navmenu
    navmenu-depth-1
    
    
  "
  data-navmenu
  data-accordion-content
  
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-shop-by-solution"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/shop-by-solution"
        >
          
          Shop by Solution
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-shop-by-brand"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/shop-by-brand"
        >
          
          Shop by Brand
</a>
      </li>
    
  
</ul>

      </div>
  
</div>
<div class="site-footer-block-item  site-footer-block-menu  has-accordion" >

  
      <h2 class="site-footer-block-title" data-accordion-trigger>
        My Account

        <span class="site-footer-block-icon accordion--icon">
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="14"
  height="8"
  viewBox="0 0 14 8"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>

        </span>
      </h2>

      <div class="site-footer-block-content">
        












<ul
  class="
    navmenu
    navmenu-depth-1
    
    
  "
  data-navmenu
  data-accordion-content
  
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-login"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="https://shopify.com/86458597655/account"
        >
          
          Login
</a>
      </li>
    
  
</ul>

      </div>
  
</div>
<div class="site-footer-block-item  site-footer-block-menu  has-accordion" >

  
      <h2 class="site-footer-block-title" data-accordion-trigger>
        Helpful Links

        <span class="site-footer-block-icon accordion--icon">
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="14"
  height="8"
  viewBox="0 0 14 8"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>

        </span>
      </h2>

      <div class="site-footer-block-content">
        












<ul
  class="
    navmenu
    navmenu-depth-1
    
    
  "
  data-navmenu
  data-accordion-content
  
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-customer-service"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/customer-service"
        >
          
          Customer Service
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-returns-purchase-policy"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/policies/refund-policy"
        >
          
          Returns / Purchase Policy
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-resources"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/resources"
        >
          
          Resources
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-ada-statement"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/ada-statement"
        >
          
          ADA Statement
</a>
      </li>
    
  
</ul>

      </div>
  
</div>
<div class="site-footer-block-item  site-footer-block-rich-text  " >

  
    
      <h2 class="site-footer-block-title">
        Chat
      </h2>
    

    
      <div class="site-footer-block-content rte">
        <p><a href="https://direct.lc.chat/1057831/12" title="https://direct.lc.chat/1057831/12">Chat with a live U.S. based expert</a></p>
      </div>
    

    
  
</div>

        </div>
      </div>
    

    <div class="site-footer-item site-footer-item--information">
      <div class="site-footer__row site-footer__row--first">
<div class="site-footer-right site-footer-right--payments-only"><ul class="payment-icons">
          
            <li class="payment-icons-item">
              <svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>

            </li>
          
            <li class="payment-icons-item">
              <svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
            </li>
          
            <li class="payment-icons-item">
              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
            </li>
          
            <li class="payment-icons-item">
              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
            </li>
          

<!-- Affirm (manual) -->
<li class="payment-icons__item">
  <img
    src="https://cdn.shopify.com/s/files/1/0864/5859/7655/files/affirm-logo-4828.svg?v=1759934001"
    alt="Affirm"
    style="height:28px;width:auto;vertical-align:middle;background:#fff;border-radius:4px;padding:3px 5px;margin-top:1px;"
    loading="lazy"
  >
</li>

        </ul></div>
      </div>

      <div class="site-footer__row site-footer__row--second">
        <div class="site-footer__row-inner-wrapper-left"><nav
              class="site-footer-navigation"
              aria-label="Footer"
            >
              












<ul
  class="
    navmenu
    navmenu-depth-1
    
    
  "
  data-navmenu
  
  
  
>
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-privacy-policy"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="https://shop.avispl.com/pages/security-privacy-policy"
        >
          
          Privacy Policy
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-terms-and-conditions"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/terms-and-conditions"
        >
          
          Terms and Conditions
</a>
      </li>
    
  
    

    
    

    
    

    

    
      <li
        class="navmenu-item navmenu-id-do-not-sell-my-personal-information"
      >
        <a
        class="
          navmenu-link
          navmenu-link-depth-1
          
        "
        href="/pages/security-privacy-policy"
        >
          
          Do Not Sell My Personal Information
</a>
      </li>
    
  
</ul>

            </nav><p class="site-footer-credits">Copyright &copy; 2025 AVI-SPL, LLC.
          </p>

          <!-- <p class="site-footer-credits">
            <a target="_blank" rel="nofollow" href="https://www.shopify.com?utm_campaign=poweredby&amp;utm_medium=shopify&amp;utm_source=onlinestore">Powered by Shopify</a>
          </p> -->
        </div>

        
<div class="site-footer-right site-footer-right--payments-only"><ul class="payment-icons">
          
            <li class="payment-icons-item">
              <svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>

            </li>
          
            <li class="payment-icons-item">
              <svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
            </li>
          
            <li class="payment-icons-item">
              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
            </li>
          
            <li class="payment-icons-item">
              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
            </li>
          

<!-- Affirm (manual) -->
<li class="payment-icons__item">
  <img
    src="https://cdn.shopify.com/s/files/1/0864/5859/7655/files/affirm-logo-4828.svg?v=1759934001"
    alt="Affirm"
    style="height:28px;width:auto;vertical-align:middle;background:#fff;border-radius:4px;padding:3px 5px;margin-top:1px;"
    loading="lazy"
  >
</li>

        </ul></div>
      </div>
    </div>
  </section>
</footer>

<style> #shopify-section-sections--23926582640919__footer h5 {color: #ffffff;} #shopify-section-sections--23926582640919__footer .rte {padding-left: 0px;} #shopify-section-sections--23926582640919__footer ul {padding-left: 0px; list-style: none;} #shopify-section-sections--23926582640919__footer .rte a {text-decoration: none;} </style></div>
<!-- END sections: footer-group -->

    
    <div style="display: none;" aria-hidden="true" data-templates>
      
      <div
        class="message-banner--container"
        role="alert"
        data-message-banner
      >
        <div class="message-banner--outer">
          <div class="message-banner--inner" data-message-banner-content></div>

          <button
            class="message-banner--close"
            type="button"
            aria-label="Close"
            data-message-banner-close
          ><svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  xmlns="http://www.w3.org/2000/svg"
  width="13"
  height="13"
  viewBox="0 0 13 13"
>
  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
</svg></button>
        </div>
      </div>
      

      
      <section class="atc-banner--container" role="log" data-atc-banner>
        <div class="atc-banner--outer">
          <div class="atc-banner--inner">
            <div class="atc-banner--product">
              <h2 class="atc-banner--product-title">
                <span class="atc-banner--product-title--icon">
                  


                <svg class="icon-checkmark "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18"  height="13" viewBox="0 0 18 13" xmlns="http://www.w3.org/2000/svg">      <path fill="currentColor" fill-rule="evenodd" d="M6.23 9.1L2.078 5.2 0 7.15 6.23 13 18 1.95 15.923 0z" />    </svg>                                                                                                      

                </span>
                Added to your cart:
              </h2>

              <div class="atc--product">
                <div class="atc--product-image" data-atc-banner-product-image>
                  <svg class="placeholder--image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
                </div>
                <div class="atc--product-details">
                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
                  <span class="atc--product-details--price">
                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
                    <span
                      class="atc--product-details--price-discounted money"
                      data-atc-banner-product-price-discounted
                    ></span>
                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
                    </span>
                  </span>
                  <ul class="discount-list" data-atc-banner-product-discounts>
                    <li class="discount-list-item">
                      


                                                                          <svg class="icon-sale-tag "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="350" height="350" viewBox="0 0 350 350" fill="none">      <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M0 197.826C0 192.95 1.93821 188.275 5.38762 184.83L179.459 10.7587C186.348 3.86966 195.692 -0.000356971 205.435 2.46966e-08H334.782C343.187 2.46966e-08 350 6.81304 350 15.2173V144.565C350 154.308 346.13 163.651 339.241 170.541L165.17 344.612C161.725 348.061 157.049 350 152.174 350C147.299 350 142.624 348.061 139.179 344.612L5.38762 210.821C1.93821 207.376 0 202.701 0 197.826ZM304.348 68.4786C304.348 81.085 294.128 91.3046 281.521 91.3046C268.915 91.3046 258.695 81.085 258.695 68.4786C258.695 55.8721 268.915 45.6525 281.521 45.6525C294.128 45.6525 304.348 55.8721 304.348 68.4786Z" fill="currentColor"/>    </svg>                                            

                      <span class="discount-title"></span>
                      (-<span class="money discount-amount"></span>)
                    </li>
                  </ul>
                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
                </div>
              </div>
            </div>

            <div class="atc-banner--cart">
              <div class="atc-banner--cart-subtotal">
                <span class="atc-subtotal--label">
                  Cart subtotal
                </span>
                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
              </div>
<div
    class="
      free-shipping-bar
      
        free-shipping-bar--atc-banner
      
    "
    data-free-shipping-bar
    data-html="free_shipping_bar"
  >
    <p class="free-shipping-bar__status">You are eligible for <strong>free shipping</strong>!</p>
    <div class="free-shipping-bar__meter">
      <div class="free-shipping-bar__progress" style="--width: %"></div>
    </div>
  </div><footer class="atc-banner--cart-footer">
                <a
                  class="button-secondary atc-button--viewcart"
                  href="/cart"
                  data-atc-banner-cart-button
                >
                  View cart (<span></span>)
                </a>
                <form
                  class="atc-banner__form"
                  action="/cart"
                  method="post"
                  aria-label="cart checkout"
                >
                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
                    
                      <svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 11.1667C2.5 10.0622 3.39543 9.16675 4.5 9.16675H15.5C16.6046 9.16675 17.5 10.0622 17.5 11.1667V16.3334C17.5 17.438 16.6046 18.3334 15.5 18.3334H4.5C3.39543 18.3334 2.5 17.438 2.5 16.3334V11.1667Z" fill="currentColor"/>
<path d="M5.83337 9.16675V5.83341C5.83337 3.53223 7.69885 1.66675 10 1.66675C12.3012 1.66675 14.1667 3.53223 14.1667 5.83341V9.16675" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

                    
                    <span>Checkout</span>
                  </button>
                </form>
              </footer>
            </div>
          </div>

          <button
            class="atc-banner--close"
            type="button"
            aria-label="Close"
            data-atc-banner-close
          ><svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  xmlns="http://www.w3.org/2000/svg"
  width="13"
  height="13"
  viewBox="0 0 13 13"
>
  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
</svg></button>
        </div>
      </section>
      
    </div>

    
    
    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
      <div class="modal-inner" data-modal-inner>
        <button
          class="modal-close"
          type="button"
          aria-label="Close"
          data-modal-close
        >
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  xmlns="http://www.w3.org/2000/svg"
  width="13"
  height="13"
  viewBox="0 0 13 13"
>
  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
</svg>
        </button>
        <div class="modal-content" data-modal-content></div>
      </div>
    </div>

    <div class="modal-1" data-modal-container-1 aria-label="modal window">
      <div class="modal-inner" data-modal-inner>
        <button
          class="modal-close"
          type="button"
          aria-label="Close"
          data-modal-1-close
        >
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  xmlns="http://www.w3.org/2000/svg"
  width="13"
  height="13"
  viewBox="0 0 13 13"
>
  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
</svg>
        </button>
        <div class="modal-content" data-modal-content></div>
      </div>
    </div>
    

    
    
    
    <div
      class="pswp"
      tabindex="-1"
      role="dialog"
      aria-hidden="true"
      aria-label="Product zoom dialog"
      data-photoswipe
    >
      
      <div class="pswp__bg"></div>

      
      <div class="pswp__scroll-wrap">
        
        <div class="pswp__container" aria-hidden="true">
          <div class="pswp__item"></div>
          <div class="pswp__item"></div>
          <div class="pswp__item"></div>
        </div>

        
        <div class="pswp__ui pswp__ui--hidden">
          <div class="pswp__top-bar">
            
            <div class="pswp__counter"></div>
            <button class="pswp__button pswp__button--close" title="Close">
              <span tabindex="-1">
                


              <svg class="icon-close "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">      <path d="M17 1L1 17" stroke="currentColor" stroke-width="1.75" stroke-linejoin="round"/>      <path d="M1 1L17 17" stroke="currentColor" stroke-width="1.75" stroke-linejoin="round"/>    </svg>                                                                                                        

              </span>
            </button>
            <button class="pswp__button pswp__button--share" title="Share"></button>
            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>

            
            
            <div class="pswp__preloader">
              <div class="pswp__preloader__icn">
                <div class="pswp__preloader__cut">
                  <div class="pswp__preloader__donut"></div>
                </div>
              </div>
            </div>
          </div>

          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
            <div class="pswp__share-tooltip"></div>
          </div>

          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>

          <div class="pswp__caption">
            <div class="pswp__caption__center"></div>
          </div>
        </div>
      </div>
      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
        <button
          class="gallery-navigation--scroll-button scroll-left"
          aria-label="Scroll thumbnails left"
          data-gallery-scroll-button
        >
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="14"
  height="8"
  viewBox="0 0 14 8"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>

        </button>
        <button
          class="gallery-navigation--scroll-button scroll-right"
          aria-label="Scroll thumbnails right"
          data-gallery-scroll-button
        >
          <svg
  aria-hidden="true"
  focusable="false"
  role="presentation"
  width="14"
  height="8"
  viewBox="0 0 14 8"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>

        </button>
        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
      </div>
    </div>
    

    
    
    
    
    

    

    

      <script>
        (
          function () {
            var classes = {
              block: 'pxu-lia-block',
              element: 'pxu-lia-element',
            };

            document
              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
              .forEach(function (mappingEl) {
                const section = mappingEl.parentNode;
                try {
                  const mapping = JSON.parse(mappingEl.innerHTML);
                  mapping.elements.forEach(function (elementSelector) {
                    section
                      .querySelectorAll(elementSelector)
                      .forEach(function (element) { element.classList.add(classes.element); });
                  });

                  mapping.blocks.forEach(function (blockSelector) {
                    section
                      .querySelectorAll(blockSelector)
                      .forEach(function (block) { block.classList.add(classes.block); });
                  });
                } catch (error) {
                  console.warn('Unable to parse animation mapping', mappingEl, error);
                }
            });
          }
        )()
      </script>
    
<script
        src="//shop.avispl.com/cdn/shop/t/25/assets/empire.js?v=44296331150185183361738765421"
        data-scripts
        data-shopify-api-url="//shop.avispl.com/cdn/shopifycloud/storefront/assets/themes_support/api.jquery-7ab1a3a4.js"
        data-shopify-countries="/services/javascripts/countries.js"
        data-shopify-common="//shop.avispl.com/cdn/shopifycloud/storefront/assets/themes_support/shopify_common-5f594365.js"
        data-shopify-cart="//shop.avispl.com/cdn/shop/t/25/assets/jquery.cart.js?18150"
        data-pxu-polyfills="//shop.avispl.com/cdn/shop/t/25/assets/polyfills.min.js?v=86384920436605339181738765421"
        async
      ></script>








  <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [
      
          {
            "@type": "ListItem",
            "position": 1,
            "item": {
              "@id": "https://shop.avispl.com/blogs/blog",
              "name": "Blog"
            }
          }
          
          
        
      ]
    }
  </script>






    <script>
      (function () {
        function handleFirstTab(e) {
          if (e.keyCode === 9) { // the "I am a keyboard user" key
            document.body.classList.add('user-is-tabbing');
            window.removeEventListener('keydown', handleFirstTab);
          }
        }
        window.addEventListener('keydown', handleFirstTab);
      })();
    </script>

    <script
      src="//shop.avispl.com/cdn/shop/t/25/assets/instantPage.min.js?v=66686188410710575361738765421"
      type="module"
      defer
    ></script>

    <script>
        document.addEventListener("DOMContentLoaded", function() {
            var iframes = document.querySelectorAll('iframe[src*="youtube.com"]');
            iframes.forEach(function(iframe) {
                // Check if iframe is already wrapped in a div with class "fluid-width-video-wrapper"
                if (iframe.closest('.fluid-width-video-wrapper')) {
                    return; // Skip if already inside a fluid-width-video-wrapper
                }
    
                // Set width to 100% to make it responsive
                iframe.setAttribute('width', '100%');
                iframe.removeAttribute('height'); // Let CSS handle the height to maintain aspect ratio
    
                // Wrap iframe in a responsive container
                var wrapper = document.createElement('div');
                wrapper.classList.add('video-container');
                iframe.parentNode.insertBefore(wrapper, iframe);
                wrapper.appendChild(iframe);
            });
        });
    </script>
    
    
    	
    
    
  <style>  </style>
<div id="shopify-block-ANXJ6b0lIbDZWeTNET__10148494829067693542" class="shopify-block shopify-app-block"><!-- XO-InsertCode Body -->


<!-- End: XO-InsertCode Body -->


</div><div id="shopify-block-AM05QbkZpaG5MWU93V__18228966181090706294" class="shopify-block shopify-app-block">

  <script type="module" src="https://cdn.shopify.com/extensions/019b0404-e0a8-7b0e-90f6-d923ce991cc9/lb-upsell-217/assets/lb-upsell.js" defer></script>



  <script>
    window.lbupsellToken = "4d9ddcf0f250ef120b24183847ec4af5"
  </script>

<script></script>

<script type="module" src="https://cdn.shopify.com/extensions/019b0404-e0a8-7b0e-90f6-d923ce991cc9/lb-upsell-217/assets/lb-upsell-components.esm.js" defer></script>
<script type="module" src="https://cdn.shopify.com/extensions/019b0404-e0a8-7b0e-90f6-d923ce991cc9/lb-upsell-217/assets/lb-utils.js" defer></script>

</div></body>
</html>
