{"id":31109,"date":"2025-07-28T09:59:49","date_gmt":"2025-07-28T09:59:49","guid":{"rendered":"https:\/\/digitalnomadshq.com.au\/?page_id=31109"},"modified":"2026-03-26T10:24:14","modified_gmt":"2026-03-26T00:24:14","slug":"our-work","status":"publish","type":"page","link":"https:\/\/digitalnomadshq.com.au\/our-work\/","title":{"rendered":"Our Work"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"31109\" class=\"elementor elementor-31109\" data-elementor-post-type=\"page\">\n\t\t\t\t<section class=\"elementor-element elementor-element-804e756 e-flex e-con-boxed e-con e-parent\" data-id=\"804e756\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-21edae2 e-con-full e-flex e-con e-child\" data-id=\"21edae2\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-73c71fa e-con-full e-flex e-con e-child\" data-id=\"73c71fa\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1fce4cb elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1fce4cb\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Our Work<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7d48032 elementor-widget elementor-widget-html\" data-id=\"7d48032\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n(function($){\n  \/\/ ---------- utilities ----------\n  function slugify(str){\n    return String(str).toLowerCase()\n      .replace(\/&\/g,'and')\n      .replace(\/[^a-z0-9\\s-]\/g,'')\n      .trim()\n      .replace(\/\\s+\/g,'-');\n  }\n  function normHash(raw){\n    if(!raw) return '';\n    var h = raw.replace(\/^#\/, '').trim().toLowerCase();\n    if(h.startsWith('tab-')) h = h.slice(4); \/\/ allow #tab-pricing\n    return h;\n  }\n\n  \/\/ ---------- activation ----------\n  function activateTitle($title){\n    if(!$title || !$title.length) return false;\n\n    var $tabsWrap = $title.closest('.elementor-tabs');\n    if(!$tabsWrap.length) return false;\n\n    var $allTitles = $tabsWrap.find('.elementor-tab-title');\n    var $allPanels = $tabsWrap.find('.elementor-tab-content');\n\n    \/\/ Which panel does this title control?\n    var panelId = $title.attr('aria-controls'); \/\/ e.g. elementor-tab-content-1234\n    var $panel  = panelId ? $('#'+panelId) : $();\n\n    \/\/ Clear current\n    $allTitles.removeClass('elementor-active')\n      .attr('aria-selected','false')\n      .attr('tabindex','-1');\n    $allPanels.removeClass('elementor-active')\n      .attr('aria-hidden','true')\n      .hide();\n\n    \/\/ Set new active\n    $title.addClass('elementor-active')\n      .attr('aria-selected','true')\n      .attr('tabindex','0');\n    if($panel.length){\n      $panel.addClass('elementor-active')\n        .attr('aria-hidden','false')\n        .show();\n    }\n\n    return true;\n  }\n\n  function openByHashOnce(rawHash){\n    var hash = normHash(rawHash);\n    if(!hash) return false;\n\n    var activated = false;\n\n    $('.elementor-tabs').each(function(){\n      if(activated) return; \/\/ stop after first match found on page\n      var $wrap   = $(this);\n      var $titles = $wrap.find('.elementor-tab-title');\n\n      \/\/ 1) data-hash explicit\n      var $byData = $titles.filter(function(){\n        return (($(this).attr('data-hash')||'').toLowerCase() === hash);\n      });\n      if($byData.length && activateTitle($byData.first())) { activated = true; return; }\n\n      \/\/ 2) match slug of visible title text\n      var $bySlug = $titles.filter(function(){ return slugify($(this).text()) === hash; });\n      if($bySlug.length && activateTitle($bySlug.first())) { activated = true; return; }\n\n      \/\/ 3) numeric index (#tab-2 => second tab)\n      if(\/^\\d+$\/.test(hash)){\n        var idx = parseInt(hash, 10); \/\/ 1-based\n        var $byIndex = $titles.filter('[data-tab=\"'+idx+'\"]');\n        if($byIndex.length && activateTitle($byIndex.first())) { activated = true; return; }\n      }\n    });\n\n    return activated;\n  }\n\n  \/\/ Keep hash in sync when user clicks between tabs\n  function bindClickSync(){\n    $(document).on('click', '.elementor-tabs .elementor-tab-title', function(e){\n      \/\/ Prevent nested anchors from causing page jump\n      if(e.target.tagName.toLowerCase() === 'a' && e.target.getAttribute('href') && e.target.getAttribute('href').startsWith('#')){\n        e.preventDefault();\n      }\n      var $t = $(this);\n      var custom = ($t.attr('data-hash')||'').trim();\n      var slug   = custom ? custom : slugify($t.text());\n      history.replaceState(null, '', '#tab-' + slug);\n      \/\/ Hard-activate to be safe\n      activateTitle($t);\n    });\n  }\n\n  \/\/ Wait until Elementor (and the tabs) are present before trying to open\n  function readyAndObserve(){\n    \/\/ Initial try (after a short delay for Elementor init)\n    setTimeout(function(){\n      openByHashOnce(window.location.hash);\n    }, 120);\n\n    \/\/ If tabs are injected later (AJAX \/ lazy), observe and retry once\n    var tried = false;\n    var obs = new MutationObserver(function(){\n      if(!tried){\n        tried = openByHashOnce(window.location.hash) || tried;\n      }\n    });\n    obs.observe(document.documentElement, {childList:true, subtree:true});\n\n    \/\/ Respond to future hash changes\n    $(window).on('hashchange.elTabsHash', function(){\n      openByHashOnce(window.location.hash);\n    });\n  }\n\n  \/\/ Boot\n  $(function(){\n    bindClickSync();\n    \/\/ If Elementor signals ready, hook then; otherwise fallback to DOM ready\n    if(window.elementorFrontend && elementorFrontend.hooks){\n      $(window).on('elementor\/frontend\/init', readyAndObserve);\n    } else {\n      readyAndObserve();\n    }\n  });\n\n})(jQuery);\n\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t<section class=\"elementor-element elementor-element-69767b8 e-flex e-con-boxed e-con e-parent\" data-id=\"69767b8\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aa19881 e-n-tabs-none elementor-widget elementor-widget-n-tabs\" data-id=\"aa19881\" data-element_type=\"widget\" data-settings=\"{&quot;tabs_justify_horizontal&quot;:&quot;start&quot;,&quot;horizontal_scroll&quot;:&quot;disable&quot;}\" data-widget_type=\"nested-tabs.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-tabs\" data-widget-number=\"178362497\" aria-label=\"Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.\">\n\t\t\t<div class=\"e-n-tabs-heading\" role=\"tablist\">\n\t\t\t\t\t<button id=\"casestudies\" data-tab-title-id=\"e-n-tab-title-1783624971\" class=\"e-n-tab-title\" aria-selected=\"true\" data-tab-index=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"e-n-tab-content-1783624971\" style=\"--n-tabs-title-order: 1;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tCase Studies\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"portfolio\" data-tab-title-id=\"e-n-tab-title-1783624972\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1783624972\" style=\"--n-tabs-title-order: 2;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tportfolio\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"e-n-tabs-content\">\n\t\t\t\t<div id=\"e-n-tab-content-1783624971\" role=\"tabpanel\" aria-labelledby=\"casestudies\" data-tab-index=\"1\" style=\"--n-tabs-title-order: 1;\" class=\"e-active elementor-element elementor-element-861ea08 e-con-full e-flex e-con e-child\" data-id=\"861ea08\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b139c69 elementor-hidden-tablet elementor-hidden-mobile elementor-hidden-desktop jet-smart-filter-content-position-column jet-smart-filter-group-position-column elementor-widget elementor-widget-jet-smart-filters-select\" data-id=\"b139c69\" data-element_type=\"widget\" data-widget_type=\"jet-smart-filters-select.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-smart-filters-select jet-filter \" data-indexer-rule=\"show\" data-show-counter=\"\" data-change-counter=\"always\"><div class=\"jet-select\" data-query-type=\"tax_query\" data-query-var=\"category\" data-smart-filter=\"select\" data-filter-id=\"40163\" data-apply-type=\"ajax\" data-content-provider=\"epro-loop-builder\" data-additional-providers=\"\" data-query-id=\"default\" data-active-label=\"\" data-layout-options=\"{&quot;show_label&quot;:true,&quot;display_options&quot;:{&quot;show_items_label&quot;:false,&quot;show_decorator&quot;:false,&quot;filter_image_size&quot;:&quot;full&quot;,&quot;show_counter&quot;:false}}\" data-query-var-suffix=\"\" data-apply-on=\"value\">\n\t\t\t\t<select\n\t\t\tclass=\"jet-select__control\"\n\t\t\tname=\"category\"\n\t\t\ttabindex=\"0\"\t\t\taria-label=\"Case Studies Service\"\n\t\t>\n\t\t\n\t\t\t\t\t<option\n\t\t\t\tvalue=\"\"\n\t\t\t\tdata-label=\"Filter By...\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\t\t\t\t\t\t\t\t>Filter By...<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"99\"\n\t\t\t\tdata-label=\"Accounting &amp; Finance\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"accounting-finance\"\t\t\t\t\t\t\t>Accounting &amp; Finance<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"100\"\n\t\t\t\tdata-label=\"Automotive\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"automotive\"\t\t\t\t\t\t\t>Automotive<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"96\"\n\t\t\t\tdata-label=\"Building &amp; Construction\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"building-construction\"\t\t\t\t\t\t\t>Building &amp; Construction<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"74\"\n\t\t\t\tdata-label=\"Digital Marketing\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"digital-marketing\"\t\t\t\t\t\t\t>Digital Marketing<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"101\"\n\t\t\t\tdata-label=\"eCommerce\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"ecommerce\"\t\t\t\t\t\t\t>eCommerce<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"102\"\n\t\t\t\tdata-label=\"Franchise\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"franchise\"\t\t\t\t\t\t\t>Franchise<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"103\"\n\t\t\t\tdata-label=\"Healthcare &amp; Medical\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"healthcare-medical\"\t\t\t\t\t\t\t>Healthcare &amp; Medical<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"93\"\n\t\t\t\tdata-label=\"Hospitality &amp; Tourism\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"hospitality-tourism\"\t\t\t\t\t\t\t>Hospitality &amp; Tourism<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"104\"\n\t\t\t\tdata-label=\"NDIS\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"ndis\"\t\t\t\t\t\t\t>NDIS<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"79\"\n\t\t\t\tdata-label=\"News\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"news\"\t\t\t\t\t\t\t>News<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"110\"\n\t\t\t\tdata-label=\"Real Estate\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"real-estate\"\t\t\t\t\t\t\t>Real Estate<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"112\"\n\t\t\t\tdata-label=\"SaaS\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"saas\"\t\t\t\t\t\t\t>SaaS<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"71\"\n\t\t\t\tdata-label=\"SEO\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"seo\"\t\t\t\t\t\t\t>SEO<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"105\"\n\t\t\t\tdata-label=\"Small Business\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"small-business\"\t\t\t\t\t\t\t>Small Business<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"106\"\n\t\t\t\tdata-label=\"Trades\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"trades\"\t\t\t\t\t\t\t>Trades<\/option>\n\t\t\t\t\t\t<option\n\t\t\t\tvalue=\"76\"\n\t\t\t\tdata-label=\"Web Design\"\n\t\t\t\tdata-counter-prefix=\"\"\n\t\t\t\tdata-counter-suffix=\"\"\n\t\t\t\tdata-url-value=\"web-design\"\t\t\t\t\t\t\t>Web Design<\/option>\n\t\t\t<\/select>\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9da8a5d elementor-grid-2 elementor-grid-tablet-1 elementor-grid-mobile-1 elementor-widget elementor-widget-loop-grid\" data-id=\"9da8a5d\" data-element_type=\"widget\" data-settings=\"{&quot;template_id&quot;:34372,&quot;columns&quot;:2,&quot;pagination_type&quot;:&quot;numbers&quot;,&quot;pagination_load_type&quot;:&quot;ajax&quot;,&quot;columns_tablet&quot;:1,&quot;auto_scroll&quot;:&quot;yes&quot;,&quot;_skin&quot;:&quot;post&quot;,&quot;columns_mobile&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;[data-elementor-type=\\&quot;loop-item\\&quot;]&quot;,&quot;row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-grid.post\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-loop-container elementor-grid\" role=\"list\">\n\t\t<style id=\"loop-34372\">.elementor-34372 .elementor-element.elementor-element-8c1664d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:15px 15px;--row-gap:15px;--column-gap:15px;--flex-wrap:wrap;--border-radius:032px 032px 032px 032px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-8c1664d:not(.elementor-motion-effects-element-type-background), .elementor-34372 .elementor-element.elementor-element-8c1664d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9d3f197 );}.elementor-34372 .elementor-element.elementor-element-307f4cb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:nowrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-0baac24{--display:flex;--justify-content:space-between;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:32px;--padding-bottom:32px;--padding-left:32px;--padding-right:32px;}.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-icon{width:14px;}.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-icon i{font-size:14px;}.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-text, .elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-text a{color:var( --e-global-color-085ef38 );}.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-item{font-family:var( --e-global-typography-3dd8e44-font-family ), Sans-serif;font-size:var( --e-global-typography-3dd8e44-font-size );font-weight:var( --e-global-typography-3dd8e44-font-weight );text-transform:var( --e-global-typography-3dd8e44-text-transform );line-height:var( --e-global-typography-3dd8e44-line-height );letter-spacing:var( --e-global-typography-3dd8e44-letter-spacing );}.elementor-34372 .elementor-element.elementor-element-3697b42 .elementor-heading-title{font-family:\"Barlow Condensed\", Sans-serif;font-size:44px;font-weight:500;line-height:46px;color:var( --e-global-color-0357f8a );}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button{background-color:var( --e-global-color-4560556 );font-family:var( --e-global-typography-1dad2a6-font-family ), Sans-serif;font-size:var( --e-global-typography-1dad2a6-font-size );font-weight:var( --e-global-typography-1dad2a6-font-weight );text-transform:var( --e-global-typography-1dad2a6-text-transform );line-height:var( --e-global-typography-1dad2a6-line-height );fill:var( --e-global-color-0357f8a );color:var( --e-global-color-0357f8a );border-style:none;border-radius:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button:hover, .elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button:focus{background-color:var( --e-global-color-4560556 );color:var( --e-global-color-primary );}.elementor-34372 .elementor-element.elementor-element-52ad55c > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button-content-wrapper{flex-direction:row-reverse;}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button .elementor-button-content-wrapper{gap:15px;}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button:hover svg, .elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button:focus svg{fill:var( --e-global-color-primary );}.elementor-34372 .elementor-element.elementor-element-20632ad{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-a6913a3 img{height:300px;object-fit:cover;object-position:center center;border-radius:0px 32px 0px 32px;}.elementor-34372 .elementor-element.elementor-element-286c304{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-b2a93b3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-fe78d2b{--display:grid;--e-con-grid-template-columns:repeat(3, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--gap:25px 25px;--row-gap:25px;--column-gap:25px;--grid-auto-flow:row;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:32px;--padding-bottom:32px;--padding-left:32px;--padding-right:32px;}.elementor-34372 .elementor-element.elementor-element-6d8da76{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-b78c420.elementor-element{--align-self:flex-start;}.elementor-34372 .elementor-element.elementor-element-b78c420 .elementor-icon-wrapper{text-align:center;}.elementor-34372 .elementor-element.elementor-element-b78c420 .elementor-icon{font-size:24px;}.elementor-34372 .elementor-element.elementor-element-b78c420 .elementor-icon svg{height:24px;}.elementor-34372 .elementor-element.elementor-element-942a045 .elementor-counter-title{justify-content:start;color:var( --e-global-color-0357f8a );font-family:\"Inter Tight\", Sans-serif;font-size:14px;font-weight:400;line-height:17px;}.elementor-34372 .elementor-element.elementor-element-942a045 .elementor-counter{gap:6px;}.elementor-34372 .elementor-element.elementor-element-942a045 .elementor-counter-number-wrapper{text-align:{{VALUE}};--counter-prefix-grow:0;--counter-suffix-grow:1;--counter-number-grow:0;color:var( --e-global-color-0357f8a );font-family:\"Barlow Condensed\", Sans-serif;font-size:40px;font-weight:500;text-transform:uppercase;line-height:1em;letter-spacing:-0.8px;}.elementor-34372 .elementor-element.elementor-element-9c9da39{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-62999fd .elementor-icon-wrapper{text-align:left;}.elementor-34372 .elementor-element.elementor-element-62999fd .elementor-icon{font-size:24px;}.elementor-34372 .elementor-element.elementor-element-62999fd .elementor-icon svg{height:24px;}.elementor-34372 .elementor-element.elementor-element-c548e3b .elementor-counter-title{justify-content:start;color:var( --e-global-color-0357f8a );font-family:\"Inter Tight\", Sans-serif;font-size:14px;font-weight:400;line-height:17px;}.elementor-34372 .elementor-element.elementor-element-c548e3b .elementor-counter{gap:6px;}.elementor-34372 .elementor-element.elementor-element-c548e3b .elementor-counter-number-wrapper{text-align:{{VALUE}};--counter-prefix-grow:0;--counter-suffix-grow:1;--counter-number-grow:0;color:var( --e-global-color-0357f8a );font-family:\"Barlow Condensed\", Sans-serif;font-size:40px;font-weight:500;text-transform:uppercase;line-height:1em;letter-spacing:-0.8px;}.elementor-34372 .elementor-element.elementor-element-2701a6e{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:stretch;--gap:8px 8px;--row-gap:8px;--column-gap:8px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34372 .elementor-element.elementor-element-71935aa{width:initial;max-width:initial;}.elementor-34372 .elementor-element.elementor-element-71935aa.elementor-element{--align-self:flex-start;}.elementor-34372 .elementor-element.elementor-element-71935aa .elementor-icon-wrapper{text-align:center;}.elementor-34372 .elementor-element.elementor-element-71935aa.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-0357f8a );}.elementor-34372 .elementor-element.elementor-element-71935aa.elementor-view-framed .elementor-icon, .elementor-34372 .elementor-element.elementor-element-71935aa.elementor-view-default .elementor-icon{color:var( --e-global-color-0357f8a );border-color:var( --e-global-color-0357f8a );}.elementor-34372 .elementor-element.elementor-element-71935aa.elementor-view-framed .elementor-icon, .elementor-34372 .elementor-element.elementor-element-71935aa.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-0357f8a );}.elementor-34372 .elementor-element.elementor-element-71935aa .elementor-icon{font-size:24px;}.elementor-34372 .elementor-element.elementor-element-71935aa .elementor-icon svg{height:24px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 .elementor-counter-title{justify-content:start;color:var( --e-global-color-0357f8a );font-family:\"Inter Tight\", Sans-serif;font-size:14px;font-weight:400;line-height:17px;letter-spacing:0px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 .elementor-counter{gap:6px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 .elementor-counter-number-wrapper{text-align:{{VALUE}};--counter-prefix-grow:0;--counter-suffix-grow:1;--counter-number-grow:0;color:var( --e-global-color-0357f8a );font-family:\"Barlow Condensed\", Sans-serif;font-size:40px;font-weight:500;text-transform:uppercase;line-height:1em;letter-spacing:-0.8px;}@media(max-width:1024px){.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-item{font-size:var( --e-global-typography-3dd8e44-font-size );line-height:var( --e-global-typography-3dd8e44-line-height );letter-spacing:var( --e-global-typography-3dd8e44-letter-spacing );}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button{font-size:var( --e-global-typography-1dad2a6-font-size );line-height:var( --e-global-typography-1dad2a6-line-height );}.elementor-34372 .elementor-element.elementor-element-fe78d2b{--grid-auto-flow:row;}.elementor-34372 .elementor-element.elementor-element-942a045 .elementor-counter-number-wrapper{font-size:30px;}.elementor-34372 .elementor-element.elementor-element-c548e3b .elementor-counter-number-wrapper{font-size:30px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 .elementor-counter-number-wrapper{font-size:30px;}}@media(max-width:767px){.elementor-34372 .elementor-element.elementor-element-8c1664d{--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-34372 .elementor-element.elementor-element-307f4cb{--flex-direction:column-reverse;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-34372 .elementor-element.elementor-element-0baac24{--padding-top:20px;--padding-bottom:16px;--padding-left:16px;--padding-right:16px;}.elementor-34372 .elementor-element.elementor-element-e0a9ba8 .elementor-icon-list-item{font-size:var( --e-global-typography-3dd8e44-font-size );line-height:var( --e-global-typography-3dd8e44-line-height );letter-spacing:var( --e-global-typography-3dd8e44-letter-spacing );}.elementor-34372 .elementor-element.elementor-element-3697b42 .elementor-heading-title{font-size:32px;line-height:38px;}.elementor-34372 .elementor-element.elementor-element-52ad55c .elementor-button{font-size:var( --e-global-typography-1dad2a6-font-size );line-height:var( --e-global-typography-1dad2a6-line-height );}.elementor-34372 .elementor-element.elementor-element-20632ad{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-34372 .elementor-element.elementor-element-a6913a3 img{height:175px;}.elementor-34372 .elementor-element.elementor-element-fe78d2b{--e-con-grid-template-columns:repeat(3, 1fr);--gap:12px 12px;--row-gap:12px;--column-gap:12px;--grid-auto-flow:row;--padding-top:16px;--padding-bottom:20px;--padding-left:16px;--padding-right:16px;}.elementor-34372 .elementor-element.elementor-element-6d8da76{--width:100%;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:flex-start;}.elementor-34372 .elementor-element.elementor-element-b78c420{width:auto;max-width:auto;}.elementor-34372 .elementor-element.elementor-element-b78c420 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-34372 .elementor-element.elementor-element-b78c420 .elementor-icon-wrapper{text-align:left;}.elementor-34372 .elementor-element.elementor-element-b78c420 .elementor-icon{font-size:24px;}.elementor-34372 .elementor-element.elementor-element-b78c420 .elementor-icon svg{height:24px;}.elementor-34372 .elementor-element.elementor-element-942a045 .elementor-counter-number-wrapper{font-size:32px;}.elementor-34372 .elementor-element.elementor-element-942a045 .elementor-counter-title{font-size:11px;line-height:1.2em;}.elementor-34372 .elementor-element.elementor-element-9c9da39{--width:100%;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:flex-start;}.elementor-34372 .elementor-element.elementor-element-62999fd{width:auto;max-width:auto;}.elementor-34372 .elementor-element.elementor-element-62999fd .elementor-icon-wrapper{text-align:left;}.elementor-34372 .elementor-element.elementor-element-62999fd .elementor-icon{font-size:24px;}.elementor-34372 .elementor-element.elementor-element-62999fd .elementor-icon svg{height:24px;}.elementor-34372 .elementor-element.elementor-element-c548e3b .elementor-counter-number-wrapper{font-size:32px;}.elementor-34372 .elementor-element.elementor-element-c548e3b .elementor-counter-title{font-size:11px;line-height:1.2em;}.elementor-34372 .elementor-element.elementor-element-71935aa{width:auto;max-width:auto;}.elementor-34372 .elementor-element.elementor-element-71935aa .elementor-icon-wrapper{text-align:left;}.elementor-34372 .elementor-element.elementor-element-71935aa .elementor-icon{font-size:24px;}.elementor-34372 .elementor-element.elementor-element-71935aa .elementor-icon svg{height:24px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 .elementor-counter-number-wrapper{font-size:32px;}.elementor-34372 .elementor-element.elementor-element-f9787e2 .elementor-counter-title{font-size:11px;line-height:1.2em;}}@media(min-width:768px){.elementor-34372 .elementor-element.elementor-element-0baac24{--width:50%;}.elementor-34372 .elementor-element.elementor-element-20632ad{--width:50%;}}\/* Start custom CSS for counter, class: .elementor-element-942a045 *\/span.elementor-counter-title {\n    width:80%!important;\n}\n\n.elementor-34372 .elementor-element.elementor-element-942a045 img{\n    display: none!important\n}\/* End custom CSS *\/\n\/* Start custom CSS for counter, class: .elementor-element-c548e3b *\/span.elementor-counter-title {\n    width:80%!important;\n}\n\n.elementor-34372 .elementor-element.elementor-element-c548e3b img{\n    display: none!important\n}\/* End custom CSS *\/\n\/* Start custom CSS for counter, class: .elementor-element-f9787e2 *\/span.elementor-counter-title {\n    width:80%!important;\n}\n\n.elementor-34372 .elementor-element.elementor-element-f9787e2 img{\n    display: none!important\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-44899 post-44899 case-studies type-case-studies status-publish has-post-thumbnail hentry category-small-business tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Small Business<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/adelaide-expo-hire\/\">Adelaide Expo Hire<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/adelaide-expo-hire\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/adelaide-expo-hire\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Operator-25-Lounge-1-scaled-1-1024x683.jpg\" class=\"attachment-large size-large wp-image-44921\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Operator-25-Lounge-1-scaled-1-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Operator-25-Lounge-1-scaled-1-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Operator-25-Lounge-1-scaled-1-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Operator-25-Lounge-1-scaled-1-1536x1024.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Operator-25-Lounge-1-scaled-1-2048x1366.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Keywords at #1<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"5\" data-from-value=\"0\">5<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Cities on Page 1<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"6\" data-from-value=\"0\">6<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Target Keywords Ranking<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"13\" data-from-value=\"0\">13<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-90222 post-90222 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-digital-marketing tag-paid-media tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/deionno-electrical-solar\/\">Deionno Electrical &amp; Solar\u200b<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/deionno-electrical-solar\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/deionno-electrical-solar\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Commerical-Solar-and-Storage-03-1024x683.jpg\" class=\"attachment-large size-large wp-image-90271\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Commerical-Solar-and-Storage-03-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Commerical-Solar-and-Storage-03-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Commerical-Solar-and-Storage-03-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/Commerical-Solar-and-Storage-03.jpg 1350w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">CPL at 3.4x Spend<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"0\" data-from-value=\"0\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Monthly Meta Leads<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"238\" data-from-value=\"0\">238<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Google Ads Conversion Rate<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"46\" data-from-value=\"0\">46<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-90014 post-90014 case-studies type-case-studies status-publish has-post-thumbnail hentry category-building-construction tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Building &amp; Construction<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/wright-choice-homes\/\">Wright Choice Homes<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/wright-choice-homes\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/wright-choice-homes\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"291\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/@CH4-1024x372.jpg\" class=\"attachment-large size-large wp-image-90021\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/@CH4-1024x372.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/@CH4-300x109.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/@CH4-768x279.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/@CH4-1536x558.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/@CH4.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Search Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"119\" data-from-value=\"0\">119<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in New Organic Users<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"74\" data-from-value=\"0\">74<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Keywords in the Top 10<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"7\" data-from-value=\"0\">7<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-90051 post-90051 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/terawatt\/\">Terawatt<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/terawatt\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/terawatt\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"450\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/terawatt3-1024x576.jpg\" class=\"attachment-large size-large wp-image-90077\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/terawatt3-1024x576.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/terawatt3-300x169.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/terawatt3-768x432.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/terawatt3-1536x864.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/06\/terawatt3-2048x1152.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Organic Sessions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"735\" data-from-value=\"0\">735<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in New Organic Users<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"778\" data-from-value=\"0\">778<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">\u2018Data Cabling Services\u2019 #1 on Google<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"1\" data-from-value=\"0\">1<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-40011 post-40011 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-paid-media tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/prestige-roof-transformations\/\">Prestige Roof Transformations<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/prestige-roof-transformations\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/prestige-roof-transformations\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"533\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/kam-merchant-5h_LuBDilto-unsplash-1-1024x682.jpg\" class=\"attachment-large size-large wp-image-40016\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/kam-merchant-5h_LuBDilto-unsplash-1-1024x682.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/kam-merchant-5h_LuBDilto-unsplash-1-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/kam-merchant-5h_LuBDilto-unsplash-1-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/kam-merchant-5h_LuBDilto-unsplash-1.jpg 1400w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Conversions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"43\" data-from-value=\"0\">43<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Decrease in Cost Per Conversion<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"20\" data-from-value=\"0\">20<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in CTR<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"21\" data-from-value=\"0\">21<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-40040 post-40040 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-paid-media tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/aussie-cut\/\">Aussie Cut<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/aussie-cut\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/aussie-cut\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/steven-ungermann-mEA1pGTNT5k-unsplash-1-1024x684.jpg\" class=\"attachment-large size-large wp-image-40044\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/steven-ungermann-mEA1pGTNT5k-unsplash-1-1024x684.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/steven-ungermann-mEA1pGTNT5k-unsplash-1-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/steven-ungermann-mEA1pGTNT5k-unsplash-1-768x513.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/steven-ungermann-mEA1pGTNT5k-unsplash-1.jpg 1400w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Conversions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"26\" data-from-value=\"0\">26<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Decrease in Cost Per Conversion<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"18\" data-from-value=\"0\">18<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in CTR<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"10\" data-from-value=\"0\">10<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33913 post-33913 case-studies type-case-studies status-publish has-post-thumbnail hentry category-automotive tag-paid-media tag-social-media\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Automotive<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/gwm\/\">GWM<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/gwm\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/gwm\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"609\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Haval-Jolion-1024x779.jpg\" class=\"attachment-large size-large wp-image-34084\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Haval-Jolion-1024x779.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Haval-Jolion-300x228.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Haval-Jolion-768x584.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Haval-Jolion-1536x1168.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Haval-Jolion-2048x1557.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In FB Ads Leads<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"19\" data-from-value=\"0\">19<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Decrease In FB Ads Cost Per Lead <\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"24\" data-from-value=\"0\">24<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase FB Ads CTR<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"26\" data-from-value=\"0\">26<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-31948 post-31948 case-studies type-case-studies status-publish has-post-thumbnail hentry category-franchise tag-brisbane tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Franchise<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/rumble-boxing\/\">Rumble Boxing<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/rumble-boxing\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/rumble-boxing\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/406496797_386338673730312_7407355888509905856_n-1024x1024.jpg\" class=\"attachment-large size-large wp-image-31951\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/406496797_386338673730312_7407355888509905856_n-1024x1024.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/406496797_386338673730312_7407355888509905856_n-300x300.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/406496797_386338673730312_7407355888509905856_n-150x150.jpg 150w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/406496797_386338673730312_7407355888509905856_n-768x768.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/406496797_386338673730312_7407355888509905856_n.jpg 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Engaged Sessions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"93\" data-from-value=\"0\">93<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In New Users<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"70\" data-from-value=\"0\">70<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Keywords In Top 3<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"31\" data-from-value=\"0\">31<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-30865 post-30865 case-studies type-case-studies status-publish has-post-thumbnail hentry category-healthcare-medical tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Healthcare &amp; Medical<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/the-house-call-vet\/\">The House Call Vet<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/the-house-call-vet\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/the-house-call-vet\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/thcv-1024x683.jpg\" class=\"attachment-large size-large wp-image-30867\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/thcv-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/thcv-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/thcv-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/thcv-1536x1024.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/thcv-2048x1365.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Top 3 Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"737\" data-from-value=\"0\">737<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In User Engagement<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"67\" data-from-value=\"0\">67<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Terms in Top 3 Search Positions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"130\" data-from-value=\"0\">130<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-40061 post-40061 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-paid-media\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/heinemann-electrical-solar\/\">Heinemann Electrical &amp; Solar<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/heinemann-electrical-solar\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/heinemann-electrical-solar\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"988\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/lp-image-1-829x1024.webp\" class=\"attachment-large size-large wp-image-40063\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/lp-image-1-829x1024.webp 829w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/lp-image-1-243x300.webp 243w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/lp-image-1-768x948.webp 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/12\/lp-image-1.webp 1069w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Conversions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"392\" data-from-value=\"0\">392<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Decrease in Cost Per Conversion<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"50\" data-from-value=\"0\">50<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Conversion Rate<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"12\" data-from-value=\"0\">12<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-31872 post-31872 case-studies type-case-studies status-publish has-post-thumbnail hentry category-automotive tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Automotive<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/just-autos\/\">Just Autos<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/just-autos\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/just-autos\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"1000\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152-819x1024.jpg\" class=\"attachment-large size-large wp-image-31875\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152-819x1024.jpg 819w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152-240x300.jpg 240w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152-768x960.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152-1229x1536.jpg 1229w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152-1638x2048.jpg 1638w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/JA-09152.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Attained Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"164\" data-from-value=\"0\">164<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic Sessions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"107\" data-from-value=\"0\">107<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Top 3 Ranking Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"85\" data-from-value=\"0\">85<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-32058 post-32058 case-studies type-case-studies status-publish has-post-thumbnail hentry category-hospitality-tourism tag-paid-media\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Hospitality &amp; Tourism<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/scubaworld\/\">Scubaworld<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/scubaworld\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/scubaworld\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mesmerizing-view-of-a-female-scuba-diver-swimming-2025-02-02-22-51-08-utc-1024x683.jpeg\" class=\"attachment-large size-large wp-image-32064\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mesmerizing-view-of-a-female-scuba-diver-swimming-2025-02-02-22-51-08-utc-1024x683.jpeg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mesmerizing-view-of-a-female-scuba-diver-swimming-2025-02-02-22-51-08-utc-300x200.jpeg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mesmerizing-view-of-a-female-scuba-diver-swimming-2025-02-02-22-51-08-utc-768x512.jpeg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mesmerizing-view-of-a-female-scuba-diver-swimming-2025-02-02-22-51-08-utc-1536x1024.jpeg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mesmerizing-view-of-a-female-scuba-diver-swimming-2025-02-02-22-51-08-utc-2048x1365.jpeg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">ROAS in Social Marketing<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"6\" data-from-value=\"0\">6<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"55\" data-from-value=\"0\">55<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in organic traffic<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"25\" data-from-value=\"0\">25<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-31697 post-31697 case-studies type-case-studies status-publish has-post-thumbnail hentry category-hospitality-tourism tag-paid-media tag-social-media\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Hospitality &amp; Tourism<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/junction-moama\/\">Junction Moama<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/junction-moama\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/junction-moama\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-683x1024.jpg\" class=\"attachment-large size-large wp-image-31714\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-683x1024.jpg 683w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-200x300.jpg 200w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-768x1152.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-1024x1536.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-1365x2048.jpg 1365w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/gourmet-appetizer-beautifully-decorated-catering-2025-01-08-14-25-07-utc-scaled.jpg 1707w\" sizes=\"(max-width: 683px) 100vw, 683px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Decrease In CPM<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"35\" data-from-value=\"0\">35<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Social Views<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"71\" data-from-value=\"0\">71<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Meta Ad Link Clicks<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"585\" data-from-value=\"0\">585<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-31609 post-31609 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/hvac-parts-accessories\/\">HVAC Parts &#038; Accessories<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/hvac-parts-accessories\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/hvac-parts-accessories\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"420\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/minimalist-living-room-with-elegant-furniture-and-2021-08-27-22-41-07-utc-scaled-1-1024x537.jpg\" class=\"attachment-large size-large wp-image-31621\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/minimalist-living-room-with-elegant-furniture-and-2021-08-27-22-41-07-utc-scaled-1-1024x537.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/minimalist-living-room-with-elegant-furniture-and-2021-08-27-22-41-07-utc-scaled-1-300x157.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/minimalist-living-room-with-elegant-furniture-and-2021-08-27-22-41-07-utc-scaled-1-768x403.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/minimalist-living-room-with-elegant-furniture-and-2021-08-27-22-41-07-utc-scaled-1-1536x805.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/minimalist-living-room-with-elegant-furniture-and-2021-08-27-22-41-07-utc-scaled-1-2048x1074.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In User Engagement<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"85\" data-from-value=\"0\">85<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In SERP Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"65\" data-from-value=\"0\">65<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<!-- hidden container 31609-2701a6e -->\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33441 post-33441 case-studies type-case-studies status-publish has-post-thumbnail hentry category-hospitality-tourism tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Hospitality &amp; Tourism<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/go-ride-a-wave\/\">Go Ride A Wave<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/go-ride-a-wave\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/go-ride-a-wave\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Torquay-go-ride-a-wave-store-1-1024x683.jpeg\" class=\"attachment-large size-large wp-image-33449\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Torquay-go-ride-a-wave-store-1-1024x683.jpeg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Torquay-go-ride-a-wave-store-1-300x200.jpeg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Torquay-go-ride-a-wave-store-1-768x512.jpeg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Torquay-go-ride-a-wave-store-1-1536x1024.jpeg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Torquay-go-ride-a-wave-store-1.jpeg 1800w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic CTR<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"44\" data-from-value=\"0\">44<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Average Keyword Position<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"20\" data-from-value=\"0\">20<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"27\" data-from-value=\"0\">27<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33407 post-33407 case-studies type-case-studies status-publish has-post-thumbnail hentry category-ecommerce tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">eCommerce<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/dannys-desks-chairs\/\">Danny&#8217;s Desks &#038; Chairs<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/dannys-desks-chairs\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/dannys-desks-chairs\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/laptop-and-flower-pot-on-wooden-table-2024-10-19-09-24-20-utc-1024x683.jpg\" class=\"attachment-large size-large wp-image-33416\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/laptop-and-flower-pot-on-wooden-table-2024-10-19-09-24-20-utc-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/laptop-and-flower-pot-on-wooden-table-2024-10-19-09-24-20-utc-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/laptop-and-flower-pot-on-wooden-table-2024-10-19-09-24-20-utc-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/laptop-and-flower-pot-on-wooden-table-2024-10-19-09-24-20-utc-1536x1025.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/laptop-and-flower-pot-on-wooden-table-2024-10-19-09-24-20-utc-2048x1366.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic Clicks<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"18\" data-from-value=\"0\">18<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"30\" data-from-value=\"0\">30<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Keywords Secured Top 10 Rankings<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"14\" data-from-value=\"0\">14<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-30926 post-30926 case-studies type-case-studies status-publish has-post-thumbnail hentry category-building-construction tag-paid-media tag-social-media\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Building &amp; Construction<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/davis-sanders-homes\/\">Davis Sanders Homes<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/davis-sanders-homes\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/davis-sanders-homes\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/DSC_7242-Edit-JC-1024x683.jpg\" class=\"attachment-large size-large wp-image-30930\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/DSC_7242-Edit-JC-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/DSC_7242-Edit-JC-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/DSC_7242-Edit-JC-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/DSC_7242-Edit-JC-1536x1024.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/DSC_7242-Edit-JC.jpg 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Social Followers<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"14\" data-from-value=\"0\">14<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Social Referral Traffic<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"15\" data-from-value=\"0\">15<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Social Profile Visits<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"38\" data-from-value=\"0\">38<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33362 post-33362 case-studies type-case-studies status-publish has-post-thumbnail hentry category-ecommerce tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">eCommerce<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/dairy-free-down-under\/\">Dairy-Free Down Under<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/dairy-free-down-under\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/dairy-free-down-under\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"1000\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1-819x1024.jpg\" class=\"attachment-large size-large wp-image-33368\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1-819x1024.jpg 819w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1-240x300.jpg 240w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1-768x960.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1-1229x1536.jpg 1229w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1-1638x2048.jpg 1638w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Cashew-Cream-Cheese-Falafels-scaled-1.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Average Keyword Positions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"13\" data-from-value=\"0\">13<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Organic Sessions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"6\" data-from-value=\"0\">6<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase in Organic Click-Through Rate<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"15\" data-from-value=\"0\">15<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-31460 post-31460 case-studies type-case-studies status-publish has-post-thumbnail hentry category-franchise tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Franchise<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/cycle-bar\/\">Cycle Bar<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/cycle-bar\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/cycle-bar\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/couple-in-a-spinning-class-wearing-sportswear-2025-03-27-01-42-54-utc-1024x683.jpg\" class=\"attachment-large size-large wp-image-31467\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/couple-in-a-spinning-class-wearing-sportswear-2025-03-27-01-42-54-utc-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/couple-in-a-spinning-class-wearing-sportswear-2025-03-27-01-42-54-utc-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/couple-in-a-spinning-class-wearing-sportswear-2025-03-27-01-42-54-utc-768x513.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/couple-in-a-spinning-class-wearing-sportswear-2025-03-27-01-42-54-utc-1536x1025.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/couple-in-a-spinning-class-wearing-sportswear-2025-03-27-01-42-54-utc-2048x1367.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic Traffic<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"123\" data-from-value=\"0\">123<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Total Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"163\" data-from-value=\"0\">163<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Top 3 Ranking Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"250\" data-from-value=\"0\">250<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-31214 post-31214 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/besafe-inspections\/\">BeSafe Inspections<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/besafe-inspections\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/besafe-inspections\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"448\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/Besafe-Casestudy-e1753412830469-1024x573.jpg\" class=\"attachment-large size-large wp-image-30836\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/Besafe-Casestudy-e1753412830469-1024x573.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/Besafe-Casestudy-e1753412830469-300x168.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/Besafe-Casestudy-e1753412830469-768x430.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/Besafe-Casestudy-e1753412830469-1536x860.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/Besafe-Casestudy-e1753412830469.jpg 1800w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"15\" data-from-value=\"0\">15<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In CTR (Click Through Rate)<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"23\" data-from-value=\"0\">23<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Average Keyword Position<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"25\" data-from-value=\"0\">25<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33318 post-33318 case-studies type-case-studies status-publish has-post-thumbnail hentry category-building-construction tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Building &amp; Construction<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/asset-cabins-homes\/\">Asset Cabins &#038; Homes<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/asset-cabins-homes\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/asset-cabins-homes\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"513\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/wooden-houses-in-a-triangular-summer-camp-summer-2025-03-05-18-34-53-utc-1024x657.jpg\" class=\"attachment-large size-large wp-image-33327\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/wooden-houses-in-a-triangular-summer-camp-summer-2025-03-05-18-34-53-utc-1024x657.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/wooden-houses-in-a-triangular-summer-camp-summer-2025-03-05-18-34-53-utc-300x193.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/wooden-houses-in-a-triangular-summer-camp-summer-2025-03-05-18-34-53-utc-768x493.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/wooden-houses-in-a-triangular-summer-camp-summer-2025-03-05-18-34-53-utc-1536x986.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/wooden-houses-in-a-triangular-summer-camp-summer-2025-03-05-18-34-53-utc-2048x1314.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Keywords In Top 3 Ranking Positions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"31\" data-from-value=\"0\">31<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In SERP Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"144\" data-from-value=\"0\">144<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In CTR<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"5\" data-from-value=\"0\">5<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-32883 post-32883 case-studies type-case-studies status-publish has-post-thumbnail hentry category-accounting-finance tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Accounting &amp; Finance<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/andrew-gardiner-law\/\">Andrew Gardiner Law<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/andrew-gardiner-law\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/andrew-gardiner-law\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"450\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/cta-trusted-1024x576.jpg\" class=\"attachment-large size-large wp-image-32898\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/cta-trusted-1024x576.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/cta-trusted-300x169.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/cta-trusted-768x432.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/cta-trusted-1536x864.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/cta-trusted.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Traffic<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"22\" data-from-value=\"0\">22<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Primary Keywords in Top 10<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"13\" data-from-value=\"0\">13<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<!-- hidden container 32883-2701a6e -->\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33811 post-33811 case-studies type-case-studies status-publish has-post-thumbnail hentry category-trades tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Trades<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/absolute-plumbing-solutions\/\">Absolute Plumbing Solutions<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/absolute-plumbing-solutions\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/absolute-plumbing-solutions\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"1024\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/IMG_3106-768x1024.jpg\" class=\"attachment-large size-large wp-image-33823\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/IMG_3106-768x1024.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/IMG_3106-225x300.jpg 225w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/IMG_3106-1152x1536.jpg 1152w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/IMG_3106-rotated.jpg 1512w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Impressions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"399\" data-from-value=\"0\">399<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/upward-trend-icon-1.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic Sessions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"28\" data-from-value=\"0\">28<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Top 10 Rankings<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"12\" data-from-value=\"0\">12<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/search-quick-action-search-quick-action-flash-magnifier-find.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-33923 post-33923 case-studies type-case-studies status-publish has-post-thumbnail hentry category-automotive tag-paid-media\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Automotive<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/4tune\/\">4Tune<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/4tune\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/4tune\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"527\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/jorgen-hendriksen-4GQ6sOA4woQ-unsplash-scaled-1-1024x675.jpg\" class=\"attachment-large size-large wp-image-33949\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/jorgen-hendriksen-4GQ6sOA4woQ-unsplash-scaled-1-1024x675.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/jorgen-hendriksen-4GQ6sOA4woQ-unsplash-scaled-1-300x198.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/jorgen-hendriksen-4GQ6sOA4woQ-unsplash-scaled-1-768x506.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/jorgen-hendriksen-4GQ6sOA4woQ-unsplash-scaled-1-1536x1013.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/jorgen-hendriksen-4GQ6sOA4woQ-unsplash-scaled-1-2048x1350.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increased Conversion rate<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"24.32\" data-from-value=\"0\">24.32<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/signal-icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Decrease in Cost Per Conversion<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"9\" data-from-value=\"0\">9<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/dollar-coin-accounting-billing-payment-cash-coin-currency-money-finance.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Conversions<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"10\" data-from-value=\"0\">10<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">% <span class=\"banner-intro_icon\"><img decoding=\"async\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/One-Finger-Tap-Icon.svg\"><\/span><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34372\" class=\"elementor elementor-34372 e-loop-item e-loop-item-30902 post-30902 case-studies type-case-studies status-publish has-post-thumbnail hentry category-franchise tag-seo\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-flex e-con-boxed e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a9ba8 elementor-widget elementor-widget-post-info\" data-id=\"e0a9ba8\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-6351f3a elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Franchise<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/club-pilates-australia\/\">Club Pilates<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/club-pilates-australia\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/case-studies\/club-pilates-australia\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/LPF-271-1024x683.jpg\" class=\"attachment-large size-large wp-image-30853\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/LPF-271-1024x683.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/LPF-271-300x200.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/LPF-271-768x512.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/LPF-271-1536x1024.jpg 1536w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/07\/LPF-271.jpg 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-286c304 e-con-full e-flex e-con e-child\" data-id=\"286c304\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b2a93b3 e-con-full e-flex e-con e-child\" data-id=\"b2a93b3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fe78d2b e-con-full e-grid e-con e-child\" data-id=\"fe78d2b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6d8da76 e-con-full e-flex e-con e-child\" data-id=\"6d8da76\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b78c420 elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b78c420\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#B89DFF\"><\/rect><g clip-path=\"url(#clip0_6615_489)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8499 29.3394C22.1679 29.3394 24.0962 28.8383 25.5919 27.8789L28.7301 31.0171C29.3438 31.6307 30.3388 31.6307 30.9524 31.0171C31.5661 30.4034 31.5661 29.4084 30.9524 28.7947L27.8141 25.6564C28.7732 24.1608 29.274 22.2329 29.274 19.9153C29.274 13.8839 25.8813 10.4912 19.8499 10.4912C13.8185 10.4912 10.4258 13.8839 10.4258 19.9153C10.4258 25.9468 13.8185 29.3394 19.8499 29.3394ZM25.1291 15.6633C24.4874 15.2783 23.7131 15.1117 23.0285 15.1117C22.3925 15.1117 21.5459 15.2588 20.9724 15.8324C20.7276 16.0771 20.6093 16.421 20.6516 16.7646C20.6939 17.1081 20.8921 17.413 21.1889 17.5911L21.7296 17.9156C21.5086 18.1119 21.2794 18.314 21.052 18.5122C20.6125 18.8955 20.1869 19.2584 19.8433 19.536C19.7886 19.5802 19.7367 19.6217 19.6879 19.6601C19.5943 19.4841 19.4591 19.2395 19.2933 19.0318C19.0756 18.7592 18.6925 18.4041 18.1021 18.3562C17.4568 18.3038 16.8842 18.663 16.5336 18.922C16.1298 19.2204 15.7313 19.6107 15.3847 19.9822C15.0331 20.3591 14.707 20.7472 14.4512 21.0564L14.3024 21.2368C14.2359 21.3175 14.1771 21.389 14.1228 21.454C14.0784 21.5072 14.0422 21.55 14.013 21.5834C13.9985 21.5999 13.9872 21.6126 13.9784 21.6221L13.9661 21.6353C13.966 21.6354 13.9661 21.6354 13.9661 21.6353C13.5829 22.0192 13.5835 22.6411 13.9675 23.0243C14.3514 23.4075 14.9733 23.4068 15.3564 23.0229C15.4724 22.9067 15.6576 22.6816 15.8423 22.4571L15.9647 22.3085C16.2149 22.0061 16.5108 21.6548 16.8211 21.3221C17.1363 20.9842 17.4396 20.695 17.701 20.5017C17.7602 20.458 17.8103 20.4244 17.8517 20.3987C17.894 20.4713 17.9447 20.5665 18.0149 20.6981L18.0264 20.7197C18.1213 20.8982 18.2956 21.226 18.5496 21.4673C18.6998 21.61 18.9192 21.7653 19.2147 21.8338C19.5211 21.9048 19.8158 21.8609 20.0707 21.7554C20.2546 21.6794 20.4419 21.5488 20.5665 21.4589C20.7176 21.3498 20.8924 21.2137 21.0777 21.064C21.4497 20.7635 21.8969 20.3818 22.3431 19.9926C22.618 19.7528 22.8953 19.5079 23.1579 19.2741L23.5869 19.9891C23.765 20.2859 24.0699 20.4841 24.4134 20.5264C24.757 20.5687 25.1009 20.4504 25.3456 20.2056C25.9191 19.6321 26.0662 18.7855 26.0662 18.1495C26.0662 17.4648 25.8997 16.6906 25.5147 16.0489C25.4198 15.8907 25.2873 15.7582 25.1291 15.6633Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6615_489\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-942a045 animated-slow elementor-widget elementor-widget-counter\" data-id=\"942a045\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Top 3 Ranking Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"1176\" data-from-value=\"0\">1176<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c9da39 e-con-full e-flex e-con e-child\" data-id=\"9c9da39\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62999fd elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"62999fd\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#86A4EF\"><\/rect><g clip-path=\"url(#clip0_6284_497)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7358 10.7383C11.1961 10.278 11.9423 10.278 12.4026 10.7383L15.1327 13.4684C15.5929 13.9286 15.5929 14.6749 15.1327 15.1351C14.6724 15.5954 13.9262 15.5954 13.4659 15.1351L10.7358 12.405C10.2756 11.9448 10.2756 11.1985 10.7358 10.7383ZM10.7358 31.2643C11.1961 31.7246 11.9423 31.7246 12.4026 31.2643L15.1327 28.5341C15.5929 28.0738 15.5929 27.3277 15.1327 26.8675C14.6724 26.4072 13.9262 26.4072 13.4659 26.8675L10.7358 29.5975C10.2756 30.0578 10.2756 30.804 10.7358 31.2643ZM29.5951 10.7383C30.0554 10.278 30.8015 10.278 31.2618 10.7383C31.722 11.1985 31.722 11.9448 31.2618 12.405L28.5317 15.1351C28.0714 15.5954 27.3252 15.5954 26.8649 15.1351C26.4046 14.6749 26.4046 13.9286 26.8649 13.4684L29.5951 10.7383ZM31.2618 31.2643C30.8015 31.7246 30.0554 31.7246 29.5951 31.2643L26.8649 28.5341C26.4046 28.0738 26.4046 27.3277 26.8649 26.8675C27.3252 26.4072 28.0714 26.4072 28.5317 26.8675L31.2618 29.5975C31.722 30.0578 31.722 30.804 31.2618 31.2643ZM21.0219 12.7433C22.0495 11.8375 23.5803 12.6148 23.5803 13.9149V19.0655H26.4752C27.7341 19.0655 28.4993 20.4864 27.7513 21.5322C25.7173 24.3761 23.6215 26.9229 20.9761 29.2548C19.9485 30.1605 18.4177 29.3833 18.4177 28.0833V22.9326H15.5228C14.264 22.9326 13.4987 21.5117 14.2466 20.4659C16.2807 17.6219 18.3765 15.0752 21.0219 12.7433Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_6284_497\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c548e3b animated-slow elementor-widget elementor-widget-counter\" data-id=\"c548e3b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Organic Traffic<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"39\" data-from-value=\"0\">39<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2701a6e e-con-full dc-has-condition dc-condition-empty animated-slow e-flex e-con e-child\" data-id=\"2701a6e\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:300,&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71935aa elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"71935aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\" fill=\"none\"><rect width=\"42\" height=\"42\" rx=\"8\" fill=\"#CDFFB6\"><\/rect><g clip-path=\"url(#clip0_6615_499)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7517 20.4554C12.7517 17.8295 13.4866 15.9445 14.7163 14.7148C15.946 13.4851 17.831 12.7502 20.4569 12.7502C23.0827 12.7502 24.9678 13.4851 26.1974 14.7148C27.4272 15.9445 28.162 17.8295 28.162 20.4554C28.162 23.0813 27.4272 24.9663 26.1974 26.196C24.9678 27.4258 23.0827 28.1606 20.4569 28.1606C17.831 28.1606 15.946 27.4258 14.7163 26.196C13.4866 24.9663 12.7517 23.0813 12.7517 20.4554ZM20.4569 10.3931C17.3971 10.3931 14.8403 11.2573 13.0495 13.048C11.2587 14.8388 10.3945 17.3957 10.3945 20.4554C10.3945 23.5151 11.2587 26.072 13.0495 27.8628C14.8403 29.6536 17.3971 30.5177 20.4569 30.5177C22.8772 30.5177 24.9828 29.977 26.6436 28.8646L28.9262 31.1471C29.5399 31.7609 30.5349 31.7609 31.1485 31.1471C31.7622 30.5334 31.7622 29.5384 31.1485 28.9248L28.8659 26.6423C29.9785 24.9816 30.5192 22.8758 30.5192 20.4554C30.5192 17.3957 29.6551 14.8388 27.8643 13.048C26.0735 11.2573 23.5166 10.3931 20.4569 10.3931ZM20.4312 15.3373C21.0345 14.8005 21.9359 15.2586 21.9359 16.0257V19.2943H23.7851C24.5291 19.2943 24.9779 20.1337 24.5372 20.749C23.2891 22.4914 22.003 24.053 20.3938 25.4847C19.7904 26.0216 18.889 25.5635 18.889 24.7963V21.5278H17.0399C16.2959 21.5278 15.847 20.6883 16.2877 20.073C17.5358 18.3306 18.8219 16.769 20.4312 15.3373Z\" fill=\"#002A45\"><\/path><\/g><defs><clipPath id=\"clip0_6615_499\"><rect width=\"22\" height=\"22\" fill=\"white\" transform=\"translate(10 10)\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9787e2 animated-slow elementor-widget elementor-widget-counter\" data-id=\"f9787e2\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:300,&quot;_animation_mobile&quot;:&quot;none&quot;}\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<span class=\"elementor-counter-title\">Increase In Top 10 Ranking Keywords<\/span>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"171\" data-from-value=\"0\">171<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+ <\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t<div class=\"e-load-more-anchor\" data-page=\"1\" data-max-page=\"2\" data-next-page=\"https:\/\/digitalnomadshq.com.au\/our-work\/?e-page-9da8a5d=2\"><\/div>\n\t\t\t\t<nav class=\"elementor-pagination\" aria-label=\"Pagination\">\n\t\t\t<span aria-current=\"page\" class=\"page-numbers current\"><span class=\"elementor-screen-only\">Page<\/span>1<\/span>\n<a class=\"page-numbers\" href=\"https:\/\/digitalnomadshq.com.au\/our-work\/?e-page-9da8a5d=2\"><span class=\"elementor-screen-only\">Page<\/span>2<\/a>\t\t<\/nav>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1783624972\" role=\"tabpanel\" aria-labelledby=\"portfolio\" data-tab-index=\"2\" style=\"--n-tabs-title-order: 2;\" class=\" elementor-element elementor-element-1a55786 e-con-full e-flex e-con e-child\" data-id=\"1a55786\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-43cad82 elementor-widget elementor-widget-menu-anchor\" data-id=\"43cad82\" data-element_type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"portfolio\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fc14ea2 elementor-widget elementor-widget-menu-anchor\" data-id=\"fc14ea2\" data-element_type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"portfolio\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d8da9ef elementor-widget elementor-widget-menu-anchor\" data-id=\"d8da9ef\" data-element_type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"portfolio\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e35c038 elementor-grid-2 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-widget elementor-widget-loop-grid\" data-id=\"e35c038\" data-element_type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;34400&quot;,&quot;columns&quot;:2,&quot;pagination_type&quot;:&quot;numbers&quot;,&quot;pagination_load_type&quot;:&quot;ajax&quot;,&quot;auto_scroll&quot;:&quot;yes&quot;,&quot;_skin&quot;:&quot;post&quot;,&quot;columns_tablet&quot;:&quot;2&quot;,&quot;columns_mobile&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;[data-elementor-type=\\&quot;loop-item\\&quot;]&quot;,&quot;row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-grid.post\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-loop-container elementor-grid\" role=\"list\">\n\t\t<style id=\"loop-34400\">.elementor-34400 .elementor-element.elementor-element-8c1664d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:15px 15px;--row-gap:15px;--column-gap:15px;--flex-wrap:wrap;--border-radius:032px 032px 032px 032px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:32px;--padding-bottom:0px;--padding-left:0px;--padding-right:32px;}.elementor-34400 .elementor-element.elementor-element-8c1664d:not(.elementor-motion-effects-element-type-background), .elementor-34400 .elementor-element.elementor-element-8c1664d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9d3f197 );}.elementor-34400 .elementor-element.elementor-element-307f4cb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:nowrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34400 .elementor-element.elementor-element-0baac24{--display:flex;--justify-content:space-between;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:32px;--padding-left:32px;--padding-right:0px;}.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-icon{width:14px;}.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-icon i{font-size:14px;}.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-text, .elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-text a{color:var( --e-global-color-085ef38 );}.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-item{font-family:var( --e-global-typography-3dd8e44-font-family ), Sans-serif;font-size:var( --e-global-typography-3dd8e44-font-size );font-weight:var( --e-global-typography-3dd8e44-font-weight );text-transform:var( --e-global-typography-3dd8e44-text-transform );line-height:var( --e-global-typography-3dd8e44-line-height );letter-spacing:var( --e-global-typography-3dd8e44-letter-spacing );}.elementor-34400 .elementor-element.elementor-element-3697b42 .elementor-heading-title{font-family:\"Barlow Condensed\", Sans-serif;font-size:52px;font-weight:500;line-height:46px;color:var( --e-global-color-0357f8a );}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button{background-color:var( --e-global-color-4560556 );font-family:var( --e-global-typography-1dad2a6-font-family ), Sans-serif;font-size:var( --e-global-typography-1dad2a6-font-size );font-weight:var( --e-global-typography-1dad2a6-font-weight );text-transform:var( --e-global-typography-1dad2a6-text-transform );line-height:var( --e-global-typography-1dad2a6-line-height );fill:var( --e-global-color-0357f8a );color:var( --e-global-color-0357f8a );border-style:none;border-radius:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button:hover, .elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button:focus{background-color:var( --e-global-color-4560556 );color:var( --e-global-color-primary );}.elementor-34400 .elementor-element.elementor-element-52ad55c > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button-content-wrapper{flex-direction:row-reverse;}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button .elementor-button-content-wrapper{gap:15px;}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button:hover svg, .elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button:focus svg{fill:var( --e-global-color-primary );}.elementor-34400 .elementor-element.elementor-element-20632ad{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-34400 .elementor-element.elementor-element-a6913a3 img{width:300px;height:300px;object-fit:cover;object-position:top center;border-radius:16px 16px 0px 0px;}@media(max-width:1024px){.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-item{font-size:var( --e-global-typography-3dd8e44-font-size );line-height:var( --e-global-typography-3dd8e44-line-height );letter-spacing:var( --e-global-typography-3dd8e44-letter-spacing );}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button{font-size:var( --e-global-typography-1dad2a6-font-size );line-height:var( --e-global-typography-1dad2a6-line-height );}}@media(max-width:767px){.elementor-34400 .elementor-element.elementor-element-8c1664d{--padding-top:16px;--padding-bottom:0px;--padding-left:0px;--padding-right:16px;}.elementor-34400 .elementor-element.elementor-element-0baac24{--padding-top:0px;--padding-bottom:16px;--padding-left:16px;--padding-right:0px;}.elementor-34400 .elementor-element.elementor-element-e956b80 .elementor-icon-list-item{font-size:var( --e-global-typography-3dd8e44-font-size );line-height:var( --e-global-typography-3dd8e44-line-height );letter-spacing:var( --e-global-typography-3dd8e44-letter-spacing );}.elementor-34400 .elementor-element.elementor-element-3697b42 .elementor-heading-title{font-size:32px;line-height:38px;}.elementor-34400 .elementor-element.elementor-element-52ad55c .elementor-button{font-size:var( --e-global-typography-1dad2a6-font-size );line-height:var( --e-global-typography-1dad2a6-line-height );}.elementor-34400 .elementor-element.elementor-element-20632ad{--justify-content:flex-end;}.elementor-34400 .elementor-element.elementor-element-a6913a3 img{height:200px;object-fit:contain;object-position:bottom center;}}@media(min-width:768px){.elementor-34400 .elementor-element.elementor-element-0baac24{--width:45%;}.elementor-34400 .elementor-element.elementor-element-20632ad{--width:55%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-40466 post-40466 portfolio type-portfolio status-publish hentry category-real-estate tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Real Estate<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/next-property-group\/\">Next Property Group<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/next-property-group\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/next-property-group\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"651\" height=\"800\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Next-Property-Group-Mockup.jpg\" class=\"attachment-full size-full wp-image-40467\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Next-Property-Group-Mockup.jpg 651w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Next-Property-Group-Mockup-244x300.jpg 244w\" sizes=\"(max-width: 651px) 100vw, 651px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-40477 post-40477 portfolio type-portfolio status-publish hentry category-accounting-finance tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Accounting &amp; Finance<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/attrib-solutions\/\">Attrib Solutions<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/attrib-solutions\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/attrib-solutions\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1680\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Attrib-Solutions-Website-Mockup.jpg\" class=\"attachment-full size-full wp-image-40479\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Attrib-Solutions-Website-Mockup.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Attrib-Solutions-Website-Mockup-250x300.jpg 250w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Attrib-Solutions-Website-Mockup-853x1024.jpg 853w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Attrib-Solutions-Website-Mockup-768x922.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Attrib-Solutions-Website-Mockup-1280x1536.jpg 1280w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-40491 post-40491 portfolio type-portfolio status-publish hentry category-building-construction tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Building &amp; Construction<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/shine-building\/\">Shine Building<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/shine-building\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/shine-building\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1698\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Shine-BUilding-Mockup.jpg\" class=\"attachment-full size-full wp-image-40492\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Shine-BUilding-Mockup.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Shine-BUilding-Mockup-247x300.jpg 247w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Shine-BUilding-Mockup-844x1024.jpg 844w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Shine-BUilding-Mockup-768x931.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Shine-BUilding-Mockup-1266x1536.jpg 1266w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-40522 post-40522 portfolio type-portfolio status-publish hentry category-saas tag-branding-logo tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">SaaS<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/opms\/\">OPMS<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/opms\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/opms\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1354\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/OPMS-Mockup.jpg\" class=\"attachment-full size-full wp-image-40523\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/OPMS-Mockup.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/OPMS-Mockup-300x290.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/OPMS-Mockup-1024x990.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/OPMS-Mockup-768x743.jpg 768w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-40787 post-40787 portfolio type-portfolio status-publish hentry category-hospitality-tourism tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Hospitality &amp; Tourism<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/club-charlestown\/\">Club Charlestown<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/club-charlestown\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/club-charlestown\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1161\" height=\"1278\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/cover-image.jpg\" class=\"attachment-full size-full wp-image-40788\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/cover-image.jpg 1161w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/cover-image-273x300.jpg 273w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/cover-image-930x1024.jpg 930w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/cover-image-768x845.jpg 768w\" sizes=\"(max-width: 1161px) 100vw, 1161px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-34152 post-34152 portfolio type-portfolio status-publish has-post-thumbnail hentry category-small-business tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Small Business<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/accelerate-it-solutions\/\">Accelerate IT Solutions<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/accelerate-it-solutions\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/accelerate-it-solutions\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1259\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/accelerateITmockup-1.jpg\" class=\"attachment-full size-full wp-image-36528\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/accelerateITmockup-1.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/accelerateITmockup-1-300x270.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/accelerateITmockup-1-1024x921.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/accelerateITmockup-1-768x691.jpg 768w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-40449 post-40449 portfolio type-portfolio status-publish hentry category-small-business tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Small Business<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/athletic-gym-recovery\/\">Athletic Gym &amp; Recovery<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/athletic-gym-recovery\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/athletic-gym-recovery\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"689\" height=\"834\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Screenshot-2026-01-06-190243.png\" class=\"attachment-full size-full wp-image-40450\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Screenshot-2026-01-06-190243.png 689w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2026\/01\/Screenshot-2026-01-06-190243-248x300.png 248w\" sizes=\"(max-width: 689px) 100vw, 689px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-35164 post-35164 portfolio type-portfolio status-publish has-post-thumbnail hentry category-healthcare-medical tag-paid-media tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Healthcare &amp; Medical<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/lifeflight\/\">LifeFlight<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/lifeflight\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/lifeflight\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1620\" height=\"1457\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Lifeflight-mockup2-2.jpg\" class=\"attachment-full size-full wp-image-36493\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Lifeflight-mockup2-2.jpg 1620w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Lifeflight-mockup2-2-300x270.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Lifeflight-mockup2-2-1024x921.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Lifeflight-mockup2-2-768x691.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Lifeflight-mockup2-2-1536x1381.jpg 1536w\" sizes=\"(max-width: 1620px) 100vw, 1620px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-34381 post-34381 portfolio type-portfolio status-publish has-post-thumbnail hentry category-building-construction tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Building &amp; Construction<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/mackay-sons\/\">Mackay &#038; Sons<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/mackay-sons\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/mackay-sons\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1259\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mackayandsonsmockup-1.jpg\" class=\"attachment-full size-full wp-image-36508\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mackayandsonsmockup-1.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mackayandsonsmockup-1-300x270.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mackayandsonsmockup-1-1024x921.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/mackayandsonsmockup-1-768x691.jpg 768w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-34428 post-34428 portfolio type-portfolio status-publish has-post-thumbnail hentry category-real-estate tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">Real Estate<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/elite-lifestyle-properties\/\">Elite Lifestyle Properties<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/elite-lifestyle-properties\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/elite-lifestyle-properties\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1259\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/ELPmockup-1.jpg\" class=\"attachment-full size-full wp-image-36506\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/ELPmockup-1.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/ELPmockup-1-300x270.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/ELPmockup-1-1024x921.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/ELPmockup-1-768x691.jpg 768w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-34453 post-34453 portfolio type-portfolio status-publish has-post-thumbnail hentry category-ndis tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">NDIS<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/steps-group\/\">STEPS Group<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/steps-group\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/steps-group\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1259\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Stepsgroupmockup-1.jpg\" class=\"attachment-full size-full wp-image-36504\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Stepsgroupmockup-1.jpg 1400w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Stepsgroupmockup-1-300x270.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Stepsgroupmockup-1-1024x921.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/Stepsgroupmockup-1-768x691.jpg 768w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"34400\" class=\"elementor elementor-34400 e-loop-item e-loop-item-36680 post-36680 portfolio type-portfolio status-publish has-post-thumbnail hentry category-ecommerce tag-web-design\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-8c1664d e-con-full e-flex e-con e-parent\" data-id=\"8c1664d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307f4cb e-con-full e-flex e-con e-child\" data-id=\"307f4cb\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0baac24 e-con-full e-flex e-con e-child\" data-id=\"0baac24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e956b80 elementor-widget elementor-widget-post-info\" data-id=\"e956b80\" data-element_type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-ac93777 elementor-inline-item\" itemprop=\"about\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-terms\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-post-info__terms-list\">\n\t\t\t\t<span class=\"elementor-post-info__terms-list-item\">eCommerce<\/span>\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3697b42 elementor-widget elementor-widget-heading\" data-id=\"3697b42\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/kaikoa-designs\/\">Kaikoa Designs<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52ad55c post--learn-more-btn elementor-widget elementor-widget-button\" data-id=\"52ad55c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/kaikoa-designs\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-3cb4c5e4-5a71-402e-b369-fe56da8ce801\" data-name=\"Layer 1\" viewBox=\"0 0 8.305 15.027\"><path d=\"M7.859,8.363L1.442,14.779c-.315.315-.82.331-1.155.038-.368-.323-.386-.889-.039-1.234l5.24-5.22.128-.122c.399-.383.411-1.016.029-1.414l-.156-.163L.249,1.444C-.098,1.098-.08.532.288.21c.335-.294.84-.277,1.155.038l6.416,6.416.138.132c.423.405.409,1.085-.03,1.472l-.108.095Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20632ad e-con-full e-flex e-con e-child\" data-id=\"20632ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6913a3 elementor-widget elementor-widget-image\" data-id=\"a6913a3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/digitalnomadshq.com.au\/portfolio\/kaikoa-designs\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1631\" height=\"1457\" src=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/kaikoamockup.jpg\" class=\"attachment-full size-full wp-image-37199\" alt=\"\" srcset=\"https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/kaikoamockup.jpg 1631w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/kaikoamockup-300x268.jpg 300w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/kaikoamockup-1024x915.jpg 1024w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/kaikoamockup-768x686.jpg 768w, https:\/\/digitalnomadshq.com.au\/wp-content\/uploads\/2025\/08\/kaikoamockup-1536x1372.jpg 1536w\" sizes=\"(max-width: 1631px) 100vw, 1631px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t<div class=\"e-load-more-anchor\" data-page=\"1\" data-max-page=\"2\" data-next-page=\"https:\/\/digitalnomadshq.com.au\/our-work\/?e-page-e35c038=2\"><\/div>\n\t\t\t\t<nav class=\"elementor-pagination\" aria-label=\"Pagination\">\n\t\t\t<span aria-current=\"page\" class=\"page-numbers current\"><span class=\"elementor-screen-only\">Page<\/span>1<\/span>\n<a class=\"page-numbers\" href=\"https:\/\/digitalnomadshq.com.au\/our-work\/?e-page-e35c038=2\"><span class=\"elementor-screen-only\">Page<\/span>2<\/a>\t\t<\/nav>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-144ddb3 elementor-widget elementor-widget-html\" data-id=\"144ddb3\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    function activateTabFromHash() {\n        \/\/ Get the hash from the URL (e.g., #portfolio)\n        const hash = window.location.hash;\n        \n        if (hash) {\n            \/\/ Remove the '#' to get the ID (e.g., portfolio)\n            const targetId = hash.substring(1);\n            \n            \/\/ Find the button with that ID\n            const tabButton = document.getElementById(targetId);\n            \n            \/\/ Check if the element exists and is an Elementor tab title\n            if (tabButton && tabButton.classList.contains('e-n-tab-title')) {\n                \/\/ Small delay to ensure Elementor's internal scripts are ready\n                setTimeout(() => {\n                    tabButton.click();\n                    \n                    \/\/ Optional: Scroll to the tab widget if you want it in view\n                    tabButton.scrollIntoView({ behavior: 'smooth', block: 'start' });\n                }, 300);\n            }\n        }\n    }\n\n    \/\/ Run on initial page load\n    activateTabFromHash();\n\n    \/\/ Run if the hash changes without a page refresh\n    window.addEventListener('hashchange', activateTabFromHash);\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t<section class=\"elementor-element elementor-element-df44605 e-flex e-con-boxed e-con e-parent\" data-id=\"df44605\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1681d22 e-con-full e-flex e-con e-child\" data-id=\"1681d22\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-42d4791 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"42d4791\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Fuel your next campaign\u2014let\u2019s get <span style=\"color: var(--e-global-color-text)\">started<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ae3969f elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"ae3969f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>From idea to impact \u2014 launch your campaign in minutes and start engaging your audience without the wait.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f8aa30 elementor-align-center multi-color-ripple white--btn-dn-arrow elementor-mobile-align-center elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"6f8aa30\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/digitalnomadshq.com.au\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Let's Work<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Our Work Case Studies portfolio Filter By&#8230;Accounting &amp; FinanceAutomotiveBuilding &amp; ConstructionDigital MarketingeCommerceFranchiseHealthcare &amp; MedicalHospitality &amp; TourismNDISNewsReal EstateSaaSSEOSmall BusinessTradesWeb Design Hospitality &amp; Tourism Learn More eCommerce Learn More Building &amp; Construction Learn More eCommerce Learn More Franchise Learn More Trades Learn More Building &amp; Construction Learn More Accounting &amp; Finance Learn More Trades Learn More Automotive [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"class_list":["post-31109","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/pages\/31109","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/comments?post=31109"}],"version-history":[{"count":208,"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/pages\/31109\/revisions"}],"predecessor-version":[{"id":42593,"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/pages\/31109\/revisions\/42593"}],"wp:attachment":[{"href":"https:\/\/digitalnomadshq.com.au\/wp-json\/wp\/v2\/media?parent=31109"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}