
<!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: 'insurance brokers in tampa, fl | 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: '3o2ihxdbya1f4egb5goknn2r',
                     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: 'insurance brokers in tampa, fl | 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: '3o2ihxdbya1f4egb5goknn2r',
                     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": 'insurance brokers in tampa, fl | 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">Insurance Brokers in Tampa, FL | 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&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more." />
        <meta property="og:description" content="HUB&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more.">
        


    <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="Insurance Brokers in Tampa, FL">
        <meta property="og:title" content="Insurance Brokers in Tampa, FL">


    <meta name="twitter:site" content="@HUB International">
    <meta name="twitter:description" content="HUB&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more.">
    <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/florida/tampa/">
        <meta property="og:url" content="https://www.hubinternational.com/offices/us/florida/tampa/" />
            <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 Tampa",
	"alternateName": "HUB International",
	"knowsAbout": "Business Insurance, Employee Benefits Broker, Personal Insurance",
	"address": {
	"@type": "PostalAddress",
	"streetAddress": "4830 W Kennedy Boulevard",
	"addressLocality": "Tampa",
	"addressRegion": "FL",
	"postalCode": "33609"
	},
	"image": "https://www.hubinternational.com/-/media/HUB-International/Offices/Florida/insurance-tampa.webp",
	"telePhone": "(800) 797-0441",
	"faxNumber": "727-669-0673",
	"url": "https://azure-prod-cm.hubinternational.com/offices/us/florida/tampa/",
	"openingHours": "Mo,Tu,We,Th,Fr 08:30-17:30",
	"openingHoursSpecification": [{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday,Tuesday,Wednesday,Thursday,Friday"],"opens":"08:30","closes":"17:30"}],
	"geo": {
	"@type": "GeoCoordinates",
	"latitude": "27.944395",
	"longitude": "-82.525268"
	},
	"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>         <meta property="og:title" content="Insurance Brokers in Tampa, FL" />
    <meta property="og:description" content="HUB&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more." />

    <!-- 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/florida/tampa/" hreflang="en-US" />
                        <link rel="alternate" href="https://www.hubinternational.com/en-CA/offices/us/florida/tampa/" hreflang="en-CA" />
            <link rel="alternate" href="https://www.hubinternational.com/offices/us/florida/tampa/" 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/florida/tampa/",
            "@type": "WebPage",
            "description":"HUB&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more.",
            "mainEntityOfPage":"Hub International",
            "name":"tampa",
            "potentialAction":"Contact Us",
            "url":"https://www.hubinternational.com/offices/us/florida/tampa/"
            }
        </script>

        <script type="application/ld+json">
            {
            "@context": "http://schema.org/",
            "@id": "https://www.hubinternational.com/offices/us/florida/tampa/",
            "@type": "WebPage",
            "description":"HUB&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more.",
            "mainEntityOfPage":"Hub International",
            "name":"tampa",
            "potentialAction":"Contact Us",
            "url":"https://www.hubinternational.com/offices/us/florida/tampa/"
            }
        </script>
            <script type="application/ld+json">
                {
                "@context": "https://schema.org/",
                "@type": "Service",
                "broker":"Insurance Broker",
                "description":"HUB&#39;s insurance agency in Tampa, FL offers business insurance, employee benefits, and personal insurance coverage. Contact our brokers to learn more.",
                "image":"https://www.hubinternational.com/-/media/hub-international/Offices/Florida/insurance-tampa.webp",
                "mainEntityOfPage":"https://www.hubinternational.com/offices/us/florida/tampa/",
                "name":"HUB International Tampa",
                "potentialAction":"contact us",
                "url":"https://www.hubinternational.com/offices/us/florida/tampa/"
                }
            </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/florida/tampa/?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/florida/tampa/" 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/florida/tampa/?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/florida/tampa/">
                            <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/florida/" aria-label="Florida">Florida</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">Tampa</li>

            </ul>
        </nav>

    </section>
    <script type="text/javascript">      
        var breadCrumb = 'HUB:Offices:US:Florida:Tampa:';
        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":"Florida","Url":"https://www.hubinternational.com/offices/us/florida/","IsCurrent":false,"IsParent":true},{"Text":"Tampa","Url":"https://www.hubinternational.com/offices/us/florida/tampa/","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 Tampa
</h1>

    <div class="line-of-business-inline">
        <ul>
                <li>Business</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:(800) 797-0441" aria-label="Main (800) 797-0441 number">(800) 797-0441</a> <strong>Main</strong>
                </li>
                <li>
                    <em class="fa fa-phone" aria-hidden="true"></em> <a href="tel:800-797-0441" aria-label="Toll Free 800-797-0441 number">800-797-0441</a> <strong>Toll Free</strong>
                </li>
                <li>
                    <em class="fa fa-fax" aria-hidden="true"></em> <a href="tel:727-669-0673">727-669-0673</a> <strong>Fax</strong>
                </li>
    </ul>
</section>


    <section class="office-cta-section">
        <ul>
                    <li>
<a href="/-/media/hub-international/PDF/Offices/Florida/HUB-FLA-Commercial-Personal-Lines-Carrier-Claims-Contact-List.pdf" >Florida Carriers Contact List                                <i class="fa fa-angle-right" aria-hidden="true"></i>
</a>                    </li>
                    <li>
<a href="https://www.hubinternational.com/contact-us/" >Send Us a Message                                <i class="fa fa-angle-right" aria-hidden="true"></i>
</a>                    </li>
                    <li>
<a href="https://hubinternational.jobs/" target="_blank" >Careers                                <i class="fa fa-external-link" aria-hidden="true"></i>
</a>                    </li>
                    <li>
<a href="https://www.google.com/maps/place/HUB+International/@27.9438896,-82.5252323,15z/data=!4m2!3m1!1s0x0:0x18d13554ccf02260?sa=X&amp;ved=0ahUKEwjjmInQwNbbAhVq0YMKHTDsDxMQ_BIIiwEwCg" >Review This Office                                <i class="fa fa-external-link" aria-hidden="true"></i>
</a>                    </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+W+Kennedy+Boulevard+,+Suite+850,Tampa,+FL+33609&key=AIzaSyAtwoRWUR7lJJG37Chf1jsH4WmXLVSKpQc" title="OfficeMapDetails" ></iframe>
    </div>
</section>

<section class="address-section">
    <div class="address-content">
        <h2>Office Address</h2>
        <div>
            4830 W Kennedy Boulevard<br /> Suite 850                 <br />
                 Tampa, FL 33609
                <br />
                            <a href="https://www.hubinternational.com/offices/?nearby=Tampa, FL">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/Florida/insurance-tampa.webp?h=480&amp;w=480&amp;la=en&amp;hash=78670F0EF5F3CE1C88906E642D1C36C1" class="img-responsive office-column-image" alt="insurance tampa" /><script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ImageObject",
  "author": "Hub International",
  "contentUrl": "https://www.hubinternational.com/-/media/hub-international/Offices/Florida/insurance-tampa.webp",
  "name": "insurance tampa"
}
</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:30 AM - 5:30 PM</td>
                                        <td class="hours-row sr-only">8:30 AM to 5:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Tuesday</td>
                                        <td class="hours-row" aria-hidden="true">8:30 AM - 5:30 PM</td>
                                        <td class="hours-row sr-only">8:30 AM to 5:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Wednesday</td>
                                        <td class="hours-row" aria-hidden="true">8:30 AM - 5:30 PM</td>
                                        <td class="hours-row sr-only">8:30 AM to 5:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Thursday</td>
                                        <td class="hours-row" aria-hidden="true">8:30 AM - 5:30 PM</td>
                                        <td class="hours-row sr-only">8:30 AM to 5:30 PM</td>

                                    </tr>
                                    <tr>
                                        <td class="hours-row">Friday</td>
                                        <td class="hours-row" aria-hidden="true">8:30 AM - 5:30 PM</td>
                                        <td class="hours-row sr-only">8:30 AM to 5: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-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                    <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-3b0c59fe-78e4-4445-8b84-fb77111d22f4" href="#tab1mobile-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                                About
                                            </a>
                                        </div>
                                        <div id="tab1mobile-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" 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>Connelly, Carlisle, Fields and Nichols (CCF&amp;N) joined HUB International on October 1, 2013. Since 1976, the CCF&amp;N family and its team has served the Tampa Bay insurance needs of businesses and consumers across Florida. We take pride in the reputation we have built in the community and with our clients, carriers and associates. Our goal is to give you the risk management solutions you need to run your business more effectively and provide you the highest level of customer service to fulfill your insurance needs and earn your trust. Your continued satisfaction is our success. Work with HUB Florida to identify customized insurance coverage solutions for your business.</p>
