
<!DOCTYPE html>

<html lang="en">
<head>
    

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript">

    var pathNameArray;
    var slugValue;
    var pageNameValue;
    var subSection1Value="", subSection2Value="", subSection3Value="", subSection4Value="", subSection5Value="", subSection6Value="";
    var pathNameValue;
    var fullUrlPath="";

    if ((window.location.href != null) && (window.location.href != ""))
    {
        fullUrlPath = window.location.href.split(/[#,?]/)[0];
    }

    var pathName = window.location.pathname;

    var pageDateValue = pathName.match(/\d{4}(?:\/\d{2})+/);                          //Fething Dates from URL yyyy/mm

    if (pathName != "/") {
        setSubsections(pathName);
    }
    else {
        subSection1Value = "homepage";
    }

    pageNameValue = fetchPageName(pathName, 0);

    var queryParam = window.location.href.split("?")[1];
    var queryStringValue = queryParam == undefined ? "" : queryParam;

    var referrer = document.referrer;
    var referringUrlValue = referrer.split("?")[0];

    if (document.referrer != "") {
        var referrerPathname = document.referrer.replace(/^[^:]+:\/\/[^/]+/, '').replace(/#.*/, '').replace(/\?.*/, '');
        var referringPageNameValue = fetchPageName(referrerPathname, 1);
    }
    else referringPageNameValue = "";


    function fetchPageName(pathNameArg, isReferrer) {

        var tempSlug;
        pathName = pathNameArg.toLowerCase().replace("/en-ca", "").replace("/fr-ca", "");
        pathName = pathName.replace(/\/[0-9]+/g, '');

        pathName = removeSlashes(pathName);

        pathName = pathName.replace(/\//g, ":");
        pathNameArray = pathName.split(':');

        if (isReferrer == 0) {
            slugValue = pathNameArray[pathNameArray.length - 1];
        }

        tempSlug=pathNameArray[pathNameArray.length - 1];

        if (tempSlug == "") {
            return "homepage";
        }
        else {
            return pathName;
        }

    }

    function removeSlashes(path) {
        if (path.charAt(path.length - 1) == '/')
            {
                path = path.substring(0, path.length - 1);
            }
         if (path.charAt(0) == '/')
            {
                path = path.substring(1, path.length);
        }
        return path;
    }

    function setSubsections(path) {
        path = path.toLowerCase().replace("/en-ca", "").replace("/fr-ca", "");
        path = path.replace(/\/[0-9]+/g, '');
        path = removeSlashes(path);
            var pathArray = path.split('/');
            if (pathArray.length > 0) {
                for (var i = 0; i < pathArray.length; i++) {
                    window["subSection" + (i + 1) + "Value"] = pathArray[i];
                }
            }
    }


    var digitalData = window.digitalData = window.digitalData || [];
    digitalData = [{
             'event' : 'pageview',
             page: {
                     cleanPagePath: pageNameValue,
                     pageTitle: 'Lake Oswego Insurance Brokers | HUB International',
                    fullUrl: fullUrlPath,
                     queryString: queryStringValue,
                     referringUrl: referringUrlValue,
                     fullReferringUrl: referrer,
                     referringPageName: referringPageNameValue,
                     subSection1: subSection1Value,
                     subSection2: subSection2Value,
                     subSection3: subSection3Value,
                     subSection4: subSection4Value,
                     subSection5: subSection5Value,
                     subSection6: subSection6Value,
                     slug: slugValue,
                     pageTemplate: 'location',
                     siteVersion: 'en',
                     pageDate:(pageDateValue==null)?"": pageDateValue[0]
                     },
             sitecore: {
                     visitId: 'doc1jsaek515iolj53fcnhdn',
                     visitorId: ''
                        }
             }];

    if (subSection1Value == "products" || subSection1Value == "industries") {
        var industryNameValue = "", productCategoryValue = "", productNameValue = ""

        productNameValue = subSection3Value.replace(/-/g, " ");
        if (subSection1Value == "industries") {
            industryNameValue = subSection2Value.replace(/-/g, " ");
        }
        else {
            productCategoryValue = subSection2Value.replace(/-/g, " ");
        }
         digitalData.push({
             'event' : 'pageviewProduct',
             page: {
                     cleanPagePath: pageNameValue,
                     pageTitle: 'Lake Oswego Insurance Brokers | HUB International',
                     fullUrl: fullUrlPath,
                     queryString: queryStringValue,
                     referringUrl: referringUrlValue,
                     fullReferringUrl: referrer,
                     referringPageName: referringPageNameValue,
                     subSection1: subSection1Value,
                     subSection2: subSection2Value,
                     subSection3: subSection3Value,
                     subSection4: subSection4Value,
                     subSection5: subSection5Value,
                     subSection6: subSection6Value,
                     slug: slugValue,
                     pageTemplate: 'location',
                     siteVersion: 'en',
                     pageDate:(pageDateValue==null)?"": pageDateValue[0]
             },
             product:{
                     category:productCategoryValue,
                     name: productNameValue,
                     industry: industryNameValue
             },
             sitecore: {
                     visitId: 'doc1jsaek515iolj53fcnhdn',
                     visitorId: ''
                        }
             });
    }

    if (subSection1Value == "blog") {
        var titleValue = "", dateValue = "", readtimeValue = "", topicsValue = "";

        setTimeout(function () {
            if ((document.querySelector('h1.width-80'))!== null) {
                titleValue = document.querySelector('h1.width-80').textContent;
            }
            else if ((document.querySelector('div.width-100 h1'))!==null) {
                titleValue = document.querySelector('div.width-100 h1').textContent;
            }

        dateValue = document.querySelector('div.blog-date time').innerText;
        readtimeValue = document.querySelector('div.article-read.readtime').innerText;

            var topicElements = document.querySelectorAll('div.tags')[0];

            if (topicElements.childElementCount > 0) {

                for(var i = 0; i<topicElements.childElementCount; i++){
                    topicsValue = topicsValue + topicElements.children[i].innerText + " | ";
                }
            }

            topicsValue = topicsValue.substring(0, topicsValue.length - 3);

        digitalData.push({
            event: 'pageviewblog',
            blog:
            {
                title: titleValue.toLowerCase(),
                date: dateValue.toLowerCase(),
                readtime: readtimeValue.toLowerCase(),
                topics: topicsValue.toLowerCase()
            }
        });
        },3000)


    }

    if (subSection1Value == "search") {
        setTimeout(function () {
            calculateResultsCount();
        }, 10000);

        setTimeout(function () {
             $("input[title=Search]").on("keydown", function (e) {
            var x = e.target.value;
            var code = e.keyCode || e.which;
            if (code == 13 && x != "") {
                setTimeout(function () {
                    calculateResultsCount();
                }, 7000);
                }
            });
        }, 3000);


        function calculateResultsCount() {
            var searchTerm = "", totalResults = "", productResults = "", articleResults = "", officeResults = "", generalResults = "";
            searchTerm = window.location.href.split("q=")[1];
            searchTerm= searchTerm.replace(/%20/g, ' ');

            var allResultsElement = $("div").find(`[data-id='all']`)[0];
            var productsElement = $("div").find(`[data-id='products']`)[0];
            var officesElement = $("div").find(`[data-id='offices']`)[0];
            var articleElement = $("div").find(`[data-id='articles']`)[0];
            var generalElement = $("div").find(`[data-id='general']`)[0];

            if (allResultsElement !== null) {
                totalResults = formatString(allResultsElement);
            }
            if (productsElement !== null) {
                productResults = formatString(productsElement);
            }
            if (articleElement !== null) {
                articleResults = formatString(articleElement);
            }
            if (officesElement !== null) {
                officeResults = formatString(officesElement);
            }
            if (generalElement !== null) {
                generalResults = formatString(generalElement);
            }

            function formatString(element) {
                return (element != null && element != undefined ? element.querySelector('span').innerText.replace(/[()]/g, '') : "");
            }

            digitalData.push({
                "event": "pageviewsearchresults",
                "searchResults": {
                    "searchTerm": searchTerm,
                    "totalResults": totalResults,
                    "productResults": productResults,
                    "articleResults": articleResults,
                    "officeResults": officeResults,
                    "generalResults": generalResults
                }
            });
        }
    }


     if (subSection1Value == "press-releases") {

        setTimeout(function () {
            var pressReleaseTitle = "", pressReleasePostedDate = "";
            var titleElement = document.querySelectorAll('div.col-md-9 h1')[0];
            if (titleElement !== null) {
                pressReleaseTitle = titleElement.innerHTML;
            }
            var dateElement = document.querySelectorAll('div.article-body strong')[0];
            if (dateElement !== null) {
                pressReleasePostedDate = dateElement.innerHTML;
            }
            var releaseDateArray = pressReleasePostedDate.split(',');
            pressReleasePostedDate = releaseDateArray[1] + ',' + releaseDateArray[2];
            pressReleasePostedDate = pressReleasePostedDate.trim();

            digitalData.push({
                "event": "pageviewpressrelease",
                "pressRelease": {
                    "title": pressReleaseTitle.toLowerCase(),
                    "date": pressReleasePostedDate.toLowerCase()
                }
            });
        },1000)
    }
    //To Track Embedded Contact Form-Start
    setTimeout(function () {
        var embedForm = document.getElementsByClassName('cta-form-form');
        var productCategoryValue = "";
        var PageURL = window.location.href;
        if (PageURL.includes("/products/")) {
            productCategoryValue = subSection2Value;
        }
        else if (PageURL.includes("/industries/")) {
            productCategoryValue = "industries";
        }
        else {
            productCategoryValue = subSection1Value;
        }
        productCategoryValue = productCategoryValue.replace(/\-/g, " ");

        if (embedForm.length > 0) {
            digitalData.push({
                "event": "formView",
                "form": {
                    "name": "embeddedcontactform",
                    "id": "ctaForm",
                    "type": "contact us",
                    "product": slugValue.replace(/\-/g, " "),
                    "productCategory":productCategoryValue
                }

            });
        }
    }, 2000);

    setTimeout(function () {

        $(".submitter").on("click", function () {
            formID = $(this).data("formsubmissionid");
            var className = document.getElementById(formID).getAttribute("class");
            if (className.toString().includes('show-thankyou')) {
                    digitalData.push({
                        "event": "pageView",
                        "page": {
                            "cleanPagePath": pageNameValue+":contact-us:thank-you",
                            "fullReferringUrl": window.location.href,
                            "fullUrl": window.location.href+"contact-us/thank-you/",
                            "pageDate": (pageDateValue == null) ? "" : pageDateValue[0],
                            "pageTemplate": 'location',
                            "pageTitle": 'Lake Oswego Insurance Brokers | HUB International',
                            "queryString": queryStringValue,
                            "referringPageName": pageNameValue,
                            "referringUrl":window.location.href,
                            "slug": slugValue,
                            "siteVersion": 'en'
                        }
                    });
                }
        });
    }, 2000)
    //To Track Embedded Contact Form-End
</script>

    <script src="//assets.adobedtm.com/launch-ENd318b71b31314d34813490b7e987251e.min.js" async></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.1.2/lazysizes.min.js" async></script>
    <script src="https://hammerjs.github.io/dist/hammer.min.js"></script>

    <link rel="preload" href="/Assets/Hub/libs/select2/select2.min.css" as="style" />
    <link rel="preload" href="/Assets/Hub/css/paper.min.css" as="style" />
    <link rel="preload" href="/Assets/Hub/libs/bootstrapselect/bootstrap-select.min.css" as="style" />
    <link rel="preload" href="/Assets/Hub/libs/datatables/datatables.min.css" as="style" />
    
    <link rel="preload" href="/Assets/Hub/fonts/font-awesome/fontawesome-webfont.woff2" as="font" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
            <!-- BEGIN NOINDEX -->
            <title lang="en">Lake Oswego Insurance Brokers | HUB International</title>
            <!-- END NOINDEX -->

     
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="description" content="HUB International Lake Oswego provides a wide range of insurance solutions. Learn more about HUB Lake Oswego insurance offerings here." />
        <meta property="og:description" content="HUB International Lake Oswego provides a wide range of insurance solutions. Learn more about HUB Lake Oswego insurance offerings here.">
        


    <meta property="og:site_name" content="HUB International">
    <meta property="og:type" content="Place">

    <meta property="og:image" content="https://www.hubinternational.com/Assets/Hub/images/default_opengraph_image.png">

    <meta name="twitter:card" content="summary">
        <meta name="twitter:title" content="Lake Oswego Insurance Brokers | HUB International">
        <meta property="og:title" content="Lake Oswego Insurance Brokers | HUB International">


    <meta name="twitter:site" content="@HUB International">
    <meta name="twitter:description" content="HUB International Lake Oswego provides a wide range of insurance solutions. Learn more about HUB Lake Oswego insurance offerings here.">
    <meta name="twitter:image" content="https://www.hubinternational.com/Assets/Hub/images/logo/HUB-Horizontal-With-Roundel.png">
    <meta name="twitter:image:alt" content="Hub-Logo">

                <link rel="canonical" href="https://www.hubinternational.com/offices/us/oregon/lake-oswego/">
        <meta property="og:url" content="https://www.hubinternational.com/offices/us/oregon/lake-oswego/" />
            <meta name="robots" content="max-snippet:-1, max-image-preview:large">

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "InsuranceAgency",
    "name": "HUB International Lake Oswego",
	"alternateName": "HUB International",
	"knowsAbout": "Business Insurance, Employee Benefits Broker, Personal Insurance",
	"address": {
	"@type": "PostalAddress",
	"streetAddress": "2 Centerpointe Drive",
	"addressLocality": "Lake Oswego",
	"addressRegion": "OR",
	"postalCode": "97035"
	},
	"image": "https://www.hubinternational.com/-/media/HUB-International/Offices/Northwest/lake-oswego-insurance-office.jpg",
	"telePhone": "503-451-7100",
	"faxNumber": "503-961-1753",
	"url": "https://cm.hubinternational.com/offices/us/oregon/lake-oswego/",
	"openingHours": "Mo,Tu,We,Th,Fr 08:00-16:30",
	"openingHoursSpecification": [{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday,Tuesday,Wednesday,Thursday,Friday"],"opens":"08:00","closes":"16:30"}],
	"geo": {
	"@type": "GeoCoordinates",
	"latitude": "45.423093",
	"longitude": "-122.739097"
	},
	"logo":"https://www.hubinternational.com/images/hub-logo.png",
	"parentOrganization": {
	"@type": "Organization",
	"name": "HUB International",
	"legalName": "HUB International Limited",
	"url": "https://www.hubinternational.com",
	"sameAs": [ "https://www.facebook.com/HUBInternationalLimited/","https://twitter.com/HUBInsurance","https://www.linkedin.com/company/hub-international","https://www.youtube.com/user/hubinternational","https://en.wikipedia.org/wiki/Hub_International" ]		
	}
}
</script>     
    <!-- Typography Gotham Font -->
        <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/7378934/6288772/css/fonts.css" media="print" onload="this.onload=null;this.removeAttribute('media');" />
    <!-- END -->
    
    <!-- inject:css -->
<link rel="stylesheet" href="/Assets/Hub/css/Hub-6be9f1c06b.css">
<!-- endinject -->
    <style type="text/css">
        .coveo-facet-more-icon:before {
        content: 'Show More';
    }
        .coveo-facet-less-icon:before {
        content: 'Show Fewer';
    }

         .insights-search-page .CoveoPager .coveo-pager-list-item.coveo-pager-next:before {
        content: 'Next';

    }

    </style>
    
                        <link rel="alternate" href="https://www.hubinternational.com/offices/us/oregon/lake-oswego/" hreflang="en-US" />
                        <link rel="alternate" href="https://www.hubinternational.com/en-CA/offices/us/oregon/lake-oswego/" hreflang="en-CA" />
            <link rel="alternate" href="https://www.hubinternational.com/offices/us/oregon/lake-oswego/" hreflang="x-default" />
    
    <script src="https://www.google.com/recaptcha/api.js?hl=en" async defer></script>
        <script type="application/ld+json">
            {
            "@context": "http://schema.org/",
            "@id": "https://www.hubinternational.com/offices/us/oregon/lake-oswego/",
            "@type": "WebPage",
            "description":"HUB International Lake Oswego provides a wide range of insurance solutions. Learn more about HUB Lake Oswego insurance offerings here.",
            "mainEntityOfPage":"Hub International",
            "name":"lake-oswego",
            "potentialAction":"Contact Us",
            "url":"https://www.hubinternational.com/offices/us/oregon/lake-oswego/"
            }
        </script>

        <script type="application/ld+json">
            {
            "@context": "http://schema.org/",
            "@id": "https://www.hubinternational.com/offices/us/oregon/lake-oswego/",
            "@type": "WebPage",
            "description":"HUB International Lake Oswego provides a wide range of insurance solutions. Learn more about HUB Lake Oswego insurance offerings here.",
            "mainEntityOfPage":"Hub International",
            "name":"lake-oswego",
            "potentialAction":"Contact Us",
            "url":"https://www.hubinternational.com/offices/us/oregon/lake-oswego/"
            }
        </script>
            <script type="application/ld+json">
                {
                "@context": "https://schema.org/",
                "@type": "Service",
                "broker":"Insurance Broker",
                "description":"HUB International Lake Oswego provides a wide range of insurance solutions. Learn more about HUB Lake Oswego insurance offerings here.",
                "image":"https://www.hubinternational.com/-/media/hub-international/Offices/Northwest/lake-oswego-insurance-office.jpg",
                "mainEntityOfPage":"https://www.hubinternational.com/offices/us/oregon/lake-oswego/",
                "name":"HUB International Lake Oswego",
                "potentialAction":"contact us",
                "url":"https://www.hubinternational.com/offices/us/oregon/lake-oswego/"
                }
            </script>
    <!-- OneTrust Cookies Consent Notice start for www.hubinternational.com -->

    <script src=https://cdn.cookielaw.org/scripttemplates/otSDKStub.js data-document-language="true" type="text/javascript" charset="UTF-8" data-domain-script="ac38926f-4832-40fa-adaf-10e61aa936f9" async></script>
    <script type="text/javascript">
        function OptanonWrapper() { }
    </script>
    <!-- OneTrust Cookies Consent Notice end for www.hubinternational.com -->
</head>
<body>

     <!-- BEGIN NOINDEX -->
    
    


<header style="" class="">
    <a href="#main" tabindex="0" class="skip-to-main-content-link">Skip to main content</a>
        <div id="menu-button" class="nav-toggle" role="button" aria-expanded="false" onclick="handleMenuToggle()">
            <ul class="reset menu-lines">
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
            <div class="menu-text" tabindex="0">
                menu
            </div>
            <ul class="reset">
                <li></li>
                <li></li>
            </ul>
        </div>
    <div class="container header-container">
                <a class="logo-contain" href="/" data-link-type="nav:header:logo" data-link-text="hub logo" data-link-component="primary header"><img class="logo roundel" alt="Hub Logo" src="/Assets/Hub/images/logo/HUB-Horizontal-With-Roundel.png" /></a>



    <nav class="main-site-nav" aria-label="Main Site">
        <ul class="tab">
                        <li class="tablinks tablinks-mainnav" data-section="Industries">
                        <a data-link-type="nav:header:primary" data-link-text="industries" data-link-component="primary header" data-link-panel="industries" href="#" aria-label="Main navigation Industries">
                            Industries
                        </a>
                    </li>
                        <li class="tablinks tablinks-mainnav" data-section="Products">
                        <a data-link-type="nav:header:primary" data-link-text="products" data-link-component="primary header" data-link-panel="products" href="#" aria-label="Main navigation Products">
                            Products
                        </a>
                    </li>
                    <li>
<a href="https://www.hubinternational.com/insights/" class="" data-link-text="insights" data-link-panel="insights" data-link-type="nav:header:primary" data-link-component="primary header" >Insights</a>                    </li>
                    <li>
<a href="https://www.hubinternational.com/offices/" class="" data-link-text="offices" data-link-panel="offices" data-link-type="nav:header:primary" data-link-component="primary header" >Offices</a>                    </li>
                    <li>
<a href="https://careers.hubinternational.com/us/en" data-link-component="primary header" data-link-text="careers" data-link-type="nav:header:primary" class="" data-link-panel="careers" target="_blank" >Careers</a>                    </li>
                    <li>
<a href="https://www.hubinternational.com/contact-us/" class="btn gs-btn" data-link-text="contact us" data-link-panel="contact us" data-link-type="nav:header:primary" data-link-component="primary header" >Contact Us</a>                    </li>
        </ul>


<div data-panel="Industries" class="tabcontent sub-tabcontent">
    <span class="close-button">Close Menu <em class="fa fa-times-circle emphasized-text-times-circle"></em></span>
    <div class="container">
        <div class="title-row">
        </div>
    <a href="https://www.hubinternational.com/industries/" class="indcolor"><h4 class="main-title">Industries</h4>
</a>


        <div class="row card-row">
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/agribusiness-and-farm-insurance/" aria_label="secondary Agribusiness" data-link-text="agribusiness" data-link-panel="industries:agribusiness" data-link-type="nav:header:secondary" data-link-component="secondary header" >Agribusiness</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/cannabis-insurance/" aria_label="secondary Cannabis" data-link-text="cannabis" data-link-panel="industries:cannabis" data-link-type="nav:header:secondary" data-link-component="secondary header" >Cannabis</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/construction-insurance/" aria_label="secondary Construction" data-link-text="construction" data-link-panel="industries:construction" data-link-type="nav:header:secondary" data-link-component="secondary header" >Construction</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/education-insurance/" aria_label="secondary Education" data-link-text="education" data-link-panel="industries:education" data-link-type="nav:header:secondary" data-link-component="secondary header" >Education</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/entertainment-insurance/" aria_label="secondary Entertainment" data-link-text="entertainment" data-link-panel="industries:entertainment" data-link-type="nav:header:secondary" data-link-component="secondary header" >Entertainment</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/financial-institution-insurance/" aria_label="secondary Financial" data-link-text="financial" data-link-panel="industries:financial" data-link-type="nav:header:secondary" data-link-component="secondary header" >Financial</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/healthcare-business-insurance/" aria_label="secondary Healthcare" data-link-text="healthcare" data-link-panel="industries:healthcare" data-link-type="nav:header:secondary" data-link-component="secondary header" >Healthcare</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/hospitality-insurance/" aria_label="secondary Hospitality" data-link-text="hospitality" data-link-panel="industries:hospitality" data-link-type="nav:header:secondary" data-link-component="secondary header" >Hospitality</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/life-science-insurance/" aria_label="secondary Life Sciences" data-link-text="life sciences" data-link-panel="industries:life sciences" data-link-type="nav:header:secondary" data-link-component="secondary header" >Life Sciences</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/non-profit-insurance/" aria_label="secondary Nonprofit" data-link-text="nonprofit" data-link-panel="industries:nonprofit" data-link-type="nav:header:secondary" data-link-component="secondary header" >Nonprofit</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/public-sector-insurance/" aria_label="secondary Public Sector" data-link-text="public sector" data-link-panel="industries:public sector" data-link-type="nav:header:secondary" data-link-component="secondary header" >Public Sector</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/real-estate-insurance/" aria_label="secondary Real Estate" data-link-text="real estate" data-link-panel="industries:real estate" data-link-type="nav:header:secondary" data-link-component="secondary header" >Real Estate</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/sports-insurance/" aria_label="secondary Sports" data-link-text="sports" data-link-panel="industries:sports" data-link-type="nav:header:secondary" data-link-component="secondary header" >Sports</a>                        </h5>

                    </div>
                </div>
                <div class="col-md-3">
                    <div class="meganav-card">

                        <h5>
<a href="https://www.hubinternational.com/industries/transportation-insurance/" aria_label="secondary Transportation" data-link-text="transportation" data-link-panel="industries:transportation" data-link-type="nav:header:secondary" data-link-component="secondary header" >Transportation</a>                        </h5>

                    </div>
                </div>
        </div>

            <div class="more-industries">
                <div class="more-industries-header" id="moreindustriesheader">
                    <h3>
                        Not seeing your industry?
                    </h3>
                    <a class="accordion-button" href="#moreindustriesheader">
                        View All Industries <em class="fa fa-chevron-down emphasized-text-chevron-down"></em>
                    </a>
                </div>
                <div class="more-industries-content">
                    <span class="industries-contact-us">
                        Select another industry below or
                        <a href="#">contact us.</a>
                    </span>

                    <div class="link-container">
                                <a href="https://www.hubinternational.com/contact-us/?industry=Auto Dealers" aria-label="Primary Auto Dealers">
                                    Auto Dealers
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Aviation" aria-label="Primary Aviation">
                                    Aviation
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Biotechnology" aria-label="Primary Biotechnology">
                                    Biotechnology
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Clean Technology" aria-label="Primary Clean Technology">
                                    Clean Technology
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Clothing &amp; Textile Manufacturing" aria-label="Primary Clothing &amp; Textile Manufacturing">
                                    Clothing &amp; Textile Manufacturing
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Commercial Fishing" aria-label="Primary Commercial Fishing">
                                    Commercial Fishing
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Condo &amp; Homeowners Associations" aria-label="Primary Condo &amp; Homeowners Associations">
                                    Condo &amp; Homeowners Associations
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Consulting" aria-label="Primary Consulting">
                                    Consulting
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Country Clubs &amp; Golf Courses" aria-label="Primary Country Clubs &amp; Golf Courses">
                                    Country Clubs &amp; Golf Courses
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Elevators" aria-label="Primary Elevators">
                                    Elevators
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Energy &amp; Marine" aria-label="Primary Energy &amp; Marine">
                                    Energy &amp; Marine
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Equipment Rental" aria-label="Primary Equipment Rental">
                                    Equipment Rental
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Fine Arts - Museums &amp; Galleries" aria-label="Primary Fine Arts - Museums &amp; Galleries">
                                    Fine Arts - Museums &amp; Galleries
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Fitness Clubs" aria-label="Primary Fitness Clubs">
                                    Fitness Clubs
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Food &amp; Beverage" aria-label="Primary Food &amp; Beverage">
                                    Food &amp; Beverage
                                </a>
                                <a href="https://www.hubinternational.com/industries/hospitality-insurance/franchise-insurance-solutions/?industry=Franchises" aria-label="Primary Franchises">
                                    Franchises
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Government" aria-label="Primary Government">
                                    Government
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Greenhouses" aria-label="Primary Greenhouses">
                                    Greenhouses
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Houses of Worship" aria-label="Primary Houses of Worship">
                                    Houses of Worship
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Janitorial Services" aria-label="Primary Janitorial Services">
                                    Janitorial Services
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Legal" aria-label="Primary Legal">
                                    Legal
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Manufacturing" aria-label="Primary Manufacturing">
                                    Manufacturing
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Mining" aria-label="Primary Mining">
                                    Mining
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Municipalities" aria-label="Primary Municipalities">
                                    Municipalities
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Pest Control" aria-label="Primary Pest Control">
                                    Pest Control
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Professional Services" aria-label="Primary Professional Services">
                                    Professional Services
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Retail" aria-label="Primary Retail">
                                    Retail
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Security Services" aria-label="Primary Security Services">
                                    Security Services
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Service Stations" aria-label="Primary Service Stations">
                                    Service Stations
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Staffing &amp; PEOs" aria-label="Primary Staffing &amp; PEOs">
                                    Staffing &amp; PEOs
                                </a>
                                <a href="https://www.hubinternational.com/industries/technology-company-insurance/?industry=Technology" aria-label="Primary Technology">
                                    Technology
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Waste Hauling &amp; Recycling" aria-label="Primary Waste Hauling &amp; Recycling">
                                    Waste Hauling &amp; Recycling
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Wineries" aria-label="Primary Wineries">
                                    Wineries
                                </a>
                                <a href="https://www.hubinternational.com/contact-us/?industry=Other" aria-label="Primary Other">
                                    Other
                                </a>
                    </div>
                </div>
            </div>


    </div>
</div><div data-panel="Products" class="tabcontent sub-tabcontent nav">
    <span class="close-button">Close Menu <em class="fa fa-times-circle emphasized-text-times-circle"></em></span>
    <div class="container">
        <div class="sub-tabcontent-nav">
            <h4>Products</h4>
            <ul class="tab">

                        <li class="tablinks tablinks-subnav defaultOpen" data-section="Products-Business Insurance">
                            <a data-link-type="nav:header:secondary" data-link-text="business insurance"
                               data-link-component="secondary header" data-link-panel="products:business insurance" href="#">
                                Business Insurance
                            </a>
                        </li>
                        <li class="tablinks tablinks-subnav " data-section="Products-Employee Benefits">
                            <a data-link-type="nav:header:secondary" data-link-text="employee benefits"
                               data-link-component="secondary header" data-link-panel="products:employee benefits" href="#">
                                Employee Benefits
                            </a>
                        </li>
                        <li class="tablinks tablinks-subnav " data-section="Products-Retirement Services">
                            <a data-link-type="nav:header:secondary" data-link-text="retirement services"
                               data-link-component="secondary header" data-link-panel="products:retirement services" href="#">
                                Retirement Services
                            </a>
                        </li>
                        <li class="tablinks tablinks-subnav " data-section="Products-People &amp; Technology Consulting">
                            <a data-link-type="nav:header:secondary" data-link-text="people &amp; technology consulting"
                               data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting" href="#">
                                People &amp; Technology Consulting
                            </a>
                        </li>
                        <li class="tablinks tablinks-subnav " data-section="Products-Personal Insurance">
                            <a data-link-type="nav:header:secondary" data-link-text="personal insurance"
                               data-link-component="secondary header" data-link-panel="products:personal insurance" href="#">
                                Personal Insurance
                            </a>
                        </li>
                        <li class="tablinks tablinks-subnav " data-section="Products-Private Client">
                            <a data-link-type="nav:header:secondary" data-link-text="private client"
                               data-link-component="secondary header" data-link-panel="products:private client" href="#">
                                Private Client
                            </a>
                        </li>
                        <li class="tablinks tablinks-subnav " data-section="Products-Risk Services">
                            <a data-link-type="nav:header:secondary" data-link-text="risk services"
                               data-link-component="secondary header" data-link-panel="products:risk services" href="#">
                                Risk Services
                            </a>
                        </li>

            </ul>

            <ul class="tab tab-secondary">
                        <li>
<a href="https://www.hubinternational.com/programs-associations/" >Programs & Associations</a>                        </li>
            </ul>
        </div>

        <div class="sub-tabcontent-content">
                <div data-panel="Products-Business Insurance" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/business-insurance/" >Business Insurance</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/business-insurance/aviation-insurance/" data-link-type="nav:header:secondary" data-link-text="aviation insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Aviation Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/boiler-and-machinery-insurance/" data-link-type="nav:header:secondary" data-link-text="boiler and machinery insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Boiler and Machinery Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/business-interruption-insurance/" data-link-type="nav:header:secondary" data-link-text="business interruption"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Business Interruption</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/business-owners-policy/" data-link-type="nav:header:secondary" data-link-text="business owners policy"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Business Owners Policy</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/captive-insurance/" data-link-type="nav:header:secondary" data-link-text="captive insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Captive Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/commercial-auto/" data-link-type="nav:header:secondary" data-link-text="commercial auto"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Commercial Auto</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/commercial-property-insurance/" data-link-type="nav:header:secondary" data-link-text="commercial property insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Commercial Property Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/crime-insurance/" data-link-type="nav:header:secondary" data-link-text="crime"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Crime</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/cyber-insurance/" data-link-type="nav:header:secondary" data-link-text="cyber"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Cyber</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/directors-and-officers-insurance/" data-link-type="nav:header:secondary" data-link-text="directors &amp; officers"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Directors &amp; Officers</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/environmental-insurance/" data-link-type="nav:header:secondary" data-link-text="environmental"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Environmental</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/employment-practices-liability/" data-link-type="nav:header:secondary" data-link-text="epl insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">EPL Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/errors-and-omissions/" data-link-type="nav:header:secondary" data-link-text="errors &amp; omissions"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Errors &amp; Omissions</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/fiduciary-liability-insurance/" data-link-type="nav:header:secondary" data-link-text="fiduciary liability"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Fiduciary Liability</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/general-liability/" data-link-type="nav:header:secondary" data-link-text="general liability"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">General Liability</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/kidnap-and-ransom-insurance/" data-link-type="nav:header:secondary" data-link-text="kidnap &amp; ransom"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Kidnap &amp; Ransom</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/marine-insurance/" data-link-type="nav:header:secondary" data-link-text="marine"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Marine</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/medical-malpractice-insurance/" data-link-type="nav:header:secondary" data-link-text="medical malpractice"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Medical Malpractice</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/mergers-and-acquisitions-insurance/" data-link-type="nav:header:secondary" data-link-text="mergers and acquisitions"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Mergers and Acquisitions</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/prize-indemnity-insurance/" data-link-type="nav:header:secondary" data-link-text="prize indemnity insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Prize Indemnity Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/professional-liability-insurance/" data-link-type="nav:header:secondary" data-link-text="professional liability"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Professional Liability</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/surety-bonds/" data-link-type="nav:header:secondary" data-link-text="surety bond insurance"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Surety Bond Insurance</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/trade-credit-and-political-risk/" data-link-type="nav:header:secondary" data-link-text="trade credit"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Trade Credit</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/insurance-for-tribal-nations/" data-link-type="nav:header:secondary" data-link-text="tribal enterprises"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Tribal Enterprises</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/workers-compensation-insurance/" data-link-type="nav:header:secondary" data-link-text="workers&#39; compensation"
                                   data-link-component="secondary header" data-link-panel="products:business insurance">Workers&#39; Compensation</a>

                    </div>
                </div>
                <div data-panel="Products-Employee Benefits" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/employee-benefits/" >Employee Benefits</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/employee-benefits/benefits-analytics/" data-link-type="nav:header:secondary" data-link-text="benefits analytics"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Benefits Analytics</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/benefits-communication/" data-link-type="nav:header:secondary" data-link-text="benefits communication"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Benefits Communication</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/benefits-compliance/" data-link-type="nav:header:secondary" data-link-text="benefits compliance"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Benefits Compliance</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/clinical-informatics-solutions/" data-link-type="nav:header:secondary" data-link-text="clinical informatics"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Clinical Informatics</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/employee-health-and-performance/" data-link-type="nav:header:secondary" data-link-text="employee health and performance"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Employee Health and Performance</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/employee-retirement-plans/" data-link-type="nav:header:secondary" data-link-text="employee retirement plans"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Employee Retirement Plans</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/global-benefits/" data-link-type="nav:header:secondary" data-link-text="global benefits"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Global Benefits</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/healthcare-cost-management/" data-link-type="nav:header:secondary" data-link-text="healthcare cost management"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Healthcare Cost Management</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/workforce-technology-solutions/" data-link-type="nav:header:secondary" data-link-text="workforce technology solutions"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Workforce Technology Solutions</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/pharmacy-benefits-management/" data-link-type="nav:header:secondary" data-link-text="pharmacy benefits management"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Pharmacy Benefits Management</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/strategic-benefits-planning/" data-link-type="nav:header:secondary" data-link-text="strategic benefits planning"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Strategic Benefits Planning</a>
                                <a href="https://www.hubinternational.com/products/employee-benefits/voluntary-benefits/" data-link-type="nav:header:secondary" data-link-text="voluntary benefits"
                                   data-link-component="secondary header" data-link-panel="products:employee benefits">Voluntary Benefits</a>

                    </div>
                </div>
                <div data-panel="Products-Retirement Services" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/retirement-services/" >Retirement Services</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/retirement-services/employee-financial-wellness/" data-link-type="nav:header:secondary" data-link-text="employee financial wellness"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Employee Financial Wellness</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/employee-retirement-plans/" data-link-type="nav:header:secondary" data-link-text="employee retirement plans"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Employee Retirement Plans</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/executive-benefits/" data-link-type="nav:header:secondary" data-link-text="executive benefits"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Executive Benefits</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/fiduciary-risk-management/" data-link-type="nav:header:secondary" data-link-text="fiduciary risk management"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Fiduciary Risk Management</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/hub-hsa-investment-account/" data-link-type="nav:header:secondary" data-link-text="hub hsa investment account"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">HUB HSA Investment Account</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/managed-account-services/" data-link-type="nav:header:secondary" data-link-text="managed account services"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Managed Account Services</a>
                                <a href="https://www.hubinternational.com/products/retirement-services/private-wealth-management/" data-link-type="nav:header:secondary" data-link-text="private wealth management "
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Private Wealth Management </a>
                                <a href="https://www.hubinternational.com/products/retirement-services/small-business-retirement-plan/" data-link-type="nav:header:secondary" data-link-text="small business retirement plan"
                                   data-link-component="secondary header" data-link-panel="products:retirement services">Small Business Retirement Plan</a>

                    </div>
                </div>
                <div data-panel="Products-People &amp; Technology Consulting" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/people-and-technology-consulting/" >People & Technology Consulting</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/compensation-consulting/" data-link-type="nav:header:secondary" data-link-text="compensation consulting"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Compensation Consulting</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/employee-engagement-strategies/" data-link-type="nav:header:secondary" data-link-text="employee engagement strategies"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Employee Engagement Strategies</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/employee-training-and-development/" data-link-type="nav:header:secondary" data-link-text="employee training and development"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Employee Training and Development</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/employee-value-proposition/" data-link-type="nav:header:secondary" data-link-text="employee value proposition"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Employee Value Proposition</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/hr-programs-and-analysis/" data-link-type="nav:header:secondary" data-link-text="hr audits"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">HR Audits</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/hris-analysis-and-selection/" data-link-type="nav:header:secondary" data-link-text="hris analysis &amp; selection"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">HRIS Analysis &amp; Selection</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/hris-implementation/" data-link-type="nav:header:secondary" data-link-text="hris implementation"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">HRIS Implementation</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/hris-system/" data-link-type="nav:header:secondary" data-link-text="hris system: optimization and support"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">HRIS System: Optimization and Support</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/human-resources-compliance/" data-link-type="nav:header:secondary" data-link-text="human resources compliance framework"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Human Resources Compliance Framework</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/organizational-change-management/" data-link-type="nav:header:secondary" data-link-text="organizational change management"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Organizational Change Management</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/outsourced-hr-management/" data-link-type="nav:header:secondary" data-link-text="outsourced hr management"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Outsourced HR Management</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/total-compensation-statements/" data-link-type="nav:header:secondary" data-link-text="total compensation statements (tcs)"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Total Compensation Statements (TCS)</a>
                                <a href="https://www.hubinternational.com/products/people-and-technology-consulting/workforce-absence-management/" data-link-type="nav:header:secondary" data-link-text="workforce absence management"
                                   data-link-component="secondary header" data-link-panel="products:people &amp; technology consulting">Workforce Absence Management</a>

                    </div>
                </div>
                <div data-panel="Products-Personal Insurance" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/personal-insurance/" >Personal Insurance</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/personal-insurance/auto-insurance/" data-link-type="nav:header:secondary" data-link-text="auto"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Auto</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/boat-insurance/" data-link-type="nav:header:secondary" data-link-text="boat, yachts &amp; personal watercraft insurance"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Boat, Yachts &amp; Personal Watercraft Insurance</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/classic-car-insurance/" data-link-type="nav:header:secondary" data-link-text="classic car"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Classic Car</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/condo-insurance/" data-link-type="nav:header:secondary" data-link-text="condo"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Condo</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/earthquake-insurance/" data-link-type="nav:header:secondary" data-link-text="earthquake"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Earthquake</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/equine-insurance/" data-link-type="nav:header:secondary" data-link-text="equine"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Equine</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/fine-arts-insurance/" data-link-type="nav:header:secondary" data-link-text="fine arts"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Fine Arts</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/flood-insurance/" data-link-type="nav:header:secondary" data-link-text="flood"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Flood</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/high-net-worth-insurance-services/" data-link-type="nav:header:secondary" data-link-text="high net worth"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">High Net Worth</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/homeowners-insurance/" data-link-type="nav:header:secondary" data-link-text="homeowners"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Homeowners</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/individual-health-insurance/" data-link-type="nav:header:secondary" data-link-text="individual health"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Individual Health</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/jewelry-insurance/" data-link-type="nav:header:secondary" data-link-text="jewelry"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Jewelry</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/individual-health-insurance/medicare-supplemental-insurance/" data-link-type="nav:header:secondary" data-link-text="medicare supplemental"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Medicare Supplemental</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/personal-umbrella-insurance/" data-link-type="nav:header:secondary" data-link-text="personal umbrella"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Personal Umbrella</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/renters-insurance/" data-link-type="nav:header:secondary" data-link-text="renters"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Renters</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/travel-insurance/" data-link-type="nav:header:secondary" data-link-text="travel"
                                   data-link-component="secondary header" data-link-panel="products:personal insurance">Travel</a>
                                <a href="https://www.hubinternational.com/products/personal-insurance/personal-cyber-insurance/" data-link-type="nav:header:secondary" data-link-text=""
                                   data-link-component="secondary header" data-link-panel="products:personal insurance"></a>

                    </div>
                </div>
                <div data-panel="Products-Private Client" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/private-client-insurance/" >Private Client</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/private-client-insurance/aviation-insurance-coverage/" data-link-type="nav:header:secondary" data-link-text="aviation services"
                                   data-link-component="secondary header" data-link-panel="products:private client">Aviation Services</a>
                                <a href="https://www.hubinternational.com/products/private-client-insurance/family-office-risk-management/" data-link-type="nav:header:secondary" data-link-text="family office risk management"
                                   data-link-component="secondary header" data-link-panel="products:private client">Family Office Risk Management</a>
                                <a href="https://www.hubinternational.com/products/private-client-insurance/high-net-worth-individuals-and-families/" data-link-type="nav:header:secondary" data-link-text="high net worth individuals &amp; families"
                                   data-link-component="secondary header" data-link-panel="products:private client">High Net Worth Individuals &amp; Families</a>
                                <a href="https://www.hubinternational.com/products/private-client-insurance/wealth-advisors/" data-link-type="nav:header:secondary" data-link-text="wealth advisors"
                                   data-link-component="secondary header" data-link-panel="products:private client">Wealth Advisors</a>

                    </div>
                </div>
                <div data-panel="Products-Programs &amp; Associations" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/programs-associations/" >Programs & Associations</a>                        </h5>
                    </div>

                    <div class="link-container">


                    </div>
                </div>
                <div data-panel="Products-Risk Services" class="subtabcontainer">
                    <div class="title-row">
                        <h5>
<a href="https://www.hubinternational.com/products/risk-services/" >Risk Services</a>                        </h5>
                    </div>

                    <div class="link-container">

                                <a href="https://www.hubinternational.com/products/risk-services/claims-management/" data-link-type="nav:header:secondary" data-link-text="claims management"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Claims Management</a>
                                <a href="https://www.hubinternational.com/products/risk-services/complex-risk/" data-link-type="nav:header:secondary" data-link-text="complex risk"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Complex Risk</a>
                                <a href="https://www.hubinternational.com/products/risk-services/contract-review/" data-link-type="nav:header:secondary" data-link-text="contract review"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Contract Review</a>
                                <a href="https://www.hubinternational.com/products/risk-services/crisis-management/" data-link-type="nav:header:secondary" data-link-text="crisis management"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Crisis Management</a>
                                <a href="https://www.hubinternational.com/products/business-insurance/cyber-insurance/" data-link-type="nav:header:secondary" data-link-text="cyber"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Cyber</a>
                                <a href="https://www.hubinternational.com/products/risk-services/fleet-risk-management/" data-link-type="nav:header:secondary" data-link-text="fleet risk management"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Fleet Risk Management</a>
                                <a href="https://www.hubinternational.com/products/risk-services/hub-crisis-resources/" data-link-type="nav:header:secondary" data-link-text="hub crisis resources"
                                   data-link-component="secondary header" data-link-panel="products:risk services">HUB Crisis Resources</a>
                                <a href="https://www.hubinternational.com/products/risk-services/property-risk-management/" data-link-type="nav:header:secondary" data-link-text="property risk management"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Property Risk Management</a>
                                <a href="https://www.hubinternational.com/products/risk-services/risk-management-information-system/" data-link-type="nav:header:secondary" data-link-text="risk management information system"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Risk Management Information System</a>
                                <a href="https://www.hubinternational.com/products/risk-services/workplace-safety-management/" data-link-type="nav:header:secondary" data-link-text="workplace safety"
                                   data-link-component="secondary header" data-link-panel="products:risk services">Workplace Safety</a>

                    </div>
                </div>
        </div>

    </div>
</div>    </nav>

<button class="search-icon" aria-expanded="false" aria-controls="search-bar-container" type="button" aria-label="search" id="search-icon-button">
    <svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 38 39" version="1.1"
         data-link-type="nav:header:search"data-link-text="search"data-link-component="primary header">
        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <g transform="translate(-672.000000, -42.000000)" fill="#FFFFFF">
                <g transform="translate(672.000000, 42.000000)">
                    <rect transform="translate(8.131728, 30.131728) rotate(45.000000) translate(-8.131728, -30.131728) " x="5.6" y="21.1" width="5" height="18" />
                    <path d="M24 28C31.7 28 38 21.7 38 14 38 6.3 31.7 0 24 0 16.3 0 10 6.3 10 14 10 21.7 16.3 28 24 28ZM24 24C29.5 24 34 19.5 34 14 34 8.5 29.5 4 24 4 18.5 4 14 8.5 14 14 14 19.5 18.5 24 24 24Z" />
                </g>
            </g>
        </g>
    </svg>
</button>

<!-- HubFin Login Link & Dropdown Menu -->
<div class="wide-content-links">
                    <a href="https://www.hubinternational.com/about-us/" data-link-type="nav:header:links"data-link-text="about"data-link-component="primary header"><span class="link-title">About</span></a>
</div>            <div class="language-switcher">


                    <div class="current-lang-and-country" tabindex="0" id="lang-button" aria-expanded="false">
                        <img alt="" src="/Assets/Hub/images/globe.svg" class="globe" />
                        <span class="short-text">US | EN</span>
                        <em class="fa fa-chevron-down emphasized-text-chevron-down"></em>
                    </div>
                    <div class="language-switcher-menu">
                        <div class="clearfix">
                            <div class="language-country">
                                United States
                            </div>
                            <div class="language-link-container">
                                <a href="https://www.hubinternational.com/offices/us/oregon/lake-oswego/?sc_lang=en" data-link-type="nav:header:switcher"
                                   data-link-text="us:english" data-link-component="primary header">English</a>
                            </div>
                        </div>

                        <div class="clearfix">
                            <div class="language-country">
                                Canada
                            </div>
                            <div class="language-link-container">
                                <a href="https://www.hubinternational.com/en-CA/offices/us/oregon/lake-oswego/" data-link-type="nav:header:switcher"
                                   data-link-text="ca:english" data-link-component="primary header">English</a>
                             
                                <a href="https://www.hubinternational.com/fr-CA/" data-link-type="nav:header:switcher"
                                       data-link-text="ca:french" data-link-component="primary header">Fran&#231;ais</a>
                               
                            </div>
                        </div>
                    </div>
            </div>
    </div>
</header>



<div class="search-bar-container" id="search-bar-container" tabindex="-1" role="dialog" aria-modal="true" aria-labelledby="search-title">
    <button class="close-sb" type="button" aria-label="Close">
        <div class="close-modal">
            <div class="close-line1"></div>
            <div class="close-line2"></div>
        </div>
        <div class="close-sb-text">
            Close
        </div>
    </button>
    <form id="search-form">
        <h2 id="search-title" aria-hidden="true" style="display:none;">Search</h2>
        <label for="search" class="search-label">Search</label>
        <input class="search-bar elementfocus" aria-label="Enter your Search term" name="search" id="search" title="Search" placeholder="Search HUB" type="search" />
        <input type="submit" value="Search" aria-label="Submit" hidden="hidden" style="display:none;" />
    </form>
    <button class="search-sb" aria-label="Submit Search" type="button">
        <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 38 39" version="1.1">
            <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
                <g transform="translate(-672.000000, -42.000000)" fill="#FFFFFF">
                    <g transform="translate(672.000000, 42.000000)">
                        <rect transform="translate(8.131728, 30.131728) rotate(45.000000) translate(-8.131728, -30.131728) " x="5.6" y="21.1" width="5" height="18"></rect>
                        <path d="M24 28C31.7 28 38 21.7 38 14 38 6.3 31.7 0 24 0 16.3 0 10 6.3 10 14 10 21.7 16.3 28 24 28ZM24 24C29.5 24 34 19.5 34 14 34 8.5 29.5 4 24 4 18.5 4 14 8.5 14 14 14 19.5 18.5 24 24 24Z"></path>
                    </g>
                </g>
            </g>
        </svg>
    </button>
</div>
<script>
    function handleMenuToggle() {
        var y = document.getElementById("nav-items").getAttribute("aria-hidden");
        var x = document.getElementById("menu-button").getAttribute("aria-expanded");

        if (x == "true") {

            x = "false"
        } else {
            document.getElementById("nav-items").setAttribute("aria-hidden", x);
            x = "true"
        }
        document.getElementById("menu-button").setAttribute("aria-expanded", x);
        if (y == "true") {
            document.getElementById("nav-items").setAttribute("aria-hidden", "false");
            document.getElementById("nav-items").style.display = "block";
        }
        else {
            document.getElementById("nav-items").setAttribute("aria-hidden", "true");
            document.getElementById("nav-items").style.display = "none";
        }
    }
    var ele = document.getElementById("menu-button");

    ele.addEventListener('keypress', function (e) {
        let a = e.which || e.keyCode || e.charCode;

        if (a == 13) {
            var x = document.getElementById("menu-button").getAttribute("aria-expanded");
            if (x == "true") {
                document.getElementById("menu-button").click();

            }
            else {
                document.getElementById("menu-button").click();
                document.getElementById("menu-button").click();

            }
            e.preventDefault();

        }
    });

    var langMenu = document.getElementById("lang-button");

    langMenu.addEventListener('keypress', function (e) {
        let a = e.which || e.keyCode || e.charCode;

        if (a == 13) {
            var x = document.getElementById("lang-button").getAttribute("aria-expanded");
            if (x == "false") {
                document.getElementById("lang-button").click();

            }
            else {
                document.getElementById("lang-button").click();
                document.getElementById("lang-button").click();

            }
            e.preventDefault();

        }
    });
    document.onkeydown = function (evt) {
        evt = evt || window.event;
        if (evt.keyCode == 27) {//27 is the code for escape
            langMenu.focus();
            langMenu.click();
            langMenu.setAttribute("aria-expanded", "false");
        }
    };
</script>

    

    


    <!-- END NOINDEX -->

    <div class="wrapper">
        <!-- BEGIN NOINDEX -->
        
        
        
        

<nav class="main-mobile-nav no-print" id="nav-items" aria-hidden="true" style="display:none;" aria-label="Main mobile">
    <!--Primary links / Meganav sections-->
    <ul class="reset main-mobile-nav-links">
                <li class="main-mobile-nav-link">
<a href="https://www.hubinternational.com/offices/" class="chevron" >Offices</a>                </li>
                <li class="main-mobile-nav-link" onclick="mobileNavSlideIn(event, 'Products')">
                    <a href="#" class="chevron">
                        Products
                    </a>
                </li>
                <li class="main-mobile-nav-link">
<a href="https://www.hubinternational.com/insights/" class="chevron" >Insights</a>                </li>
                <li class="main-mobile-nav-link" onclick="mobileNavSlideIn(event, 'Industries')">
                    <a href="#" class="chevron">
                        Industries
                    </a>
                </li>
    </ul>

    <!--Subsection / Secondary links-->
    <ul class="reset main-mobile-nav-sublinks">

                    <li class="main-mobile-nav-sublink ">
                        <a href="https://www.hubinternational.com/about-us/" class="chevron">
                            About HUB
                        </a>
                    </li>
                    <li class="main-mobile-nav-sublink ">
                        <a href="https://careers.hubinternational.com/us/en" class="chevron">
                            Careers
                        </a>
                    </li>
                    <li class="main-mobile-nav-sublink ">
                        <a href="https://www.hubinternational.com/events/" class="chevron">
                            Upcoming Events
                        </a>
                    </li>
                    <li class="main-mobile-nav-sublink ">
                        <a href="https://www.hubinternational.com/programs-associations/" class="chevron">
                            Programs &amp; Associations
                        </a>
                    </li>
                    <li class="main-mobile-nav-sublink ">
                        <a href="https://www.hubinternational.com/contact-us/" class="chevron">
                            Contact Us
                        </a>
                    </li>

    </ul>


    <!--Language links-->
    <ul class="reset language-switcher-container">
        <li class="language-switcher">

                <a href="" class="current-lang-and-country chevron">US | English</a>
                <div class="language-switcher-menu">
                    <div>
                        <a href="https://www.hubinternational.com/offices/us/oregon/lake-oswego/?sc_lang=en">
                            <span class="country">United States</span>
                            <span class="language">English</span>
                        </a>
                    </div>
                    <div>
                        <a href="https://www.hubinternational.com/en-CA/offices/us/oregon/lake-oswego/">
                            <span class="country">Canada</span>
                            <span class="language">English</span>
                        </a>
                    </div>
                    <div>
                        <a href="https://www.hubinternational.com/fr-CA/">
                            <span class="country">Canada</span>
                            <span class="language">Fran&#231;ais</span>
                        </a>
                    </div>
                </div>
        </li>
    </ul>



    <!--Subnav slide-ins-->

<div class="main-mobile-nav-slidein Products">
    <ul class="reset main-mobile-nav-slidein-links-primary">
        <li class="main-mobile-nav-slidein-close chevron">
            Products
        </li>

            <li>
<a href="https://www.hubinternational.com/products/business-insurance/" class="chevron" >Business Insurance</a>            </li>
            <li>
<a href="https://www.hubinternational.com/products/employee-benefits/" class="chevron" >Employee Benefits</a>            </li>
            <li>
<a href="https://www.hubinternational.com/products/retirement-services/" class="chevron" >Retirement Services</a>            </li>
            <li>
<a href="https://www.hubinternational.com/products/people-and-technology-consulting/" class="chevron" >People & Technology Consulting</a>            </li>
            <li>
<a href="https://www.hubinternational.com/products/personal-insurance/" class="chevron" >Personal Insurance</a>            </li>
            <li>
<a href="https://www.hubinternational.com/products/private-client-insurance/" class="chevron" >Private Client</a>            </li>
            <li>
<a href="https://www.hubinternational.com/products/risk-services/" class="chevron" >Risk Services</a>            </li>
    </ul>

    <ul class="reset main-mobile-nav-slidein-links-secondary">
            <li>
<a href="https://www.hubinternational.com/programs-associations/" class="chevron" >Programs & Associations</a>            </li>
    </ul>
</div><div class="main-mobile-nav-slidein Industries">
    <ul class="reset main-mobile-nav-slidein-links-primary">
        <li class="main-mobile-nav-slidein-close chevron">
            Industries
        </li>


            <li>
<a href="https://www.hubinternational.com/industries/agribusiness-and-farm-insurance/" class="chevron" >Agribusiness</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/cannabis-insurance/" class="chevron" >Cannabis</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/construction-insurance/" class="chevron" >Construction</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/entertainment-insurance/" class="chevron" >Entertainment</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/education-insurance/" class="chevron" >Education</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/financial-institution-insurance/" class="chevron" >Financial</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/healthcare-business-insurance/" class="chevron" >Healthcare</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/hospitality-insurance/" class="chevron" >Hospitality</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/life-science-insurance/" class="chevron" >Life Sciences</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/non-profit-insurance/" class="chevron" >Nonprofit</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/public-sector-insurance/" class="chevron" >Public Sector</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/real-estate-insurance/" class="chevron" >Real Estate</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/sports-insurance/" class="chevron" >Sports</a>            </li>
            <li>
<a href="https://www.hubinternational.com/industries/transportation-insurance/" class="chevron" >Transportation</a>            </li>
    </ul>
</div></nav>
    <script>
        function mobileNavSlideIn(event, navItem) {
            var navItemElement = document.querySelector('.main-mobile-nav-slidein.' + navItem);
            if (navItemElement) {
                navItemElement.classList.add('show');
            }
        }

        function closeMobileNavSlideIn(event) {
            var navSlideIn = event.target.closest('.main-mobile-nav-slidein');
            navSlideIn.classList.remove('show');
        }

        window.addEventListener('load', function () {
            $('.main-mobile-nav-slidein-close').click(closeMobileNavSlideIn);
        });

    </script>

        <!-- END NOINDEX -->

        <main id="main" class="main">
            
            


    <section class="breadcrumbs block">

        <nav class="container" aria-label="Breadcrumb">
            <ul class="reset">

                        <li class=""><a href="https://www.hubinternational.com/" aria-label="HUB">HUB</a></li>
                        <em class="fa fa-angle-right emphasized-text-angle-right breadcrumb-mobile-hidden"></em>
                        <li class="breadcrumb-mobile-hidden"><a href="https://www.hubinternational.com/offices/" aria-label="Offices">Offices</a></li>
                        <em class="fa fa-angle-right emphasized-text-angle-right breadcrumb-mobile-hidden"></em>
                        <li class="breadcrumb-mobile-hidden"><a href="https://www.hubinternational.com/offices/us/" aria-label="US">US</a></li>
                        <em class="fa fa-angle-right emphasized-text-angle-right breadcrumb-mobile-only" aria-hidden="true"></em>
                        <li class="breadcrumb-mobile-only">...</li>
                        <em class="fa fa-angle-right emphasized-text-angle-right "></em>
                        <li class=""><a href="https://www.hubinternational.com/offices/us/oregon/" aria-label="Oregon">Oregon</a></li>
                        <em class="fa fa-angle-right emphasized-text-angle-right breadcrumb-mobile-hidden"></em>
                        <em class="fa fa-angle-right emphasized-text-angle-right breadcrumb-mobile-only" aria-hidden="true"></em>
                        <li class="breadcrumb-mobile-hidden" aria-current="page">Lake Oswego</li>

            </ul>
        </nav>

    </section>
    <script type="text/javascript">      
        var breadCrumb = 'HUB:Offices:US:Oregon:Lake Oswego:';
        breadCrumb = breadCrumb.toString().replace("HUB:", "").replace(/\:/g, ">");
        breadCrumb = breadCrumb.substring(0, breadCrumb.length - 1);
        var CrumbArray = breadCrumb.split('>');
        var lastBreadCrumb = CrumbArray[CrumbArray.length - 1];

        if (typeof digitalData !== 'undefined') {
            digitalData[0].page.fullBreadcrumb = breadCrumb.toLowerCase();
            digitalData[0].page.lastBreadcrumb = lastBreadCrumb.toLowerCase();
        }

        var el = document.createElement('script');
        el.type = 'application/ld+json';
        var position = 0;
        var breadcrumb = {
            position:0,
            name:"",
            item:""
        }
        var listArray = []         
		var items = [{"Text":"HUB","Url":"https://www.hubinternational.com/","IsCurrent":false,"IsParent":false},{"Text":"Offices","Url":"https://www.hubinternational.com/offices/","IsCurrent":false,"IsParent":false},{"Text":"US","Url":"https://www.hubinternational.com/offices/us/","IsCurrent":false,"IsParent":false},{"Text":"Oregon","Url":"https://www.hubinternational.com/offices/us/oregon/","IsCurrent":false,"IsParent":true},{"Text":"Lake Oswego","Url":"https://www.hubinternational.com/offices/us/oregon/lake-oswego/","IsCurrent":true,"IsParent":false}];
        for (let j = 0; j < items.length; j++) {
            var newItem = Object.create(breadcrumb);
            var curItem = items[j];             
			newItem["@type"] = "ListItem";
            position++;
            newItem.position = position;
            newItem.name = curItem.Text;
            newItem.item = curItem.Url;
            listArray.push(newItem);
        }         
		var breadcrumbSchema = {
            "@context": "https://schema.org/",
            "@type": "BreadcrumbList",
            "itemListElement": listArray
        };         
		var finalSchema = JSON.stringify(breadcrumbSchema);
        el.text = finalSchema;         
		               
		var head = document.head || document.getElementsByTagName("head")[0];
        head.appendChild(el);

    </script>
<section class="block office-header-content">
    <div class="office-dotmatrix-background"></div>
    <div class="container">
        <div class="col-md-12">
            <div class="row office-title-background">
                <h1>
    HUB International Lake Oswego
</h1>

    <div class="line-of-business-inline">
        <ul>
                <li>Business</li>
                <li>Retirement &amp; Private Wealth</li>
                <li>Employee Benefits</li>
                <li>Personal</li>
        </ul>
    </div>

            </div>
        </div>
    </div>
</section>

<section class="block office-detail-content office-padding-reducted">
    <div class="container">
        <div class="col-md-12">
            <div class="row">
                <div class="three-column-office col-md-12">
    <div class="row flex-eqal-heights">
        <div class="office-column col-xs-12 col-md-4">
            <div class="column-wrapper">
                <section class="phone-section">
        <h2>Office Contact</h2>
    <ul role="none">
        
                <li>
                    <em class="fa fa-phone" aria-hidden="true"></em> <a class="anchr-outline" href="tel:503-451-7100" aria-label="Main 503-451-7100 number">503-451-7100</a> <strong>Main</strong>
                </li>
                <li>
                    <em class="fa fa-fax" aria-hidden="true"></em> <a href="tel:503-961-1753">503-961-1753</a> <strong>Fax</strong>
                </li>
    </ul>
</section>



            </div>
        </div>
        <div class="office-column col-xs-12 col-md-4">
            <div class="column-wrapper">
                
<!-- Location Map -->
<section class="map-section">
    <div class="map-content">
        <iframe src="//www.google.com/maps/embed/v1/place?q=HUB+International+Centerpointe+Drive,+650,Lake+Oswego,+OR+97035&key=AIzaSyAtwoRWUR7lJJG37Chf1jsH4WmXLVSKpQc" title="OfficeMapDetails" ></iframe>
    </div>
</section>

<section class="address-section">
    <div class="address-content">
        <h2>Office Address</h2>
        <div>
            2 Centerpointe Drive<br /> #650                 <br />
                 Lake Oswego, OR 97035
                <br />
                            <a href="https://www.hubinternational.com/offices/?nearby=Lake Oswego, OR">Find Nearby Offices <em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></a>
        </div>
    </div>
</section>

            </div>
        </div>
        <div class="office-column col-xs-12 col-md-4">
            <div class="column-wrapper">
                
<img src="/-/media/hub-international/Offices/Northwest/lake-oswego-insurance-office.jpg?h=291&amp;w=469&amp;la=en&amp;hash=081744EE9FBC96D5D34C5A26327A01C5" class="img-responsive office-column-image" alt="lake oswego insurance office" /><script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Offices/Northwest/lake-oswego-insurance-office.jpg",
  "name": "lake oswego insurance office"
}
</script>

    <section class="hours-section">
        <div class="hours-content">
                            <div class="table-content">
                    <table class="hours-table">
                        <caption class="heading-table">Office Hours</caption>



                        <tr>

                            <th scope="col">Days</th>

                            <th scope="col">Timings</th>

                        </tr>



                                    <tr>
                                        <td class="hours-row">Monday</td>
                                        <td class="hours-row" aria-hidden="true">8:00 AM - 4:30 PM</td>
                                        <td class="hours-row sr-only">8:00 AM to 4:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Tuesday</td>
                                        <td class="hours-row" aria-hidden="true">8:00 AM - 4:30 PM</td>
                                        <td class="hours-row sr-only">8:00 AM to 4:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Wednesday</td>
                                        <td class="hours-row" aria-hidden="true">8:00 AM - 4:30 PM</td>
                                        <td class="hours-row sr-only">8:00 AM to 4:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Thursday</td>
                                        <td class="hours-row" aria-hidden="true">8:00 AM - 4:30 PM</td>
                                        <td class="hours-row sr-only">8:00 AM to 4:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Friday</td>
                                        <td class="hours-row" aria-hidden="true">8:00 AM - 4:30 PM</td>
                                        <td class="hours-row sr-only">8:00 AM to 4:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Saturday</td>
                                        <td class="hours-row">Closed</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Sunday</td>
                                        <td class="hours-row">Closed</td>

                                    </tr>

                    </table>
                </div>
        </div>
    </section>

            </div>
        </div>
    </div>
</div>
            </div>
        </div>
    </div>
</section>  



    <section class="section-tab block gray-background section-padding-reducted">
        <div class="row padding-mobile">
            <div class="container">
                <div class="row">

                    <div class="col-md-12">

                        <div class="row">
                                <h3 class="text-center" aria-label="Link Title">Get the Details</h3>
                                                        <!-- MOBILE ONLY -->
                            <div class="quick-links-accordion accordion hidden-md hidden-lg" id="accordion-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                    <div class="accordion-group">
                                        <div class="accordion-heading">
                                            <a class="accordion-toggle" data-content-type="content:selector" data-text="about" data-component="section tab"
                                               data-toggle="collapse" data-parent="#accordion-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" href="#tab1mobile-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                                About
                                            </a>
                                        </div>
                                        <div id="tab1mobile-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" class="panel-collapse collapse">
                                            <div class="panel-body">
                                                <div class="col-xs-12">
                                                    <div class="row">
                                                        
                                                    </div>
                                                        <div class="row">
                                                            

    <div class="rte-content">
        <p>Welcome to Hub International Northwest LLC, nestled in the vibrant city of Lake Oswego, Oregon. At HUB International, we partner with an extensive clientele, catering to all types of business entities – from multinational corporations to smaller, cherished locally-owned ventures. We are proud to be part of HUB International, the 5th largest insurance broker in the United States.<br>
<br>
Our commitment is simple – to be your reliable partners in Risk Management, Employee Benefits, Retirement &amp; Private Wealth. With a dedicated team of experts, we place great emphasis on being responsive and proactive, ensuring that your needs are met promptly and effectively. With HUB, you have a partner who is committed to supporting and protecting you.<br>
<br>
Explore our tailored solutions, and let us navigate the complexities of insurance together. Protect what matters most. Contact us today.</p>
    </div>

                                                        </div>
                                                        <div class="row">
                                                            

    <!-- Callout - Links List -->
    <div class="tab-list-content rte-content">
        
        <h5>Associations</h5>

        <ul class="tab-list">

                        <li>
                            <a href="https://www.timbers.com/" target="_blank" class="">
                                Portland Timbers
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.financialexecutives.org/Network/Chapters/Portland/Home.aspx?gclid=EAIaIQobChMIs6jchbeIhAMVCw-tBh03ogynEAAYASAAEgIsQ_D_BwE" target="_blank" class="">
                                FEI Portland
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.oregonwinegrowers.org/" target="_blank" class="">
                                Oregon Winegrower&#39;s Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.heart.org/en/affiliates/oregon" target="_blank" class="">
                                American Heart Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href=" https://portland.imanet.org/home?ssopc=1" target="_blank" class="">
                                IMA
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.westernpallet.org/" target="_blank" class="">
                                Western Pallett Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.sedcor.com/" target="_blank" class="">
                                Sedcor
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://oregonhba.com/" target="_blank" class="">
                                Oregon Homebuilder&#39;s Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://iecoregon.org/" target="_blank" class="">
                                Independent Electrical Contractors
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.aiaoregon.org/" target="_blank" class="">
                                American Institute of Architecture
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
            
        </ul>
    </div>

                                                        </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                                                    <div class="accordion-group">
                                        <div class="accordion-heading">
                                            <a class="accordion-toggle" data-content-type="content:selector" data-text="products and industries" data-component="section tab"
                                               data-toggle="collapse" data-parent="#accordion-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" href="#tab2mobile-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                                Products and Industries
                                            </a>
                                        </div>
                                        <div id="tab2mobile-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" class="panel-collapse collapse">
                                            <div class="panel-body">
                                                <div class="col-xs-12">
                                                    <div class="row">
                                                        


    <!-- MOBILE -->
    <div class="col-xs-12 hidden-md hidden-lg grouped-page-callout-container">
        <div class="row">
            <div class="dropdown-container">
                <select class="js-example-basic-hide-search grouped-page-callout" name="products" aria-label="Select Products from the list">
                        <option value="Business">Business</option>
                        <option value="Employee Benefits">Employee Benefits</option>
                        <option value="Personal">Personal</option>
                        <option value="Private Client">Private Client</option>
                        <option value="Risk Services">Risk Services</option>
                        <option value="Industries">Industries</option>
                </select>
            </div>

<div class="accordion-container-search-results col-xs-12 hidden" data-section="Business">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/" class="chevron">Business Insurance</a>
                <p>HUB will work with your company to create a custom business insurance solution that will meet your unique needs. Contact a HUB advisor to get started today.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Employee Benefits">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/" class="chevron">Employee Benefits Broker</a>
                <p>As an Employee Benefits Broker, HUB International offers expertise, capabilities, and analytics to help strategically manage costs and personalize benefits.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Personal">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/" class="chevron">Personal Insurance</a>
                <p>Personal insurance provides protection for your family, home, and more. Contact HUB to create a custom personal insurance solution that best meets your needs.  </p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Private Client">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/private-client-insurance/" class="chevron">Private Client Insurance</a>
                <p>Our insurance and risk management experts specialize in developing tailored private client insurance solutions in order to protect your family and lifestyle.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Risk Services">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/risk-services/" class="chevron">Risk Management Services</a>
                <p>HUB Risk Management Services helps you reduce risk to your people and property through tailored solutions. Review our risk management service offerings here.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Industries">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/industries/real-estate-insurance/" class="chevron">Real Estate Insurance</a>
                <p>HUB offers real estate insurance solutions for commercial and residential clients. Connect with a HUB advisor for real estate &amp; property insurance today.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/non-profit-insurance/" class="chevron">Nonprofit Insurance</a>
                <p>Whether your organization is large or small, look to HUB for a nonprofit insurance solution that enables you to focus on your mission. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/agribusiness-and-farm-insurance/" class="chevron">Agribusiness and Farm Insurance</a>
                <p>Agriculture insurance protects against loss of or damage to agricultural land, crops, or livestock. Learn about HUB’s agriculture insurance offering here. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/healthcare-business-insurance/" class="chevron">Healthcare Insurance Solutions</a>
                <p>HUB offers healthcare business insurance solutions for medical businesses in multiple segments ranging from senior care organizations to medical practices</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/construction-insurance/" class="chevron">Construction Insurance</a>
                <p>Construction insurance is a category of insurance representing insurance policies that protect businesses from risk during all types of construction projects.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/transportation-insurance/" class="chevron">Transportation Insurance</a>
                <p>HUB Transportation is the commercial trucking insurance industry’s leading advisor. Learn more about HUB’s commercial transportation insurance offerings here.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/financial-institution-insurance/" class="chevron">Financial Institutions Insurance&#160;</a>
                <p>HUB provides financial institution insurance and other products to protect banking institutions, investment firms, private equity and more.</p>
            </li>
            </ul>
</div>
        </div>
    </div>
    <!-- /MOBILE -->
    <!-- DESKTOP -->
    <div class="col-md-4 hidden-xs hidden-sm grouped-page-callout-container">
        <div class="row">
            <div class="col-md-9">
                <div class="row">
                    <div class="">
                        <ul class="tab-group-vertical" role="tablist">


                                <li role="presentation" class="active col-md-4">
                                    <a href="#panel-1f3c4502-ddf3-4be4-a3c1-82dd7d329f85-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" aria-controls="panel-1f3c4502-ddf3-4be4-a3c1-82dd7d329f85-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" role="tab" data-toggle="tab" class="">Business</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-f97e8fbb-864a-4b09-a44c-978194455baf-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" aria-controls="panel-f97e8fbb-864a-4b09-a44c-978194455baf-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" role="tab" data-toggle="tab" class="">Employee Benefits</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-63de44f1-4461-42b6-b562-040e97c7ccce-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" aria-controls="panel-63de44f1-4461-42b6-b562-040e97c7ccce-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" role="tab" data-toggle="tab" class="">Personal</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-48fbafa4-bc37-462d-a629-534c133b0bf3-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" aria-controls="panel-48fbafa4-bc37-462d-a629-534c133b0bf3-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" role="tab" data-toggle="tab" class="">Private Client</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-0fe63621-8f5b-4867-af15-2d789f779c4b-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" aria-controls="panel-0fe63621-8f5b-4867-af15-2d789f779c4b-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" role="tab" data-toggle="tab" class="">Risk Services</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-94700440-c104-4128-8cc1-5817adc96a68-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" aria-controls="panel-94700440-c104-4128-8cc1-5817adc96a68-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6" role="tab" data-toggle="tab" class="">Industries</a>
                                </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="col-md-8 hidden-xs hidden-sm grouped-page-callout-container">
        <div class="row">
            <div class="col-md-12">
                <div class="row">
                    <div class="tab-content">

                        <div role="tabpanel" class="tab-pane active" id="panel-1f3c4502-ddf3-4be4-a3c1-82dd7d329f85-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6">
                                <h5>Business</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/" class="chevron">Business Insurance</a>
                <p>HUB will work with your company to create a custom business insurance solution that will meet your unique needs. Contact a HUB advisor to get started today.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-f97e8fbb-864a-4b09-a44c-978194455baf-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6">
                                <h5>Employee Benefits</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/" class="chevron">Employee Benefits Broker</a>
                <p>As an Employee Benefits Broker, HUB International offers expertise, capabilities, and analytics to help strategically manage costs and personalize benefits.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-63de44f1-4461-42b6-b562-040e97c7ccce-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6">
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/" class="chevron">Personal Insurance</a>
                <p>Personal insurance provides protection for your family, home, and more. Contact HUB to create a custom personal insurance solution that best meets your needs.  </p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-48fbafa4-bc37-462d-a629-534c133b0bf3-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6">
                                <h5>Private Client</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/private-client-insurance/" class="chevron">Private Client Insurance</a>
                <p>Our insurance and risk management experts specialize in developing tailored private client insurance solutions in order to protect your family and lifestyle.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-0fe63621-8f5b-4867-af15-2d789f779c4b-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6">
                                <h5>Risk Services</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/risk-services/" class="chevron">Risk Management Services</a>
                <p>HUB Risk Management Services helps you reduce risk to your people and property through tailored solutions. Review our risk management service offerings here.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-94700440-c104-4128-8cc1-5817adc96a68-products-and-industries-e14373bd-10ab-44e7-833f-665eb87b86a6">
                                <h5>Industries</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/real-estate-insurance/" class="chevron">Real Estate Insurance</a>
                <p>HUB offers real estate insurance solutions for commercial and residential clients. Connect with a HUB advisor for real estate &amp; property insurance today.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/non-profit-insurance/" class="chevron">Nonprofit Insurance</a>
                <p>Whether your organization is large or small, look to HUB for a nonprofit insurance solution that enables you to focus on your mission. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/agribusiness-and-farm-insurance/" class="chevron">Agribusiness and Farm Insurance</a>
                <p>Agriculture insurance protects against loss of or damage to agricultural land, crops, or livestock. Learn about HUB’s agriculture insurance offering here. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/healthcare-business-insurance/" class="chevron">Healthcare Insurance Solutions</a>
                <p>HUB offers healthcare business insurance solutions for medical businesses in multiple segments ranging from senior care organizations to medical practices</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/construction-insurance/" class="chevron">Construction Insurance</a>
                <p>Construction insurance is a category of insurance representing insurance policies that protect businesses from risk during all types of construction projects.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/transportation-insurance/" class="chevron">Transportation Insurance</a>
                <p>HUB Transportation is the commercial trucking insurance industry’s leading advisor. Learn more about HUB’s commercial transportation insurance offerings here.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/financial-institution-insurance/" class="chevron">Financial Institutions Insurance&#160;</a>
                <p>HUB provides financial institution insurance and other products to protect banking institutions, investment firms, private equity and more.</p>
            </li>
            </ul>
</div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- /DESKTOP -->

                                                    </div>
                                                        <div class="row">
                                                            
                                                        </div>
                                                        <div class="row">
                                                            
                                                        </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                                                    <div class="accordion-group">
                                        <div class="accordion-heading">
                                            <a class="accordion-toggle" data-content-type="content:selector" data-text="hub gives" data-component="section tab"
                                               data-toggle="collapse" data-parent="#accordion-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" href="#tab3mobile-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                                HUB GIves
                                            </a>
                                        </div>
                                        <div id="tab3mobile-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" class="panel-collapse collapse">
                                            <div class="panel-body">
                                                <div class="col-xs-12">
                                                    <div class="row">
                                                        
                                                    </div>
                                                        <div class="row">
                                                            

    <div class="rte-content">
        <h5>HUB Gives Is How We Give Back</h5>
<p>
Each of us has something to give &mdash; and at HUB, we believe in giving back to the communities in which we live and work, making them stronger now and in the future. HUB Gives is our way of donating our time, creativity, passion and connections to community projects that make a difference.<br />
<br />
At Hub International Northwest LLC, a few of the projects we have chosen address domestic violence relief for all citizens in our local community, and giving our local children the resources they need for success.</p>
    </div>

                                                        </div>
                                                        <div class="row">
                                                            

    <!-- Callout - Links List -->
    <div class="tab-list-content rte-content">
        
        <h5>HUB Gives</h5>

        <ul class="tab-list">

                        <li>
                            <a href="https://portland.salvationarmy.org/" target="_blank" class="">
                                Salvation Army
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.kgwtoy.com/" target="_blank" class="">
                                KGW Great Toy Drive
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.redcross.org/local/oregon/about-us/locations/northwest-oregon-chapter.html?CID=organic_gmb_listings" target="_blank" class="">
                                American Red Cross
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
            
        </ul>
    </div>

                                                        </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                            </div>
                            <!-- END MOBILE ONLY -->
                            <!-- DESKTOP/TABLET ONLY -->
                            <div class="tabs-container col-md-12 hidden-xs hidden-sm">
                                <div class="">
                                        <ul class="nav tab-group" role="tablist">
                                                <li role="presentation" class="active col-md-4">
                                                    <a href="#tab1-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" data-content-type="content:selector" data-text="about" data-component="section tab"
                                                       aria-controls="tab1-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" role="tab" data-toggle="tab" class="row">About</a>
                                                </li>
                                                                                            <li role="presentation" class="col-md-4">
                                                    <a href="#tab2-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" data-content-type="content:selector" data-text="products and industries" data-component="section tab"
                                                       aria-controls="tab2-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" role="tab" data-toggle="tab" class="row">Products and Industries</a>
                                                </li>
                                                                                            <li role="presentation" class="col-md-4">
                                                    <a href="#tab3-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" data-content-type="content:selector" data-text="hub gives" data-component="section tab"
                                                       aria-controls="tab3-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f" role="tab" data-toggle="tab" class="row">HUB GIves</a>
                                                </li>
                                        </ul>
                                    <div class="tab-content">
                                            <div role="tabpanel" class="tab-pane active " id="tab1-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                                <section class="two-column-tab-content">
                                                    <div class="col-md-12 full-width-tab">
                                                        
                                                    </div>
                                                    <div class="col-md-8 left-tab">
                                                        

    <div class="rte-content">
        <p>Welcome to Hub International Northwest LLC, nestled in the vibrant city of Lake Oswego, Oregon. At HUB International, we partner with an extensive clientele, catering to all types of business entities – from multinational corporations to smaller, cherished locally-owned ventures. We are proud to be part of HUB International, the 5th largest insurance broker in the United States.<br>
<br>
Our commitment is simple – to be your reliable partners in Risk Management, Employee Benefits, Retirement &amp; Private Wealth. With a dedicated team of experts, we place great emphasis on being responsive and proactive, ensuring that your needs are met promptly and effectively. With HUB, you have a partner who is committed to supporting and protecting you.<br>
<br>
Explore our tailored solutions, and let us navigate the complexities of insurance together. Protect what matters most. Contact us today.</p>
    </div>

                                                    </div>
                                                    <div class="col-md-4 right-tab">
                                                        

    <!-- Callout - Links List -->
    <div class="tab-list-content rte-content">
        
        <h5>Associations</h5>

        <ul class="tab-list">

                        <li>
                            <a href="https://www.timbers.com/" target="_blank" class="">
                                Portland Timbers
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.financialexecutives.org/Network/Chapters/Portland/Home.aspx?gclid=EAIaIQobChMIs6jchbeIhAMVCw-tBh03ogynEAAYASAAEgIsQ_D_BwE" target="_blank" class="">
                                FEI Portland
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.oregonwinegrowers.org/" target="_blank" class="">
                                Oregon Winegrower&#39;s Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.heart.org/en/affiliates/oregon" target="_blank" class="">
                                American Heart Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href=" https://portland.imanet.org/home?ssopc=1" target="_blank" class="">
                                IMA
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.westernpallet.org/" target="_blank" class="">
                                Western Pallett Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.sedcor.com/" target="_blank" class="">
                                Sedcor
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://oregonhba.com/" target="_blank" class="">
                                Oregon Homebuilder&#39;s Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://iecoregon.org/" target="_blank" class="">
                                Independent Electrical Contractors
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.aiaoregon.org/" target="_blank" class="">
                                American Institute of Architecture
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
            
        </ul>
    </div>

                                                    </div>
                                                </section>
                                            </div>
                                                                                    <div role="tabpanel" class="tab-pane " id="tab2-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                                <section class="two-column-tab-content">
                                                    <div class="col-md-12 full-width-tab">
                                                        


    <!-- MOBILE -->
    <div class="col-xs-12 hidden-md hidden-lg grouped-page-callout-container">
        <div class="row">
            <div class="dropdown-container">
                <select class="js-example-basic-hide-search grouped-page-callout" name="products" aria-label="Select Products from the list">
                        <option value="Business">Business</option>
                        <option value="Employee Benefits">Employee Benefits</option>
                        <option value="Personal">Personal</option>
                        <option value="Private Client">Private Client</option>
                        <option value="Risk Services">Risk Services</option>
                        <option value="Industries">Industries</option>
                </select>
            </div>

<div class="accordion-container-search-results col-xs-12 hidden" data-section="Business">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/" class="chevron">Business Insurance</a>
                <p>HUB will work with your company to create a custom business insurance solution that will meet your unique needs. Contact a HUB advisor to get started today.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Employee Benefits">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/" class="chevron">Employee Benefits Broker</a>
                <p>As an Employee Benefits Broker, HUB International offers expertise, capabilities, and analytics to help strategically manage costs and personalize benefits.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Personal">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/" class="chevron">Personal Insurance</a>
                <p>Personal insurance provides protection for your family, home, and more. Contact HUB to create a custom personal insurance solution that best meets your needs.  </p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Private Client">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/private-client-insurance/" class="chevron">Private Client Insurance</a>
                <p>Our insurance and risk management experts specialize in developing tailored private client insurance solutions in order to protect your family and lifestyle.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Risk Services">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/products/risk-services/" class="chevron">Risk Management Services</a>
                <p>HUB Risk Management Services helps you reduce risk to your people and property through tailored solutions. Review our risk management service offerings here.</p>
            </li>
            </ul>
</div>
<div class="accordion-container-search-results col-xs-12 hidden" data-section="Industries">
    <ul class="row">
            <li>
                <a href="https://www.hubinternational.com/industries/real-estate-insurance/" class="chevron">Real Estate Insurance</a>
                <p>HUB offers real estate insurance solutions for commercial and residential clients. Connect with a HUB advisor for real estate &amp; property insurance today.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/non-profit-insurance/" class="chevron">Nonprofit Insurance</a>
                <p>Whether your organization is large or small, look to HUB for a nonprofit insurance solution that enables you to focus on your mission. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/agribusiness-and-farm-insurance/" class="chevron">Agribusiness and Farm Insurance</a>
                <p>Agriculture insurance protects against loss of or damage to agricultural land, crops, or livestock. Learn about HUB’s agriculture insurance offering here. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/healthcare-business-insurance/" class="chevron">Healthcare Insurance Solutions</a>
                <p>HUB offers healthcare business insurance solutions for medical businesses in multiple segments ranging from senior care organizations to medical practices</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/construction-insurance/" class="chevron">Construction Insurance</a>
                <p>Construction insurance is a category of insurance representing insurance policies that protect businesses from risk during all types of construction projects.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/transportation-insurance/" class="chevron">Transportation Insurance</a>
                <p>HUB Transportation is the commercial trucking insurance industry’s leading advisor. Learn more about HUB’s commercial transportation insurance offerings here.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/industries/financial-institution-insurance/" class="chevron">Financial Institutions Insurance&#160;</a>
                <p>HUB provides financial institution insurance and other products to protect banking institutions, investment firms, private equity and more.</p>
            </li>
            </ul>
</div>
        </div>
    </div>
    <!-- /MOBILE -->
    <!-- DESKTOP -->
    <div class="col-md-4 hidden-xs hidden-sm grouped-page-callout-container">
        <div class="row">
            <div class="col-md-9">
                <div class="row">
                    <div class="">
                        <ul class="tab-group-vertical" role="tablist">


                                <li role="presentation" class="active col-md-4">
                                    <a href="#panel-1f3c4502-ddf3-4be4-a3c1-82dd7d329f85-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" aria-controls="panel-1f3c4502-ddf3-4be4-a3c1-82dd7d329f85-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" role="tab" data-toggle="tab" class="">Business</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-f97e8fbb-864a-4b09-a44c-978194455baf-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" aria-controls="panel-f97e8fbb-864a-4b09-a44c-978194455baf-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" role="tab" data-toggle="tab" class="">Employee Benefits</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-63de44f1-4461-42b6-b562-040e97c7ccce-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" aria-controls="panel-63de44f1-4461-42b6-b562-040e97c7ccce-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" role="tab" data-toggle="tab" class="">Personal</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-48fbafa4-bc37-462d-a629-534c133b0bf3-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" aria-controls="panel-48fbafa4-bc37-462d-a629-534c133b0bf3-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" role="tab" data-toggle="tab" class="">Private Client</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-0fe63621-8f5b-4867-af15-2d789f779c4b-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" aria-controls="panel-0fe63621-8f5b-4867-af15-2d789f779c4b-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" role="tab" data-toggle="tab" class="">Risk Services</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-94700440-c104-4128-8cc1-5817adc96a68-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" aria-controls="panel-94700440-c104-4128-8cc1-5817adc96a68-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360" role="tab" data-toggle="tab" class="">Industries</a>
                                </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="col-md-8 hidden-xs hidden-sm grouped-page-callout-container">
        <div class="row">
            <div class="col-md-12">
                <div class="row">
                    <div class="tab-content">

                        <div role="tabpanel" class="tab-pane active" id="panel-1f3c4502-ddf3-4be4-a3c1-82dd7d329f85-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360">
                                <h5>Business</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/" class="chevron">Business Insurance</a>
                <p>HUB will work with your company to create a custom business insurance solution that will meet your unique needs. Contact a HUB advisor to get started today.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-f97e8fbb-864a-4b09-a44c-978194455baf-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360">
                                <h5>Employee Benefits</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/" class="chevron">Employee Benefits Broker</a>
                <p>As an Employee Benefits Broker, HUB International offers expertise, capabilities, and analytics to help strategically manage costs and personalize benefits.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-63de44f1-4461-42b6-b562-040e97c7ccce-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360">
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/" class="chevron">Personal Insurance</a>
                <p>Personal insurance provides protection for your family, home, and more. Contact HUB to create a custom personal insurance solution that best meets your needs.  </p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-48fbafa4-bc37-462d-a629-534c133b0bf3-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360">
                                <h5>Private Client</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/private-client-insurance/" class="chevron">Private Client Insurance</a>
                <p>Our insurance and risk management experts specialize in developing tailored private client insurance solutions in order to protect your family and lifestyle.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-0fe63621-8f5b-4867-af15-2d789f779c4b-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360">
                                <h5>Risk Services</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/risk-services/" class="chevron">Risk Management Services</a>
                <p>HUB Risk Management Services helps you reduce risk to your people and property through tailored solutions. Review our risk management service offerings here.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-94700440-c104-4128-8cc1-5817adc96a68-products-and-industries-b4ca980f-64a0-4e9b-80ce-05edca68b360">
                                <h5>Industries</h5>
                                                        
<div class="tab-content-two-column">
    <ul class="flex-eqal-heights row">
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/real-estate-insurance/" class="chevron">Real Estate Insurance</a>
                <p>HUB offers real estate insurance solutions for commercial and residential clients. Connect with a HUB advisor for real estate &amp; property insurance today.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/non-profit-insurance/" class="chevron">Nonprofit Insurance</a>
                <p>Whether your organization is large or small, look to HUB for a nonprofit insurance solution that enables you to focus on your mission. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/agribusiness-and-farm-insurance/" class="chevron">Agribusiness and Farm Insurance</a>
                <p>Agriculture insurance protects against loss of or damage to agricultural land, crops, or livestock. Learn about HUB’s agriculture insurance offering here. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/healthcare-business-insurance/" class="chevron">Healthcare Insurance Solutions</a>
                <p>HUB offers healthcare business insurance solutions for medical businesses in multiple segments ranging from senior care organizations to medical practices</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/construction-insurance/" class="chevron">Construction Insurance</a>
                <p>Construction insurance is a category of insurance representing insurance policies that protect businesses from risk during all types of construction projects.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/transportation-insurance/" class="chevron">Transportation Insurance</a>
                <p>HUB Transportation is the commercial trucking insurance industry’s leading advisor. Learn more about HUB’s commercial transportation insurance offerings here.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/industries/financial-institution-insurance/" class="chevron">Financial Institutions Insurance&#160;</a>
                <p>HUB provides financial institution insurance and other products to protect banking institutions, investment firms, private equity and more.</p>
            </li>
            </ul>
</div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- /DESKTOP -->

                                                    </div>
                                                    <div class="col-md-4 left-tab">
                                                        
                                                    </div>
                                                    <div class="col-md-8 right-tab">
                                                        
                                                    </div>
                                                </section>
                                            </div>
                                                                                    <div role="tabpanel" class="tab-pane " id="tab3-tabber-ae0b355c-fb1f-48eb-a76b-9dec6e94b24f">
                                                <section class="two-column-tab-content">
                                                    <div class="col-md-12 full-width-tab">
                                                        
                                                    </div>
                                                    <div class="col-md-4 left-tab">
                                                        

    <!-- Callout - Links List -->
    <div class="tab-list-content rte-content">
        
        <h5>HUB Gives</h5>

        <ul class="tab-list">

                        <li>
                            <a href="https://portland.salvationarmy.org/" target="_blank" class="">
                                Salvation Army
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.kgwtoy.com/" target="_blank" class="">
                                KGW Great Toy Drive
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.redcross.org/local/oregon/about-us/locations/northwest-oregon-chapter.html?CID=organic_gmb_listings" target="_blank" class="">
                                American Red Cross
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
            
        </ul>
    </div>

                                                    </div>
                                                    <div class="col-md-8 right-tab">
                                                        

    <div class="rte-content">
        <h5>HUB Gives Is How We Give Back</h5>
<p>
Each of us has something to give &mdash; and at HUB, we believe in giving back to the communities in which we live and work, making them stronger now and in the future. HUB Gives is our way of donating our time, creativity, passion and connections to community projects that make a difference.<br />
<br />
At Hub International Northwest LLC, a few of the projects we have chosen address domestic violence relief for all citizens in our local community, and giving our local children the resources they need for success.</p>
    </div>

                                                    </div>
                                                </section>
                                            </div>

                                    </div>

                                </div>
                            </div>
                            <!-- END DESKTOP/TABLET ONLY -->

                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>








<section class="two-column-left-rail block gray-background " style="">
    <!-- add class="gray-background" -->
    <div class="row padding-mobile">
        <div class="container">
            <div class="row">
                <div class="col-md-12">
                    <div class="row">
                            <h2 class="text-center">HUB International Lake Oswego</h2>
                                                <div class="column-css col-xs-12 col-md-4">
                            <div class="placeholder-css col-xs-12 col-md-12">
                                <div>
                                    
                                </div>
                            </div>
                        </div>

                        <div class="column-css col-xs-12 col-md-8">
                            <div class="placeholder-css ">
                                <div>
                                    
                                </div>
                            </div>
                        </div>
                        <div>
                        <div class="column-css col-xs-12 col-md-4">
                            <div class="placeholder-css col-xs-12 col-md-12">
                                <div>
                                    

    <!-- Callout - CTA -->
    <section class="cta-callout">
        <!-- add class="gray-background" -->
        <div class="quote">
            Subscribe
        </div>

        <div class="sub-quote">
            Sign up to receive insights straight to your inbox.
        </div>

        <!-- Width button CTA-->
            <div id="fscontact" style="display:none;"></div>
<a href="https://www.hubinternational.com/subscribe/" class="btn btn-primary" >SUBSCRIBE</a>    </section>

                                </div>
                            </div>
                        </div>
                        <div class="column-css col-xs-12 col-md-8">
                            <div class="placeholder-css ">
                                <div>
                                    

    <section class="resource-cards-section">
        <ul class="flex-eqal-heights">
                <li class="resource-card flex-card col-xs-6 col-md-4">
                    <div class="resource-card-wrapper article-index-1">
                        <div class="pull-right">
                            
                        </div>
                        <span class="resource-category">Employee Benefits</span>
                        <a href="https://www.hubinternational.com/blog/2024/10/vote-yes-to-investment-diversification/" data-content-type="content:resources" data-text="diversify your portfolio in election-year markets" data-component="resource cards"
                           class="resource-btn">
                                <img src="/-/media/hub-international/Blog/Webinars/Main-Images/2024/main-image-managing-global-employee-benefits-for-multinational-companies.jpg" class="img-responsive" alt="main-image-managing-global-employee-benefits-for-multinational-companies" />
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Blog/Webinars/Main-Images/2024/main-image-managing-global-employee-benefits-for-multinational-companies.jpg",
  "name": "main-image-managing-global-employee-benefits-for-multinational-companies"
}
</script>                            <div class="link-container">
                                Diversify Your Portfolio in Election-Year Markets <span class="chevron"><em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></span>
                            </div>
                        </a>
                    </div>
                </li>
                <li class="resource-card flex-card col-xs-6 col-md-4">
                    <div class="resource-card-wrapper article-index-2">
                        <div class="pull-right">
                            
                        </div>
                        <span class="resource-category">Employee Benefits</span>
                        <a href="https://www.hubinternational.com/blog/2024/10/developing-a-cohesive-approach-to-workplace-absence/" data-content-type="content:resources" data-text="proactive prevention: developing a cohesive approach to workplace absence &amp; disability management" data-component="resource cards"
                           class="resource-btn">
                                <img src="/-/media/hub-international/Blog/Videos/Main-Images/2024/Main-Image-Developing-Cohesive-Approach-to-Workplace-Absence.jpg" class="img-responsive" alt="Main-Image-Developing-Cohesive-Approach-to-Workplace-Absence" />
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Blog/Videos/Main-Images/2024/Main-Image-Developing-Cohesive-Approach-to-Workplace-Absence.jpg",
  "name": "Main-Image-Developing-Cohesive-Approach-to-Workplace-Absence"
}
</script>                            <div class="link-container">
                                Proactive Prevention: Developing a Cohesive Approach to Workplace Absence &amp; Disability Management <span class="chevron"><em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></span>
                            </div>
                        </a>
                    </div>
                </li>
                <li class="resource-card flex-card col-xs-6 col-md-4">
                    <div class="resource-card-wrapper article-index-3">
                        <div class="pull-right">
                            
                        </div>
                        <span class="resource-category">Compliance</span>
                        <a href="https://www.hubinternational.com/blog/2024/09/medicare-part-d-creditable-coverage-determination/" data-content-type="content:resources" data-text="medicare part d creditable coverage determination" data-component="resource cards"
                           class="resource-btn">
                                <img src="/-/media/hub-international/Blog/Videos/Main-Images/2024/Main-Image-No-Text.jpg" class="img-responsive" alt="Main-Image-New-HIPAA_b" />
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Blog/Videos/Main-Images/2024/Main-Image-No-Text.jpg",
  "name": "Main-Image-New-HIPAA_b"
}
</script>                            <div class="link-container">
                                Medicare Part D Creditable Coverage Determination <span class="chevron"><em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></span>
                            </div>
                        </a>
                    </div>
                </li>
                <li class="resource-card flex-card col-xs-6 col-md-4">
                    <div class="resource-card-wrapper article-index-4">
                        <div class="pull-right">
                            
                        </div>
                        <span class="resource-category"></span>
                        <a href="https://www.hubinternational.com/blog/2024/09/thriving-in-hospitality-webinar/" data-content-type="content:resources" data-text="[on-demand webinar] thriving in hospitality: driving innovation and growth" data-component="resource cards"
                           class="resource-btn">
                                <img src="/-/media/hub-international/Blog/Webinars/Main-Images/2024/main-image-thriving-in-hospitality-expert-strategies-for-innovation-and-growth-webinar.jpg" class="img-responsive" alt="main-image-thriving-in-hospitality-expert-strategies-for-innovation-and-growth-webinar" />
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Blog/Webinars/Main-Images/2024/main-image-thriving-in-hospitality-expert-strategies-for-innovation-and-growth-webinar.jpg",
  "name": "main-image-thriving-in-hospitality-expert-strategies-for-innovation-and-growth-webinar"
}
</script>                            <div class="link-container">
                                [On-Demand Webinar] Thriving in Hospitality: Driving Innovation and Growth <span class="chevron"><em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></span>
                            </div>
                        </a>
                    </div>
                </li>
                <li class="resource-card flex-card col-xs-6 col-md-4">
                    <div class="resource-card-wrapper article-index-5">
                        <div class="pull-right">
                            
                        </div>
                        <span class="resource-category">Risk Management</span>
                        <a href="https://www.hubinternational.com/blog/2024/09/shifting-market-dynamics-webinar/" data-content-type="content:resources" data-text="[on-demand webinar] ready for tomorrow: pivot and swerve — staying agile during shifting market dynamics" data-component="resource cards"
                           class="resource-btn">
                                <img src="/-/media/hub-international/Blog/Webinars/Main-Images/2024/Main-Image-Property-Markets-Webinar.jpg" class="img-responsive" alt="Main-Image-Property-Markets-Webinar" />
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Blog/Webinars/Main-Images/2024/Main-Image-Property-Markets-Webinar.jpg",
  "name": "Main-Image-Property-Markets-Webinar"
}
</script>                            <div class="link-container">
                                [On-Demand Webinar] Ready for Tomorrow: Pivot and Swerve — Staying Agile During Shifting Market Dynamics <span class="chevron"><em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></span>
                            </div>
                        </a>
                    </div>
                </li>
                <li class="resource-card flex-card col-xs-6 col-md-4">
                    <div class="resource-card-wrapper article-index-6">
                        <div class="pull-right">
                            
                        </div>
                        <span class="resource-category">Compliance</span>
                        <a href="https://www.hubinternational.com/blog/2024/09/hipaa-reproductive-rights/" data-content-type="content:resources" data-text="new hipaa health reproductive rights &amp; substance use disclosures" data-component="resource cards"
                           class="resource-btn">
                                <img src="/-/media/hub-international/Blog/Videos/Main-Images/2024/Main-Image-New-HIPAA_b.jpg" class="img-responsive" alt="Main-Image-New-HIPAA_b" />
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Blog/Videos/Main-Images/2024/Main-Image-New-HIPAA_b.jpg",
  "name": "Main-Image-New-HIPAA_b"
}
</script>                            <div class="link-container">
                                New HIPAA Health Reproductive Rights &amp; Substance Use Disclosures <span class="chevron"><em class="fa fa-angle-right emphasized-text-angle-right" aria-hidden="true"></em></span>
                            </div>
                        </a>
                    </div>
                </li>
        </ul>
    </section>



                                </div>
                            </div>
                        </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>
