{"id":70,"date":"2018-12-06T15:55:15","date_gmt":"2018-12-06T15:55:15","guid":{"rendered":"https:\/\/demo.webbyannie.com\/exempel\/2\/?page_id=70"},"modified":"2025-03-11T11:59:50","modified_gmt":"2025-03-11T15:59:50","slug":"about-us","status":"publish","type":"page","link":"https:\/\/burgermeistermiami.com\/about-us\/","title":{"rendered":"About us"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"70\" class=\"elementor elementor-70\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aae00af e-con-full e-flex e-con e-parent\" data-id=\"aae00af\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-f475441 e-con-full e-flex e-con e-child\" data-id=\"f475441\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5882217 elementor-widget elementor-widget-heading\" data-id=\"5882217\" 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<h1 class=\"elementor-heading-title elementor-size-default\">About us<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-684a506 elementor-widget elementor-widget-heading\" data-id=\"684a506\" 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<h3 class=\"elementor-heading-title elementor-size-default\">The Burgermeister Story<\/h3>\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-b557232 e-con-full e-flex e-con e-child\" data-id=\"b557232\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:1931,&quot;url&quot;:&quot;https:\\\/\\\/burgermeistermiami.com\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/DSC08155.jpg&quot;},{&quot;id&quot;:1918,&quot;url&quot;:&quot;https:\\\/\\\/burgermeistermiami.com\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/AGRIECO-01177.jpg&quot;},{&quot;id&quot;:1917,&quot;url&quot;:&quot;https:\\\/\\\/burgermeistermiami.com\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/ArtBasel-2412.jpg&quot;},{&quot;id&quot;:1907,&quot;url&quot;:&quot;https:\\\/\\\/burgermeistermiami.com\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/AGRIECO-01202.jpg&quot;}],&quot;background_slideshow_slide_transition&quot;:&quot;slide_up&quot;,&quot;background_slideshow_transition_duration&quot;:1000,&quot;background_slideshow_slide_duration&quot;:2000,&quot;background_slideshow_loop&quot;:&quot;yes&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6f40936 e-con-full e-flex e-con e-parent\" data-id=\"6f40936\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cf6acfa elementor-widget elementor-widget-html\" data-id=\"cf6acfa\" 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<!-- START: Single DIV with an always-filled infinite marquee -->\n<div id=\"myAlwaysFilledMarquee\" style=\"\n  width: 100%;\n  overflow: hidden;\n  display: flex;          \/* Using flex to center the text vertically *\/\n  align-items: center;    \n  background: #FBBD21;\n  white-space: nowrap;\n  box-sizing: border-box;\n  position: relative;\n  visibility: hidden;     \/* Hide until JS sets it up *\/\n\">\n  <!-- Initial text span (it will auto fill with multiple copies in JS). Change the text as you like. -->\n  <span id=\"textToRepeat\" style=\"display: inline-block;\">\n    BIGGER IS BETTER, SIZE DOES MATTER.\n  <\/span>\n  \n  <style>\n    \/* Base styling for the marquee container *\/\n    #myAlwaysFilledMarquee {\n      font-family: 'Gamay-editorial', sans-serif;\n      font-weight: 700;\n      font-size: 120px;\n      line-height: 144px; \/* Explicit line-height for consistency *\/\n      padding-bottom: 10px; \/* Adjust if needed; may not be necessary with flex centering *\/\n    }\n\n    \/* Responsive adjustments *\/\n    @media (max-width: 1024px) {\n      #myAlwaysFilledMarquee {\n        font-size: 80px;\n        line-height: 96px;\n        padding-bottom: 8px;\n      }\n    }\n    @media (max-width: 768px) {\n      #myAlwaysFilledMarquee {\n        font-size: 40px;\n        line-height: 48px;\n        padding-bottom: 4px;\n      }\n    }\n\n    \/* Scope all rules to this container *\/\n    #myAlwaysFilledMarquee * {\n      margin: 0;\n      padding: 0;\n      box-sizing: border-box;\n    }\n\n    \/* Keyframes: move text from translateX(0) to translateX(-50%) \n       so the second half of repeated text lines up seamlessly. *\/\n    @keyframes marqueeAnimation {\n      0%   { transform: translateX(0); }\n      100% { transform: translateX(-50%); }\n    }\n\n    #myAlwaysFilledMarquee .marquee-content {\n      display: inline-block;\n      animation: marqueeAnimation 10s linear infinite;\n      -webkit-font-smoothing: antialiased;\n      -moz-osx-font-smoothing: grayscale;\n    }\n\n    \/* \n      Firefox-only fix: \n      Apply a negative bottom margin to shift the text downward in Firefox.\n      This uses the @-moz-document url-prefix() hack which only Firefox applies.\n    *\/\n    @-moz-document url-prefix() {\n      #textToRepeat {\n        margin-bottom: -20px!important; \/* Adjust as needed *\/\n        margin-top: 20px!important;\n      }\n    }\n  <\/style>\n\n  <script>\n    (function() {\n      var marqueeContainer = document.getElementById(\"myAlwaysFilledMarquee\");\n      var textSpan = document.getElementById(\"textToRepeat\");\n      var originalText = textSpan.textContent.trim();\n\n      \/\/ Create a temporary span to measure one instance of the text with a trailing non-breaking space.\n      var tempSpan = document.createElement(\"span\");\n      tempSpan.style.display = \"inline-block\";\n      tempSpan.style.whiteSpace = \"nowrap\";\n      tempSpan.textContent = originalText + \"\\u00A0\";\n      marqueeContainer.appendChild(tempSpan);\n      var copyWidth = tempSpan.offsetWidth;\n      marqueeContainer.removeChild(tempSpan);\n\n      \/\/ Calculate how many copies are needed to fill (or exceed) the container's width.\n      var containerWidth = marqueeContainer.offsetWidth;\n      var copiesNeeded = Math.ceil(containerWidth \/ copyWidth);\n\n      \/\/ Build one block of repeated text.\n      var block = \"\";\n      for (var i = 0; i < copiesNeeded; i++) {\n        block += originalText + \"\\u00A0\";\n      }\n\n      \/\/ Duplicate the block so that the marquee-content has two identical halves.\n      var finalContent = block + block;\n\n      \/\/ Set the innerHTML with a span that has the marquee-content class.\n      textSpan.innerHTML = '<span class=\"marquee-content\">' + finalContent + '<\/span>';\n\n      \/\/ Now that everything is set up, make the container visible.\n      marqueeContainer.style.visibility = \"visible\";\n    })();\n  <\/script>\n<\/div>\n<!-- END: Single DIV with an always-filled infinite marquee -->\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-fe54925 e-con-full e-flex e-con e-parent\" data-id=\"fe54925\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-0652e56 e-con-full e-flex e-con e-child\" data-id=\"0652e56\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6e3db58 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"6e3db58\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_delay&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35130ed elementor-widget elementor-widget-heading\" data-id=\"35130ed\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Miami also gave me something even better than burgers<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c4d4393 elementor-widget elementor-widget-text-editor\" data-id=\"c4d4393\" 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>\u2014it\u2019s where I met Fernanda, my brilliant, passionate, and Brazilian powerhouse of a wife. Together, we poured our hearts into this family-owned business, and with a lot of dedication (and a ton of perfectly grilled patties), Burgermeister became the #1 burger spot with two vibrant locations, South Beach and Brickell.<\/p>\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-b7cf952 e-con-full e-flex e-con e-child\" data-id=\"b7cf952\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e3d3df8 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"e3d3df8\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1188a04 elementor-widget elementor-widget-heading\" data-id=\"1188a04\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Hey, burger lovers! <\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2cc581c elementor-widget elementor-widget-text-editor\" data-id=\"2cc581c\" 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>I\u2019m Alex Ringleb, and for the past 20 years, I\u2019ve been obsessed with crafting the perfect burger\u2014seriously, it\u2019s a lifelong love affair. My friends and family have raved about my creations for years, so they finally pushed me to take the leap and share them with the world. That\u2019s how Burgermeister was born\u2014right here in Miami Beach, where the sun shines, the vibes are strong, and now, the burgers are legendary.<\/p>\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<div class=\"elementor-element elementor-element-eb6db0b e-con-full e-flex e-con e-parent\" data-id=\"eb6db0b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ccd4d99 e-con-full e-flex e-con e-child\" data-id=\"ccd4d99\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-54238bc e-flex e-con-boxed e-con e-child\" data-id=\"54238bc\" data-element_type=\"container\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_offset&quot;:100,&quot;sticky_parent&quot;:&quot;yes&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b108237 elementor-widget elementor-widget-heading\" data-id=\"b108237\" 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<h3 class=\"elementor-heading-title elementor-size-default\">At Burgermeister, <\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-149dc96 elementor-widget elementor-widget-heading\" data-id=\"149dc96\" 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\">We don't like average.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c7903c6 elementor-widget elementor-widget-text-editor\" data-id=\"c7903c6\" 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>Burgers that hit different. We keep it real with the freshest ingredients, an 8oz handcrafted beef patty made from chuck, brisket, and short rib, all hugged by a soft potato bun. Feeling plant-based? We got fire vegan options. Craving crunch? Our crispy chicken sandwiches don\u2019t play. No matter what you\u2019re into, every bite is stacked with flavor. And because good food deserves the right vibe, expect laid-back Miami energy, great service, and a spot that feels like home\u2014just with way better burgers.<\/p>\t\t\t\t\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<div class=\"elementor-element elementor-element-6af8a4d e-con-full e-flex e-con e-child\" data-id=\"6af8a4d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39a433d elementor-widget elementor-widget-gallery\" data-id=\"39a433d\" data-element_type=\"widget\" data-settings=\"{&quot;gallery_layout&quot;:&quot;masonry&quot;,&quot;columns&quot;:3,&quot;columns_mobile&quot;:2,&quot;lazyload&quot;:&quot;yes&quot;,&quot;columns_tablet&quot;:2,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;content_hover_animation&quot;:&quot;fade-in&quot;}\" data-widget_type=\"gallery.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/1-768x1365.jpg\" data-width=\"768\" data-height=\"1365\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-01212-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/5-768x1365.jpg\" data-width=\"768\" data-height=\"1365\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/Feeling-Blue-2024-768x1365.jpg\" data-width=\"768\" data-height=\"1365\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-00910-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-00984-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-01054-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-01175-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-00893-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-00986-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-01201-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item elementor-animated-content\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2025\/03\/AGRIECO-01008-768x1152.jpg\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\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<div class=\"elementor-element elementor-element-fa9fe51 e-flex e-con-boxed e-con e-parent\" data-id=\"fa9fe51\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;curve&quot;,&quot;shape_divider_bottom_negative&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"true\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3576ba1 elementor-widget elementor-widget-heading\" data-id=\"3576ba1\" 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\">Our Mission?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5580e47 elementor-headline--style-highlight elementor-widget elementor-widget-animated-headline\" data-id=\"5580e47\" data-element_type=\"widget\" data-settings=\"{&quot;marker&quot;:&quot;underline&quot;,&quot;highlighted_text&quot;:&quot;the best damn burger&quot;,&quot;headline_style&quot;:&quot;highlight&quot;,&quot;highlight_animation_duration&quot;:1200}\" data-widget_type=\"animated-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 class=\"elementor-headline\">\n\t\t\t\t\t<span class=\"elementor-headline-plain-text elementor-headline-text-wrapper\">To serve  <\/span>\n\t\t\t\t<span class=\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\">\n\t\t\t\t\t<span class=\"elementor-headline-dynamic-text elementor-headline-text-active\">the best damn burger<\/span>\n\t\t\t\t<\/span>\n\t\t\t\t\t<span class=\"elementor-headline-plain-text elementor-headline-text-wrapper\">you\u2019ve ever had. <\/span>\n\t\t\t\t\t<\/h3>\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-543d182 elementor-widget elementor-widget-text-editor\" data-id=\"543d182\" 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>One bite, and you\u2019ll get it\u2014we\u2019re not just making burgers, we\u2019re creating a full-on burger love affair.<br \/>Grab a burger and let\u2019s make it official. \ud83c\udf54\ud83d\udd25<\/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-64db7df elementor-align-center elementor-widget elementor-widget-button\" data-id=\"64db7df\" 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=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjMxMDkiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D\">\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\">Order now<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>About us The Burgermeister Story BIGGER IS BETTER, SIZE DOES MATTER. Miami also gave me something even better than burgers \u2014it\u2019s where I met Fernanda, my brilliant, passionate, and Brazilian powerhouse of a wife. Together, we poured our hearts into this family-owned business, and with a lot of dedication (and a ton of perfectly grilled [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-70","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>About us - Burgermeister<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/burgermeistermiami.com\/about-us\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"About us - Burgermeister\" \/>\n<meta property=\"og:description\" content=\"About us The Burgermeister Story BIGGER IS BETTER, SIZE DOES MATTER. Miami also gave me something even better than burgers \u2014it\u2019s where I met Fernanda, my brilliant, passionate, and Brazilian powerhouse of a wife. Together, we poured our hearts into this family-owned business, and with a lot of dedication (and a ton of perfectly grilled [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/burgermeistermiami.com\/about-us\/\" \/>\n<meta property=\"og:site_name\" content=\"Burgermeister\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-11T15:59:50+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/burgermeistermiami.com\/about-us\/\",\"url\":\"https:\/\/burgermeistermiami.com\/about-us\/\",\"name\":\"About us - Burgermeister\",\"isPartOf\":{\"@id\":\"https:\/\/burgermeistermiami.com\/#website\"},\"datePublished\":\"2018-12-06T15:55:15+00:00\",\"dateModified\":\"2025-03-11T15:59:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/burgermeistermiami.com\/about-us\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/burgermeistermiami.com\/about-us\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/burgermeistermiami.com\/about-us\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/burgermeistermiami.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About us\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/burgermeistermiami.com\/#website\",\"url\":\"https:\/\/burgermeistermiami.com\/\",\"name\":\"Burgermeister\",\"description\":\"Miami\u2019s Best Damn Burgers \u2013 No Debate.\",\"publisher\":{\"@id\":\"https:\/\/burgermeistermiami.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/burgermeistermiami.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/burgermeistermiami.com\/#organization\",\"name\":\"Burgermeister\",\"url\":\"https:\/\/burgermeistermiami.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/burgermeistermiami.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2020\/10\/FullLogo-Black.png\",\"contentUrl\":\"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2020\/10\/FullLogo-Black.png\",\"width\":1920,\"height\":320,\"caption\":\"Burgermeister\"},\"image\":{\"@id\":\"https:\/\/burgermeistermiami.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"About us - Burgermeister","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/burgermeistermiami.com\/about-us\/","og_locale":"en_US","og_type":"article","og_title":"About us - Burgermeister","og_description":"About us The Burgermeister Story BIGGER IS BETTER, SIZE DOES MATTER. Miami also gave me something even better than burgers \u2014it\u2019s where I met Fernanda, my brilliant, passionate, and Brazilian powerhouse of a wife. Together, we poured our hearts into this family-owned business, and with a lot of dedication (and a ton of perfectly grilled [&hellip;]","og_url":"https:\/\/burgermeistermiami.com\/about-us\/","og_site_name":"Burgermeister","article_modified_time":"2025-03-11T15:59:50+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/burgermeistermiami.com\/about-us\/","url":"https:\/\/burgermeistermiami.com\/about-us\/","name":"About us - Burgermeister","isPartOf":{"@id":"https:\/\/burgermeistermiami.com\/#website"},"datePublished":"2018-12-06T15:55:15+00:00","dateModified":"2025-03-11T15:59:50+00:00","breadcrumb":{"@id":"https:\/\/burgermeistermiami.com\/about-us\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/burgermeistermiami.com\/about-us\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/burgermeistermiami.com\/about-us\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/burgermeistermiami.com\/"},{"@type":"ListItem","position":2,"name":"About us"}]},{"@type":"WebSite","@id":"https:\/\/burgermeistermiami.com\/#website","url":"https:\/\/burgermeistermiami.com\/","name":"Burgermeister","description":"Miami\u2019s Best Damn Burgers \u2013 No Debate.","publisher":{"@id":"https:\/\/burgermeistermiami.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/burgermeistermiami.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/burgermeistermiami.com\/#organization","name":"Burgermeister","url":"https:\/\/burgermeistermiami.com\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/burgermeistermiami.com\/#\/schema\/logo\/image\/","url":"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2020\/10\/FullLogo-Black.png","contentUrl":"https:\/\/burgermeistermiami.com\/wp-content\/uploads\/2020\/10\/FullLogo-Black.png","width":1920,"height":320,"caption":"Burgermeister"},"image":{"@id":"https:\/\/burgermeistermiami.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/pages\/70","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/comments?post=70"}],"version-history":[{"count":0,"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/pages\/70\/revisions"}],"wp:attachment":[{"href":"https:\/\/burgermeistermiami.com\/wp-json\/wp\/v2\/media?parent=70"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}