<p>&nbsp;</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.athletesandcauses.org/" target="_blank" class="">
                                Athletes+Causes
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://bbbstampabay.org/" target="_blank" class="">
                                Big Brother Big Sisters of Tampa Bay
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://charityworks.org/" target="_blank" class="">
                                Charity Works, Inc.
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://frla.org" target="_blank" class="">
                                Florida Restaurant and Lodging Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="http://www.floridaresurrectionhouse.com/" target="_blank" class="">
                                Florida Resurrection House Inc
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://gasparillamusic.com/about-2/" target="_blank" class="">
                                Gasparilla Music Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.Tampachamber.com" target="_blank" class="">
                                Greater Tampa  Chamber of Commerce
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="http://www.jdrf.org/" target="_blank" class="">
                                JDRF International
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.leadershiptampabay.com" target="_blank" class="">
                                Leadership Tampa Bay
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.facebook.com/Paddle-Against-Cancer-359768260798695" target="_blank" class="">
                                Paddle Against Cancer
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.rutheckerdhall.com" target="_blank" class="">
                                Ruth Eckerd Hall
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.sociusfoundation.org/" target="_blank" class="">
                                Socius Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.tampabaysports.org/landing/index" target="_blank" class="">
                                Tampa Bay Sports Commission
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.tgh.org/foundation" target="_blank" class="">
                                Tampa General Hospital Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://thecentre.org/" target="_blank" class="">
                                The Centre for Women
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://ryannecefoundation.org/" target="_blank" class="">
                                The Ryan Nece Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://valsparchampionship.com/" target="_blank" class="">
                                Valspar Championship
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.warrior2warrior.org" target="_blank" class="">
                                Warrior2Warrior
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.Choosewestshore.com" target="_blank" class="">
                                Westshore Alliance
                                <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-3b0c59fe-78e4-4445-8b84-fb77111d22f4" href="#tab2mobile-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                                Products and Industries
                                            </a>
                                        </div>
                                        <div id="tab2mobile-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" 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="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/professional-liability-insurance/" class="chevron">Professional Liability Insurance </a>
                <p>Professional liability insurance, also known as errors and omissions insurance, provides extra protection not included in general liability policies.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/workers-compensation-insurance/" class="chevron">Workers’ Compensation Insurance</a>
                <p>Workers’ compensation insurance can be complex and costly.  Our specialists can identify coverage options that reduce liability risks to your business. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/business-owners-policy/" class="chevron">Business Owners Policy</a>
                <p>A business owners policy (BOP) is designed to meet the needs of small and mid-size businesses. Learn whether a BOP is the right option for your business.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/commercial-auto/" class="chevron">Commercial Auto Insurance</a>
                <p>Employee safety is key for businesses that rely on vehicles. HUB can help you develop a commercial auto insurance policy customized for your business needs.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/surety-bonds/" class="chevron">Surety Bond Insurance</a>
                <p>Surety bond insurance is a financial guarantee that the covered party will fulfill their contractual obligations. Find the construction surety bond for you!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/marine-insurance/" class="chevron">Marine Insurance</a>
                <p>HUB &#39;s marine insurance specialists are familiar with the ocean and inland marine risk and coverage requirements. Contact a HUB specialist to learn more.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/cyber-insurance/" class="chevron">Cyber Insurance</a>
                <p>Cyber insurance protects your business against cyber security risks and data breaches. Read more about HUB&#39;s cyber insurance here!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/directors-and-officers-insurance/" class="chevron">Directors and Officers Insurance</a>
                <p>If you’re a board member or a key executive, directors and officers insurance can protect your personal assets in the event of a lawsuit. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/employment-practices-liability/" class="chevron">Employment Practices Liability Insurance (EPLI)</a>
                <p>EPL Insurance mitigates risk by protecting your business against fraudulent employment-related claims. Learn about HUB’s EPLI options here.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/risk-services/crisis-management/" class="chevron">Crisis Management &amp; Organizational Resilience</a>
                <p>HUB’s crisis management and emergency planning best practices minimize losses and ensure organizational resilience to quickly get back to normal.  Learn how.</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/employee-health-and-performance/" class="chevron">Employee Health and Performance</a>
                <p>Work with HUB to design an employee health and wellness program. Population health management is key to achieving workforce employee health &amp; performance goals.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/voluntary-benefits/" class="chevron">Voluntary Benefits</a>
                <p>With a voluntary benefits plan, employers can attract and retain talent without allocating additional budget. Learn more about voluntary employee benefits here!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/strategic-benefits-planning/" class="chevron">Strategic Benefits Planning</a>
                <p>With strategic benefits planning, you can create an employee benefits plan that meets your short and long term goals. Collaborate with HUB today!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/healthcare-cost-management/" class="chevron">Healthcare Cost Management</a>
                <p>Employers everywhere are trying to manage increasing healthcare program costs. Learn about healthcare cost management strategies with HUB!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/workforce-technology-solutions/" class="chevron">Workforce Technology</a>
                <p>HUB can help you identify the HR technology that best fits your business goals and implement a workforce technology solution. Read more here!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/risk-services/workforce-absence-management/" class="chevron">Workforce Absence Management</a>
                <p>A happy workforce is a high performing workforce. Learn about how HUB can help your company improve employee productivity and safety.</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/auto-insurance/" class="chevron">Auto Insurance</a>
                <p>We’ll find the right auto insurance coverage for your luxury and collector cars as well as motorcycles, motor homes, and even golf carts. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/homeowners-insurance/" class="chevron">Homeowners Insurance</a>
                <p>Whether you own a high value home, multiple properties and even coastal properties, HUB can secure customized homeowners insurance coverage to meet your unique needs. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/condo-insurance/" class="chevron">Co-op and Condo Insurance </a>
                <p>If you prefer city life, HUB offers tailored condo insurance solutions to help you avoid unexpected losses or gaps in coverage.   </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/high-net-worth-insurance-services/" class="chevron">High Net Worth Insurance Services</a>
                <p>The HUB PCA group offers high net worth insurance solutions. Learn more about this offering here.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/personal-umbrella-insurance/" class="chevron">Personal Umbrella Insurance</a>
                <p>One lawsuit can change everything. Personal umbrella policies protect the financial future you’ve worked a lifetime to build.  </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/boat-insurance/" class="chevron">Boat, Yachts &amp; Personal Watercraft Insurance</a>
                <p>Whether you own a sailboat, luxury yacht or something in between, HUB&#39;s experienced brokers can help secure customized boat insurance to accommodate your unique needs. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/flood-insurance/" class="chevron">Flood Insurance</a>
                <p>Flood damage is not covered by a traditional homeowner’s policy and is the most common natural disaster that threatens your home. Make sure you’re protected!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/fine-arts-insurance/" class="chevron">Fine Arts Insurance</a>
                <p>HUB offers a variety of fine arts insurance solutions. Protect your fine art, collectibles, and antiquities with a fine arts insurance policy from HUB.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/jewelry-insurance/" class="chevron">Jewelry Insurance</a>
                <p>Jewelry insurance can fill the gaps in your homeowner’s insurance by protecting your cherished possessions from loss, theft and damage.  </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/travel-insurance/" class="chevron">Travel Insurance</a>
                <p>Life is unpredictable. Travel with confidence, security, and peace of mind when you have the right travel insurance to protect you and your family.  </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/classic-car-insurance/" class="chevron">Classic Car Insurance </a>
                <p>HUB International classic car insurance protects your antique or classic vehicle with tailored insurance solutions. Get a quote today!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/individual-health-insurance/" class="chevron">Individual Health Insurance</a>
                <p>Whether you&#39;re self-employed or in need of short-term coverage, individual health insurance will ensure that you and your family members are protected.</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/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/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/entertainment-insurance/" class="chevron">Entertainment Insurance</a>
                <p>HUB provides entertainment insurance solutions for a variety of entertainment companies. Contact a HUB Entertainment Insurance expert today.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/financial-institutions-insurance-brokers/" class="chevron">Financial Institutions and Bank Insurance: Tampa, FL</a>
                <p>Secure stability for your financial institution. Learn how HUB&#39;s financial institutions and bank insurance protects Tampa organizations.</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/hospitality-insurance/" class="chevron">Hospitality Insurance</a>
                <p>HUB provides a wide range of hospitality insurance options from hotel to venue insurance. Read more and contact a broker here! </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/nonprofit-insurance-brokers/" class="chevron">Nonprofit Insurance Tampa</a>
                <p>Nonprofit insurance should support your work and help drive your mission forward. Contact your Tampa HUB broker today to find a policy that fits your needs.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/private-client-insurance-brokers/" class="chevron">Private Client Insurance in Tampa FL</a>
                <p>Do you need private client insurance in Tampa FL? Find out why HUB International is the insurance provider of choice for businesses in Tampa.</p>
            </li>
            <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/offices/us/florida/tampa/religious-institutions-insurance-brokers/" class="chevron">Religious Institutions and Church Insurance: Tampa, FL</a>
                <p>Religious institutions and church insurance for Tampa ministries protects from the financial fallout of liability claims. Find out more about coverage options.</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>
            </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-cfb7e573-e3bb-4531-b47e-3c81c9219c5e-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" aria-controls="panel-cfb7e573-e3bb-4531-b47e-3c81c9219c5e-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" role="tab" data-toggle="tab" class="">Business</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-7d15be4e-0069-410b-a0f4-289425b23e64-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" aria-controls="panel-7d15be4e-0069-410b-a0f4-289425b23e64-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" role="tab" data-toggle="tab" class="">Employee Benefits</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-3b9186e7-ab4a-4771-8d9d-197cd92c988c-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" aria-controls="panel-3b9186e7-ab4a-4771-8d9d-197cd92c988c-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" role="tab" data-toggle="tab" class="">Personal</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-08fcd9aa-1375-4566-8dd8-c48c48cbea67-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" aria-controls="panel-08fcd9aa-1375-4566-8dd8-c48c48cbea67-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5" 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-cfb7e573-e3bb-4531-b47e-3c81c9219c5e-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5">
                                <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/professional-liability-insurance/" class="chevron">Professional Liability Insurance </a>
                <p>Professional liability insurance, also known as errors and omissions insurance, provides extra protection not included in general liability policies.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/workers-compensation-insurance/" class="chevron">Workers’ Compensation Insurance</a>
                <p>Workers’ compensation insurance can be complex and costly.  Our specialists can identify coverage options that reduce liability risks to your business. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/business-owners-policy/" class="chevron">Business Owners Policy</a>
                <p>A business owners policy (BOP) is designed to meet the needs of small and mid-size businesses. Learn whether a BOP is the right option for your business.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/commercial-auto/" class="chevron">Commercial Auto Insurance</a>
                <p>Employee safety is key for businesses that rely on vehicles. HUB can help you develop a commercial auto insurance policy customized for your business needs.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/surety-bonds/" class="chevron">Surety Bond Insurance</a>
                <p>Surety bond insurance is a financial guarantee that the covered party will fulfill their contractual obligations. Find the construction surety bond for you!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/marine-insurance/" class="chevron">Marine Insurance</a>
                <p>HUB &#39;s marine insurance specialists are familiar with the ocean and inland marine risk and coverage requirements. Contact a HUB specialist to learn more.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/cyber-insurance/" class="chevron">Cyber Insurance</a>
                <p>Cyber insurance protects your business against cyber security risks and data breaches. Read more about HUB&#39;s cyber insurance here!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/directors-and-officers-insurance/" class="chevron">Directors and Officers Insurance</a>
                <p>If you’re a board member or a key executive, directors and officers insurance can protect your personal assets in the event of a lawsuit. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/employment-practices-liability/" class="chevron">Employment Practices Liability Insurance (EPLI)</a>
                <p>EPL Insurance mitigates risk by protecting your business against fraudulent employment-related claims. Learn about HUB’s EPLI options here.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/risk-services/crisis-management/" class="chevron">Crisis Management &amp; Organizational Resilience</a>
                <p>HUB’s crisis management and emergency planning best practices minimize losses and ensure organizational resilience to quickly get back to normal.  Learn how.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-7d15be4e-0069-410b-a0f4-289425b23e64-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5">
                                <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/employee-health-and-performance/" class="chevron">Employee Health and Performance</a>
                <p>Work with HUB to design an employee health and wellness program. Population health management is key to achieving workforce employee health &amp; performance goals.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/voluntary-benefits/" class="chevron">Voluntary Benefits</a>
                <p>With a voluntary benefits plan, employers can attract and retain talent without allocating additional budget. Learn more about voluntary employee benefits here!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/strategic-benefits-planning/" class="chevron">Strategic Benefits Planning</a>
                <p>With strategic benefits planning, you can create an employee benefits plan that meets your short and long term goals. Collaborate with HUB today!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/healthcare-cost-management/" class="chevron">Healthcare Cost Management</a>
                <p>Employers everywhere are trying to manage increasing healthcare program costs. Learn about healthcare cost management strategies with HUB!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/workforce-technology-solutions/" class="chevron">Workforce Technology</a>
                <p>HUB can help you identify the HR technology that best fits your business goals and implement a workforce technology solution. Read more here!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/risk-services/workforce-absence-management/" class="chevron">Workforce Absence Management</a>
                <p>A happy workforce is a high performing workforce. Learn about how HUB can help your company improve employee productivity and safety.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-3b9186e7-ab4a-4771-8d9d-197cd92c988c-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5">
                                                        