<link rel="preload" type="text/css" href="https://widgets.reputation.com/lib/widgets.css" as="style" onload="this.onload=null;this.rel='stylesheet'" />


    <section class="review-widget block">
        <div class="container">
                <div class="row">
                    <div class="col-md-12">
                        <h3 class="text-center">What Clients are Saying About HUB Lake Oswego</h3>
                    </div>
                </div>
            <div class="row">
                <div class="col-md-12">
                    <div id="reviewWidget" data-lk="2ca737f8149"></div>
                </div>
            </div>
        </div>
    </section>
    <style type="text/css">
        .review-widget {
            background-color: #0678D5;
            font-family: "Gotham SSm A", "Gotham SSm B";
            font-size: 16px;
            font-style: normal;
            font-weight: 300;
            line-height: 22px;
            color: #fff;
        }
            .review-widget h3 {
                font-family: "Gotham SSm A", "Gotham SSm B";
                font-size: 26px;
                font-style: normal;
                font-weight: 700;
                line-height: 1.64;
            }
        @media (min-width: 1248px) {
            .review-widget h3 {
                font-family: "Gotham SSm A", "Gotham SSm B";
                font-size: 28px;
                font-style: normal;
                font-weight: 700;
                line-height: 1.64;
            }
        }
        .r4e-widget.reviews hr {
            display: none;
        }
        .r4e-widget.reviews .review {
            padding-top: 20px;
            border-bottom: 1px solid #fff;
        }
        .r4e-widget.reviews .aggregate .rating {
            display: block;
            text-align: center;
        }
        .r4e-widget.reviews .aggregate .count {
            display: block;
            position: relative;
            text-align: center;
        }
        .r4e-widget.reviews .review .icon {
            display: none;
        }
        .icon-star-solid:before {
            content: '\2605'
        }
        .r4e-widget.reviews .rating .stars .icon-star-solid {
            font-size: 18px;
            margin-right: -2px;
        }
        .r4e-widget.reviews .rating .stars .icon-star-half {
            font-size: 18px;
            margin-right: -2px;
        }
        .r4e-widget.reviews .aggregate .stars .icon-star-solid {
            font-size: 22px;
            margin-right: 1px;
        }
        .r4e-widget.reviews .aggregate .stars .icon-star-half {
            font-size: 22px;
            margin-right: 1px;
        }
        .r4e-widget.reviews .aggregate .stars .icon-star, .r4e-widget.reviews .aggregate .stars .icon-star-empty {
            font-size: 22px;
        }
        .r4e-widget.reviews .aggregate .label-container .value {
            font-size: 20px;
            color: #fff;
        }
        .r4e-widget.reviews .aggregate .label-container .max {
            font-size: 16px;
            color: #fff;
        }
        .r4e-widget .rating .stars.full {
            color: #F3B921;
        }
        .r4e-widget .rating .stars.empty {
            color: #0678D5;
            padding-right: 3px;
        }
            .r4e-widget .rating .stars.empty .icon-star-empty {
                color: #F3B921;
            }
        .r4e-widget.reviews .review .date {
            color: #fff;
            font-size: 14px;
        }
        .r4e-widget.reviews .review .summary .info {
            color: #fff;
            font-size: 14px;
        }
        .r4e-widget.reviews .review .summary {
            font-size: 14px;
        }
        .r4e-widget.reviews .review .comment {
            font-size: 16px;
        }
        .r4e-widget.reviews a {
            color: #fff;
        }
            .r4e-widget.reviews a:hover {
                color: #000;
            }
        .r4e-widget.reviews .pagination a {
            color: #fff;
        }
            .r4e-widget.reviews .pagination a:hover {
                color: #000;
            }
    </style>

    <script type="text/javascript">

        $(document).ready(function () {
            var language = "en";
            var zeroreviewstring = "No reviews found";
            var reviewWidget = document.getElementById('reviewWidget');
            var locationKey = $("#reviewWidget").attr('data-lk');
            if (locationKey != null && locationKey != "") {
                var url = 'https://widgets.reputation.com/widgets/5fecab0e6d6d880007237130/run?tk=' + 'b2317e72016' + '&start=0&lk=' + locationKey;
                $.ajax({
                    type: "GET",
                    url: url,
                    dataType: 'html',
                    success: function (data) {
                        if (data.includes(zeroreviewstring)) {
                            $(".review-widget").hide();
                        }
                        else {
                            $("#reviewWidget").html(data);
                            if (language.includes("en-ca")) {
                                swapelements();
                            }
                        }
                    },
                    error: function () {
                        $(".review-widget").hide();
                        console.log("Error occured!!")
                    }
                });

                $('#reviewWidget').on('click', '.pagination a', function (e) {
                    e.preventDefault();

                    var paginationLink = $(this).attr('href');
                    var siteUrl = url.replace(/\?.+$/, paginationLink);

                    $.ajax({
                        type: "GET",
                        url: siteUrl,
                        dataType: 'html',
                        success: function (data) {
                            $("#reviewWidget").html(data);
                        },
                        error: function () {
                            console.log("Error occured!!")
                        }
                    });
                });
            }
            else {
                $(".review-widget").hide();
            }
        });
        function swapelements() {
            $(".review-widget").insertBefore($(".two-column-left-rail"));

        }
    </script>



            
        </main>

        <!-- BEGIN NOINDEX -->
        <div class="search-container"></div>



        

        