<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/auto-insurance/" class="chevron">Auto Insurance</a>
                <p>We’ll find the right auto insurance coverage for your luxury and collector cars as well as motorcycles, motor homes, and even golf carts. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/homeowners-insurance/" class="chevron">Homeowners Insurance</a>
                <p>Whether you own a high value home, multiple properties and even coastal properties, HUB can secure customized homeowners insurance coverage to meet your unique needs. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/condo-insurance/" class="chevron">Co-op and Condo Insurance </a>
                <p>If you prefer city life, HUB offers tailored condo insurance solutions to help you avoid unexpected losses or gaps in coverage.   </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/high-net-worth-insurance-services/" class="chevron">High Net Worth Insurance Services</a>
                <p>The HUB PCA group offers high net worth insurance solutions. Learn more about this offering here.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/personal-umbrella-insurance/" class="chevron">Personal Umbrella Insurance</a>
                <p>One lawsuit can change everything. Personal umbrella policies protect the financial future you’ve worked a lifetime to build.  </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/boat-insurance/" class="chevron">Boat, Yachts &amp; Personal Watercraft Insurance</a>
                <p>Whether you own a sailboat, luxury yacht or something in between, HUB&#39;s experienced brokers can help secure customized boat insurance to accommodate your unique needs. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/flood-insurance/" class="chevron">Flood Insurance</a>
                <p>Flood damage is not covered by a traditional homeowner’s policy and is the most common natural disaster that threatens your home. Make sure you’re protected!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/fine-arts-insurance/" class="chevron">Fine Arts Insurance</a>
                <p>HUB offers a variety of fine arts insurance solutions. Protect your fine art, collectibles, and antiquities with a fine arts insurance policy from HUB.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/jewelry-insurance/" class="chevron">Jewelry Insurance</a>
                <p>Jewelry insurance can fill the gaps in your homeowner’s insurance by protecting your cherished possessions from loss, theft and damage.  </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/travel-insurance/" class="chevron">Travel Insurance</a>
                <p>Life is unpredictable. Travel with confidence, security, and peace of mind when you have the right travel insurance to protect you and your family.  </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/classic-car-insurance/" class="chevron">Classic Car Insurance </a>
                <p>HUB International classic car insurance protects your antique or classic vehicle with tailored insurance solutions. Get a quote today!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/individual-health-insurance/" class="chevron">Individual Health Insurance</a>
                <p>Whether you&#39;re self-employed or in need of short-term coverage, individual health insurance will ensure that you and your family members are protected.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-08fcd9aa-1375-4566-8dd8-c48c48cbea67-products-and-industries-7abc343c-2ca9-4df6-951d-a5c792afbaa5">
                                <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/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/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/entertainment-insurance/" class="chevron">Entertainment Insurance</a>
                <p>HUB provides entertainment insurance solutions for a variety of entertainment companies. Contact a HUB Entertainment Insurance expert today.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/financial-institutions-insurance-brokers/" class="chevron">Financial Institutions and Bank Insurance: Tampa, FL</a>
                <p>Secure stability for your financial institution. Learn how HUB&#39;s financial institutions and bank insurance protects Tampa organizations.</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/hospitality-insurance/" class="chevron">Hospitality Insurance</a>
                <p>HUB provides a wide range of hospitality insurance options from hotel to venue insurance. Read more and contact a broker here! </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/nonprofit-insurance-brokers/" class="chevron">Nonprofit Insurance Tampa</a>
                <p>Nonprofit insurance should support your work and help drive your mission forward. Contact your Tampa HUB broker today to find a policy that fits your needs.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/private-client-insurance-brokers/" class="chevron">Private Client Insurance in Tampa FL</a>
                <p>Do you need private client insurance in Tampa FL? Find out why HUB International is the insurance provider of choice for businesses in Tampa.</p>
            </li>
            <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/offices/us/florida/tampa/religious-institutions-insurance-brokers/" class="chevron">Religious Institutions and Church Insurance: Tampa, FL</a>
                <p>Religious institutions and church insurance for Tampa ministries protects from the financial fallout of liability claims. Find out more about coverage options.</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>
            </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-3b0c59fe-78e4-4445-8b84-fb77111d22f4" href="#tab3mobile-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                                HUB GIves
                                            </a>
                                        </div>
                                        <div id="tab3mobile-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" 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 — 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 Tampa, we’ve chosen projects that impact children, elders, and women in our community. </p>