<footer class="site-footer">
        <div id="footer-navigation-search" class="container / border-top / hidden-xs / hidden-sm / hidden-md">
            <div class="row">
                <div class="col-md-8">
                    <div class="row">
                        <div class="col-md-4">
                                    <ul class="reset">
                <li class=""  >
<a href="https://www.hubinternational.com/offices/" data-link-text="offices" data-link-type="nav:footer:link" data-link-component="footer" >Offices</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/products/" data-link-text="products" data-link-type="nav:footer:link" data-link-component="footer" >Products</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/industries/" data-link-text="industries" data-link-type="nav:footer:link" data-link-component="footer" >Industries</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/insights/" data-link-text="blog" data-link-type="nav:footer:link" data-link-component="footer" >Blog</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/insurance-glossary/" data-link-text="insurance glossary" data-link-type="nav:footer:link" data-link-component="footer" >Insurance Glossary</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/products/employee-benefits/compliance-bulletins/" data-link-text="compliance bulletins" data-link-type="nav:footer:link" data-link-component="footer" >Compliance Bulletins</a>                </li>
        </ul>

                        </div>
                        <div class="col-md-4">
                                    <ul class="reset">
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/" data-link-text="about hub" data-link-type="nav:footer:link" data-link-component="footer" >About HUB</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/meet-the-team/" data-link-text="management" data-link-type="nav:footer:link" data-link-component="footer" >Management</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/caring-and-giving/" data-link-text="caring and giving" data-link-type="nav:footer:link" data-link-component="footer" >Caring and Giving</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/mergers-acquisitions/" data-link-text="mergers & acquisitions" data-link-type="nav:footer:link" data-link-component="footer" >Mergers & Acquisitions</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/landing-pages/personal-insurance/strategic-partnerships/" data-link-text="strategic partnerships" data-link-type="nav:footer:link" data-link-component="footer" >Strategic Partnerships</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/hub-wholesale/" data-link-text="wholesale" data-link-type="nav:footer:link" data-link-component="footer" >Wholesale</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/programs-associations/" data-link-text="programs & associations" data-link-type="nav:footer:link" data-link-component="footer" >Programs & Associations</a>                </li>
        </ul>

                        </div>
                        <div class="col-md-4">
                                    <ul class="reset">
                <li class=""  >