<p> </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://childrenscancercenter.org/" target="_blank" class="">
                                Children&#39;s Cancer Center
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://eckerd.org/family-children-services/raising-hope" target="_blank" class="">
                                Eckerd Connects Raising Hope
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.habitat.org" target="_blank" class="">
                                Habitat for Humanity
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://humanesocietytampa.org/" target="_blank" class="">
                                Humane Society
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.metromin.org/" target="_blank" class="">
                                Metropolitan Ministries
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://rmhctampabay.org" target="_blank" class="">
                                Ronald McDonald House of Tampa Bay
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="http://www.wrctampa.org" target="_blank" class="">
                                Women&#39;s Resource Center
                                <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-3b0c59fe-78e4-4445-8b84-fb77111d22f4" data-content-type="content:selector" data-text="about" data-component="section tab"
                                                       aria-controls="tab1-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" role="tab" data-toggle="tab" class="row">About</a>
                                                </li>
                                                                                            <li role="presentation" class="col-md-4">
                                                    <a href="#tab2-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" data-content-type="content:selector" data-text="products and industries" data-component="section tab"
                                                       aria-controls="tab2-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" role="tab" data-toggle="tab" class="row">Products and Industries</a>
                                                </li>
                                                                                            <li role="presentation" class="col-md-4">
                                                    <a href="#tab3-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" data-content-type="content:selector" data-text="hub gives" data-component="section tab"
                                                       aria-controls="tab3-tabber-3b0c59fe-78e4-4445-8b84-fb77111d22f4" 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-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                                <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>Connelly, Carlisle, Fields and Nichols (CCF&amp;N) joined HUB International on October 1, 2013. Since 1976, the CCF&amp;N family and its team has served the Tampa Bay insurance needs of businesses and consumers across Florida. We take pride in the reputation we have built in the community and with our clients, carriers and associates. Our goal is to give you the risk management solutions you need to run your business more effectively and provide you the highest level of customer service to fulfill your insurance needs and earn your trust. Your continued satisfaction is our success. Work with HUB Florida to identify customized insurance coverage solutions for your business.</p>