<a href="https://www.hubinternational.com/products/risk-services/hub-crisis-resources/" data-link-text="crisis resource center" data-link-type="nav:footer:link" data-link-component="footer" >Crisis Resource Center</a>                </li>
                <li class=""  >
<a href="https://careers.hubinternational.com/us/en" target="_blank" data-link-text="careers" data-link-type="nav:footer:link" data-link-component="footer" >Careers</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/media-center/" data-link-text="media center" data-link-type="nav:footer:link" data-link-component="footer" >Media Center</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/events/" data-link-text="events" data-link-type="nav:footer:link" data-link-component="footer" >Events</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/investor-relations/" data-link-text="investor relations" data-link-type="nav:footer:link" data-link-component="footer" >Investor Relations</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/how-we-get-paid/" data-link-text="how we get paid" data-link-type="nav:footer:link" data-link-component="footer" >How We Get Paid</a>                </li>
                <li class=""  >
<a href="https://www.hubinternational.com/about-us/ccpa-privacy-notice-for-california-residents/" data-link-text="california privacy notice" data-link-type="nav:footer:link" data-link-component="footer" >California Privacy Notice</a>                </li>
                <li class=""  >
                </li>
        </ul>

                        </div>
                    </div>
                </div>
                <div class="col-md-4">
                    
        <h2>Stay In the Know</h2>
        <p>Keep pace with the latest trends.</p>
        <!-- HUB-4174 - Subscribe Input Box -->
        <div class="footer-input-box" style="display:none;"><label for="subscribe">Subscribe</label><input type="text" placeholder="Subscribe" id="subscribe" aria-label="Subscribe" /> <a href="https://www.hubinternational.com/forms/subscription-preference-center/" title="Subscribe"><em class="fa fa-arrow-right"></em></a></div>
        <a class="btn btn-primary btn-small fs-subscribe-btn" data-link-type="nav:footer:subscribe" data-link-text="subscribe" data-link-component="footer"
           href="https://www.hubinternational.com/forms/subscription-preference-center/" target="" aria-label="Footer navigation Subscribe">Subscribe</a>
        <h3 class="connect-hub">Connect with HUB</h3>
        <p></p>