<p>&nbsp;</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.athletesandcauses.org/" target="_blank" class="">
                                Athletes+Causes
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://bbbstampabay.org/" target="_blank" class="">
                                Big Brother Big Sisters of Tampa Bay
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://charityworks.org/" target="_blank" class="">
                                Charity Works, Inc.
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://frla.org" target="_blank" class="">
                                Florida Restaurant and Lodging Association
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="http://www.floridaresurrectionhouse.com/" target="_blank" class="">
                                Florida Resurrection House Inc
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://gasparillamusic.com/about-2/" target="_blank" class="">
                                Gasparilla Music Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.Tampachamber.com" target="_blank" class="">
                                Greater Tampa  Chamber of Commerce
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="http://www.jdrf.org/" target="_blank" class="">
                                JDRF International
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.leadershiptampabay.com" target="_blank" class="">
                                Leadership Tampa Bay
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.facebook.com/Paddle-Against-Cancer-359768260798695" target="_blank" class="">
                                Paddle Against Cancer
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.rutheckerdhall.com" target="_blank" class="">
                                Ruth Eckerd Hall
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.sociusfoundation.org/" target="_blank" class="">
                                Socius Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.tampabaysports.org/landing/index" target="_blank" class="">
                                Tampa Bay Sports Commission
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.tgh.org/foundation" target="_blank" class="">
                                Tampa General Hospital Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://thecentre.org/" target="_blank" class="">
                                The Centre for Women
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://ryannecefoundation.org/" target="_blank" class="">
                                The Ryan Nece Foundation
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://valsparchampionship.com/" target="_blank" class="">
                                Valspar Championship
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.warrior2warrior.org" target="_blank" class="">
                                Warrior2Warrior
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.Choosewestshore.com" target="_blank" class="">
                                Westshore Alliance
                                <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-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                                <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="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/professional-liability-insurance/" class="chevron">Professional Liability Insurance </a>
                <p>Professional liability insurance, also known as errors and omissions insurance, provides extra protection not included in general liability policies.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/workers-compensation-insurance/" class="chevron">Workers’ Compensation Insurance</a>
                <p>Workers’ compensation insurance can be complex and costly.  Our specialists can identify coverage options that reduce liability risks to your business. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/business-owners-policy/" class="chevron">Business Owners Policy</a>
                <p>A business owners policy (BOP) is designed to meet the needs of small and mid-size businesses. Learn whether a BOP is the right option for your business.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/commercial-auto/" class="chevron">Commercial Auto Insurance</a>
                <p>Employee safety is key for businesses that rely on vehicles. HUB can help you develop a commercial auto insurance policy customized for your business needs.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/surety-bonds/" class="chevron">Surety Bond Insurance</a>
                <p>Surety bond insurance is a financial guarantee that the covered party will fulfill their contractual obligations. Find the construction surety bond for you!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/marine-insurance/" class="chevron">Marine Insurance</a>
                <p>HUB &#39;s marine insurance specialists are familiar with the ocean and inland marine risk and coverage requirements. Contact a HUB specialist to learn more.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/cyber-insurance/" class="chevron">Cyber Insurance</a>
                <p>Cyber insurance protects your business against cyber security risks and data breaches. Read more about HUB&#39;s cyber insurance here!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/directors-and-officers-insurance/" class="chevron">Directors and Officers Insurance</a>
                <p>If you’re a board member or a key executive, directors and officers insurance can protect your personal assets in the event of a lawsuit. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/business-insurance/employment-practices-liability/" class="chevron">Employment Practices Liability Insurance (EPLI)</a>
                <p>EPL Insurance mitigates risk by protecting your business against fraudulent employment-related claims. Learn about HUB’s EPLI options here.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/risk-services/crisis-management/" class="chevron">Crisis Management &amp; Organizational Resilience</a>
                <p>HUB’s crisis management and emergency planning best practices minimize losses and ensure organizational resilience to quickly get back to normal.  Learn how.</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/employee-health-and-performance/" class="chevron">Employee Health and Performance</a>
                <p>Work with HUB to design an employee health and wellness program. Population health management is key to achieving workforce employee health &amp; performance goals.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/voluntary-benefits/" class="chevron">Voluntary Benefits</a>
                <p>With a voluntary benefits plan, employers can attract and retain talent without allocating additional budget. Learn more about voluntary employee benefits here!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/strategic-benefits-planning/" class="chevron">Strategic Benefits Planning</a>
                <p>With strategic benefits planning, you can create an employee benefits plan that meets your short and long term goals. Collaborate with HUB today!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/healthcare-cost-management/" class="chevron">Healthcare Cost Management</a>
                <p>Employers everywhere are trying to manage increasing healthcare program costs. Learn about healthcare cost management strategies with HUB!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/employee-benefits/workforce-technology-solutions/" class="chevron">Workforce Technology</a>
                <p>HUB can help you identify the HR technology that best fits your business goals and implement a workforce technology solution. Read more here!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/risk-services/workforce-absence-management/" class="chevron">Workforce Absence Management</a>
                <p>A happy workforce is a high performing workforce. Learn about how HUB can help your company improve employee productivity and safety.</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/auto-insurance/" class="chevron">Auto Insurance</a>
                <p>We’ll find the right auto insurance coverage for your luxury and collector cars as well as motorcycles, motor homes, and even golf carts. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/homeowners-insurance/" class="chevron">Homeowners Insurance</a>
                <p>Whether you own a high value home, multiple properties and even coastal properties, HUB can secure customized homeowners insurance coverage to meet your unique needs. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/condo-insurance/" class="chevron">Co-op and Condo Insurance </a>
                <p>If you prefer city life, HUB offers tailored condo insurance solutions to help you avoid unexpected losses or gaps in coverage.   </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/high-net-worth-insurance-services/" class="chevron">High Net Worth Insurance Services</a>
                <p>The HUB PCA group offers high net worth insurance solutions. Learn more about this offering here.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/personal-umbrella-insurance/" class="chevron">Personal Umbrella Insurance</a>
                <p>One lawsuit can change everything. Personal umbrella policies protect the financial future you’ve worked a lifetime to build.  </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/boat-insurance/" class="chevron">Boat, Yachts &amp; Personal Watercraft Insurance</a>
                <p>Whether you own a sailboat, luxury yacht or something in between, HUB&#39;s experienced brokers can help secure customized boat insurance to accommodate your unique needs. </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/flood-insurance/" class="chevron">Flood Insurance</a>
                <p>Flood damage is not covered by a traditional homeowner’s policy and is the most common natural disaster that threatens your home. Make sure you’re protected!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/fine-arts-insurance/" class="chevron">Fine Arts Insurance</a>
                <p>HUB offers a variety of fine arts insurance solutions. Protect your fine art, collectibles, and antiquities with a fine arts insurance policy from HUB.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/jewelry-insurance/" class="chevron">Jewelry Insurance</a>
                <p>Jewelry insurance can fill the gaps in your homeowner’s insurance by protecting your cherished possessions from loss, theft and damage.  </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/travel-insurance/" class="chevron">Travel Insurance</a>
                <p>Life is unpredictable. Travel with confidence, security, and peace of mind when you have the right travel insurance to protect you and your family.  </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/classic-car-insurance/" class="chevron">Classic Car Insurance </a>
                <p>HUB International classic car insurance protects your antique or classic vehicle with tailored insurance solutions. Get a quote today!</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/products/personal-insurance/individual-health-insurance/" class="chevron">Individual Health Insurance</a>
                <p>Whether you&#39;re self-employed or in need of short-term coverage, individual health insurance will ensure that you and your family members are protected.</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/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/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/entertainment-insurance/" class="chevron">Entertainment Insurance</a>
                <p>HUB provides entertainment insurance solutions for a variety of entertainment companies. Contact a HUB Entertainment Insurance expert today.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/financial-institutions-insurance-brokers/" class="chevron">Financial Institutions and Bank Insurance: Tampa, FL</a>
                <p>Secure stability for your financial institution. Learn how HUB&#39;s financial institutions and bank insurance protects Tampa organizations.</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/hospitality-insurance/" class="chevron">Hospitality Insurance</a>
                <p>HUB provides a wide range of hospitality insurance options from hotel to venue insurance. Read more and contact a broker here! </p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/nonprofit-insurance-brokers/" class="chevron">Nonprofit Insurance Tampa</a>
                <p>Nonprofit insurance should support your work and help drive your mission forward. Contact your Tampa HUB broker today to find a policy that fits your needs.</p>
            </li>
            <li>
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/private-client-insurance-brokers/" class="chevron">Private Client Insurance in Tampa FL</a>
                <p>Do you need private client insurance in Tampa FL? Find out why HUB International is the insurance provider of choice for businesses in Tampa.</p>
            </li>
            <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/offices/us/florida/tampa/religious-institutions-insurance-brokers/" class="chevron">Religious Institutions and Church Insurance: Tampa, FL</a>
                <p>Religious institutions and church insurance for Tampa ministries protects from the financial fallout of liability claims. Find out more about coverage options.</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>
            </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-cfb7e573-e3bb-4531-b47e-3c81c9219c5e-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" aria-controls="panel-cfb7e573-e3bb-4531-b47e-3c81c9219c5e-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" role="tab" data-toggle="tab" class="">Business</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-7d15be4e-0069-410b-a0f4-289425b23e64-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" aria-controls="panel-7d15be4e-0069-410b-a0f4-289425b23e64-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" role="tab" data-toggle="tab" class="">Employee Benefits</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-3b9186e7-ab4a-4771-8d9d-197cd92c988c-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" aria-controls="panel-3b9186e7-ab4a-4771-8d9d-197cd92c988c-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" role="tab" data-toggle="tab" class="">Personal</a>
                                </li>
                                <li role="presentation" class=" col-md-4">
                                    <a href="#panel-08fcd9aa-1375-4566-8dd8-c48c48cbea67-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" aria-controls="panel-08fcd9aa-1375-4566-8dd8-c48c48cbea67-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b" 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-cfb7e573-e3bb-4531-b47e-3c81c9219c5e-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b">
                                <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/professional-liability-insurance/" class="chevron">Professional Liability Insurance </a>
                <p>Professional liability insurance, also known as errors and omissions insurance, provides extra protection not included in general liability policies.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/workers-compensation-insurance/" class="chevron">Workers’ Compensation Insurance</a>
                <p>Workers’ compensation insurance can be complex and costly.  Our specialists can identify coverage options that reduce liability risks to your business. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/business-owners-policy/" class="chevron">Business Owners Policy</a>
                <p>A business owners policy (BOP) is designed to meet the needs of small and mid-size businesses. Learn whether a BOP is the right option for your business.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/commercial-auto/" class="chevron">Commercial Auto Insurance</a>
                <p>Employee safety is key for businesses that rely on vehicles. HUB can help you develop a commercial auto insurance policy customized for your business needs.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/surety-bonds/" class="chevron">Surety Bond Insurance</a>
                <p>Surety bond insurance is a financial guarantee that the covered party will fulfill their contractual obligations. Find the construction surety bond for you!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/marine-insurance/" class="chevron">Marine Insurance</a>
                <p>HUB &#39;s marine insurance specialists are familiar with the ocean and inland marine risk and coverage requirements. Contact a HUB specialist to learn more.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/cyber-insurance/" class="chevron">Cyber Insurance</a>
                <p>Cyber insurance protects your business against cyber security risks and data breaches. Read more about HUB&#39;s cyber insurance here!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/directors-and-officers-insurance/" class="chevron">Directors and Officers Insurance</a>
                <p>If you’re a board member or a key executive, directors and officers insurance can protect your personal assets in the event of a lawsuit. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/business-insurance/employment-practices-liability/" class="chevron">Employment Practices Liability Insurance (EPLI)</a>
                <p>EPL Insurance mitigates risk by protecting your business against fraudulent employment-related claims. Learn about HUB’s EPLI options here.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/risk-services/crisis-management/" class="chevron">Crisis Management &amp; Organizational Resilience</a>
                <p>HUB’s crisis management and emergency planning best practices minimize losses and ensure organizational resilience to quickly get back to normal.  Learn how.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-7d15be4e-0069-410b-a0f4-289425b23e64-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b">
                                <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/employee-health-and-performance/" class="chevron">Employee Health and Performance</a>
                <p>Work with HUB to design an employee health and wellness program. Population health management is key to achieving workforce employee health &amp; performance goals.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/voluntary-benefits/" class="chevron">Voluntary Benefits</a>
                <p>With a voluntary benefits plan, employers can attract and retain talent without allocating additional budget. Learn more about voluntary employee benefits here!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/strategic-benefits-planning/" class="chevron">Strategic Benefits Planning</a>
                <p>With strategic benefits planning, you can create an employee benefits plan that meets your short and long term goals. Collaborate with HUB today!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/healthcare-cost-management/" class="chevron">Healthcare Cost Management</a>
                <p>Employers everywhere are trying to manage increasing healthcare program costs. Learn about healthcare cost management strategies with HUB!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/employee-benefits/workforce-technology-solutions/" class="chevron">Workforce Technology</a>
                <p>HUB can help you identify the HR technology that best fits your business goals and implement a workforce technology solution. Read more here!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/risk-services/workforce-absence-management/" class="chevron">Workforce Absence Management</a>
                <p>A happy workforce is a high performing workforce. Learn about how HUB can help your company improve employee productivity and safety.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-3b9186e7-ab4a-4771-8d9d-197cd92c988c-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b">
                                                        