<div class="social-icons-block">
    <div class="custom_images">
                <a class="linkedin"
                   data-link-type="nav:footer:social" data-link-text="linkedin"
                   data-link-component="footer" aria-label="linkedin" href="https://www.linkedin.com/company/hub-international " target="_blank" rel="nofollow">
                    <span class="social-icon linkedin">
                                <span role="img" aria-label="Footer linkedin icon" class="fa fa-linkedin " aria-hidden="true"></span>
                    </span>
                </a>
                <a class="instagram"
                   data-link-type="nav:footer:social" data-link-text="instagram"
                   data-link-component="footer" aria-label="instagram" href="https://www.instagram.com/HUB_Intl " target="_blank" rel="nofollow">
                    <span class="social-icon instagram">
                                <span role="img" aria-label="Footer instagram icon" class="fa fa-instagram " aria-hidden="true"></span>
                    </span>
                </a>
                <a class="facebook"
                   data-link-type="nav:footer:social" data-link-text="facebook"
                   data-link-component="footer" aria-label="facebook" href="https://www.facebook.com/HUBInternationalLimited " target="_blank" rel="nofollow">
                    <span class="social-icon facebook">
                                <span role="img" aria-label="Footer facebook icon" class="fa fa-facebook " aria-hidden="true"></span>
                    </span>
                </a>
                <a class="x-twitter"
                   data-link-type="nav:footer:social" data-link-text="x-twitter"
                   data-link-component="footer" aria-label="x-twitter" href="https://twitter.com/HUBInsurance " target="_blank" rel="nofollow">
                    <span class="social-icon x-twitter">
                                <span role="img" aria-label="Footer x-twitter icon" class="fa-brands fa-x-twitter " aria-hidden="true"></span>
                    </span>
                </a>
                <a class="glassdoor"
                   data-link-type="nav:footer:social" data-link-text="glassdoor"
                   data-link-component="footer" aria-label="glassdoor" href="https://www.glassdoor.ca/Overview/Working-at-HUB-International-EI_IE14936.11,28.htm " target="_blank" rel="nofollow">
                    <span class="social-icon glassdoor">
                            <span role="img" aria-label="Footer glassdoor icon">
                                <img src="/-/media/hub-international/Shared-Content/glassdoor-socialicon-circle-rgb.png" alt="glassdoor-socialicon" style="width: 30px; height: 32px;" class="social-image-white" />
                                <script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Shared-Content/glassdoor-socialicon-circle-rgb.png",
  "name": "glassdoor-socialicon-circle-rgb"
}
</script>
                                <img src="/-/media/hub-international/Shared-Content/glassdoor-icon-black-transparent.png" alt="glassdoor-socialicon" style="width: 30px; height: 32px;" class="social-image-black" />
                            </span>
                    </span>
                </a>
    </div>
</div>

                </div>
            </div>
        </div>
    
    <div class="copyright">
        <div class="container">
            <div class="row">
                <div class="col-md-12 footer_color">
                    <span itemprop="branchOf" itemscope itemtype="http://schema.org/Corporation">
                        &copy; 2024
                        <span itemprop="name">
                            HUB International Limited. 150 N Riverside Plaza, 17th Floor, Chicago, IL 60606.
                        </span>
                        All rights reserved.
                    </span>
                                        <a href="https://www.hubinternational.com/about-us/privacy-policy/">Privacy Policy</a>
                                        <a href="https://www.hubinternational.com/about-us/terms-and-conditions/">Terms &amp; Conditions</a>
                                        <a href="https://www.hubinternational.com/hub-sitemap/">Sitemap</a>
                </div>
            </div>
        </div>
    </div>

</footer>

        <!-- END NOINDEX -->
    </div>

    <div class="main-site-nav-whiteout"></div>

    <!-- BEGIN NOINDEX -->
    
    <div class="modal-blackout">
        <div class="modal-close-container">
            <div class="close-modal">
                <div class="close-line1"></div>
                <div class="close-line2"></div>
            </div>
        </div>
        <div class="hub-modal"></div>
    </div>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
    <script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.10.18/b-1.5.4/b-colvis-1.5.4/r-2.2.2/sc-1.5.0/sl-1.2.6/datatables.min.js"></script>
    <script src="/Assets/Hub/libs/moment/moment.min.js"></script>
    <script src="https://cdn.datatables.net/plug-ins/1.10.19/sorting/datetime-moment.js"></script>
    <script src="/Assets/Hub/libs/jquery.auto-complete.min.js"></script>

    <!-- inject:js -->
<script src="/Assets/Hub/js/main-806d7e881d.bundle.js"></script>
<!-- endinject -->
       
     
            <script type="text/javascript">
                var cdJsHost = (("https:" == document.location.protocol) ? "https://" : "http://");
                document.write(unescape("%3Cscript src='" +
                    cdJsHost +
                    "analytics.clickdimensions.com/ts.js' type='text/javascript'%3E%3C/script%3E"));
            </script>
            <script type="text/javascript">
            var cdAnalytics = new clickdimensions.Analytics('analytics.clickdimensions.com');
            cdAnalytics.setAccountKey("azfU7zKiNkaMQHn59xr1bg");
            cdAnalytics.setDomain("hubinternational.com");
            cdAnalytics.setScore(typeof (cdScore) == "undefined" ? 0 : (cdScore == 0 ? null : cdScore));
            cdAnalytics.trackPage();
            </script>
         
    
    <!-- END NOINDEX -->
    <!-- Server MachineName = wn0mdwk0007LP -->
</body>

</html>