<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/auto-insurance/" class="chevron">Auto Insurance</a>
                <p>We’ll find the right auto insurance coverage for your luxury and collector cars as well as motorcycles, motor homes, and even golf carts. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/homeowners-insurance/" class="chevron">Homeowners Insurance</a>
                <p>Whether you own a high value home, multiple properties and even coastal properties, HUB can secure customized homeowners insurance coverage to meet your unique needs. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/condo-insurance/" class="chevron">Co-op and Condo Insurance </a>
                <p>If you prefer city life, HUB offers tailored condo insurance solutions to help you avoid unexpected losses or gaps in coverage.   </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/high-net-worth-insurance-services/" class="chevron">High Net Worth Insurance Services</a>
                <p>The HUB PCA group offers high net worth insurance solutions. Learn more about this offering here.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/personal-umbrella-insurance/" class="chevron">Personal Umbrella Insurance</a>
                <p>One lawsuit can change everything. Personal umbrella policies protect the financial future you’ve worked a lifetime to build.  </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/boat-insurance/" class="chevron">Boat, Yachts &amp; Personal Watercraft Insurance</a>
                <p>Whether you own a sailboat, luxury yacht or something in between, HUB&#39;s experienced brokers can help secure customized boat insurance to accommodate your unique needs. </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/flood-insurance/" class="chevron">Flood Insurance</a>
                <p>Flood damage is not covered by a traditional homeowner’s policy and is the most common natural disaster that threatens your home. Make sure you’re protected!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/fine-arts-insurance/" class="chevron">Fine Arts Insurance</a>
                <p>HUB offers a variety of fine arts insurance solutions. Protect your fine art, collectibles, and antiquities with a fine arts insurance policy from HUB.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/jewelry-insurance/" class="chevron">Jewelry Insurance</a>
                <p>Jewelry insurance can fill the gaps in your homeowner’s insurance by protecting your cherished possessions from loss, theft and damage.  </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/travel-insurance/" class="chevron">Travel Insurance</a>
                <p>Life is unpredictable. Travel with confidence, security, and peace of mind when you have the right travel insurance to protect you and your family.  </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/classic-car-insurance/" class="chevron">Classic Car Insurance </a>
                <p>HUB International classic car insurance protects your antique or classic vehicle with tailored insurance solutions. Get a quote today!</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/products/personal-insurance/individual-health-insurance/" class="chevron">Individual Health Insurance</a>
                <p>Whether you&#39;re self-employed or in need of short-term coverage, individual health insurance will ensure that you and your family members are protected.</p>
            </li>
            </ul>
</div>
                        </div>
                        <div role="tabpanel" class="tab-pane " id="panel-08fcd9aa-1375-4566-8dd8-c48c48cbea67-products-and-industries-d18ce776-ce7e-49c7-be79-6d9afbcf221b">
                                <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/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/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/entertainment-insurance/" class="chevron">Entertainment Insurance</a>
                <p>HUB provides entertainment insurance solutions for a variety of entertainment companies. Contact a HUB Entertainment Insurance expert today.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/financial-institutions-insurance-brokers/" class="chevron">Financial Institutions and Bank Insurance: Tampa, FL</a>
                <p>Secure stability for your financial institution. Learn how HUB&#39;s financial institutions and bank insurance protects Tampa organizations.</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/hospitality-insurance/" class="chevron">Hospitality Insurance</a>
                <p>HUB provides a wide range of hospitality insurance options from hotel to venue insurance. Read more and contact a broker here! </p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/nonprofit-insurance-brokers/" class="chevron">Nonprofit Insurance Tampa</a>
                <p>Nonprofit insurance should support your work and help drive your mission forward. Contact your Tampa HUB broker today to find a policy that fits your needs.</p>
            </li>
            <li class="flex-card flex-column col-md-6">
                <a href="https://www.hubinternational.com/offices/us/florida/tampa/private-client-insurance-brokers/" class="chevron">Private Client Insurance in Tampa FL</a>
                <p>Do you need private client insurance in Tampa FL? Find out why HUB International is the insurance provider of choice for businesses in Tampa.</p>
            </li>
            <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/offices/us/florida/tampa/religious-institutions-insurance-brokers/" class="chevron">Religious Institutions and Church Insurance: Tampa, FL</a>
                <p>Religious institutions and church insurance for Tampa ministries protects from the financial fallout of liability claims. Find out more about coverage options.</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>
            </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-3b0c59fe-78e4-4445-8b84-fb77111d22f4">
                                                <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://childrenscancercenter.org/" target="_blank" class="">
                                Children&#39;s Cancer Center
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://eckerd.org/family-children-services/raising-hope" target="_blank" class="">
                                Eckerd Connects Raising Hope
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.habitat.org" target="_blank" class="">
                                Habitat for Humanity
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://humanesocietytampa.org/" target="_blank" class="">
                                Humane Society
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://www.metromin.org/" target="_blank" class="">
                                Metropolitan Ministries
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="https://rmhctampabay.org" target="_blank" class="">
                                Ronald McDonald House of Tampa Bay
                                <i class="fa fa-external-link" aria-hidden="true"></i>
                            </a>
                    </li>
                        <li>
                            <a href="http://www.wrctampa.org" target="_blank" class="">
                                Women&#39;s Resource Center
                                <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 — 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 Tampa, we’ve chosen projects that impact children, elders, and women in our community. </p>
<p> </p>
    </div>

                                                    </div>
                                                </section>
                                            </div>

                                    </div>

                                </div>
                            </div>
                            <!-- END DESKTOP/TABLET ONLY -->

                        </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 Tampa</h3>
                    </div>
                </div>
            <div class="row">
                <div class="col-md-12">
                    <div id="reviewWidget" data-lk="4371776a600"></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>




<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">Resources</h2>
                                                <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 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>
                </div>
            </div>
        </div>
    </div>
</section>



            
        </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 = wn1mdwk0007XY -->
</body>

</html>
