{"id":112,"date":"2022-02-07T07:35:15","date_gmt":"2022-02-07T07:35:15","guid":{"rendered":"http:\/\/kralovstviseveru.cz\/?page_id=112"},"modified":"2023-03-13T09:12:29","modified_gmt":"2023-03-13T09:12:29","slug":"home","status":"publish","type":"page","link":"http:\/\/maringotkaulesa.cz\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"112\" class=\"elementor elementor-112\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5c841a7 elementor-section-full_width elementor-section-height-min-height elementor-section-stretched elementor-hidden-mobile elementor-section-height-default elementor-section-items-middle elementor-invisible\" data-id=\"5c841a7\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;gradient&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;animation&quot;:&quot;fadeInDown&quot;,&quot;background_motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;background_motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-361094f\" data-id=\"361094f\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1d73ba5 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-html\" data-id=\"1d73ba5\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n\"use strict\";\nOB_ready(OB_doWhenReady);\n\nfunction OB_doWhenReady() {\n    \/\/ localize everything\n    var ooohBoi = window.ooohBoi || {};\n    \/\/ local scope variables\n    ooohBoi.prev_scroll_pos = window.scrollY || document.body.scrollTop;\n    ooohBoi.cur_scroll_pos;\n    ooohBoi.scroll_direction = 'init';\n    ooohBoi.prev_scroll_direction = 0;\n    ooohBoi.header = document.querySelector('#show-hide-header'); \/\/ header ID\n    ooohBoi.header_pos = {\n        top: ooohBoi.header.offsetTop,\n        left: ooohBoi.header.offsetLeft,\n    };\n    ooohBoi.header_height = OB_outerHeight(ooohBoi.header);\n    \/\/ show-hide header with ease\/transition\n    ooohBoi.header.style.transition = 'all 0.3s ease';\n    \/\/ update header height on window resize\n    ooohBoi.updateHeaderHeight = function() {\n        ooohBoi.header_height = OB_outerHeight(ooohBoi.header);\n    }\n    \/\/ listen \"scroll\" event and decide what to do\n    ooohBoi.checkScroll = function() {\n        ooohBoi.cur_scroll_pos = window.scrollY || document.body.scrollTop;\n\n        if (ooohBoi.cur_scroll_pos > ooohBoi.prev_scroll_pos) ooohBoi.scroll_direction = 'down';\n        else if (ooohBoi.cur_scroll_pos < ooohBoi.prev_scroll_pos) ooohBoi.scroll_direction = 'up';\n\n        if (ooohBoi.scroll_direction !== ooohBoi.prev_scroll_direction) ooohBoi.toggleHeader(ooohBoi.scroll_direction, ooohBoi.cur_scroll_pos);\n        ooohBoi.prev_scroll_pos = ooohBoi.cur_scroll_pos;\n    }\n    \/\/ add or remove class based on the scrolling direction\n    ooohBoi.toggleHeader = function(scroll_direction, scroll_current) {\n        if (scroll_direction === 'down' && scroll_current > ooohBoi.header_height) {\n            OB_addClass(ooohBoi.header, 'im-hidden'); \/\/ for styling\n            ooohBoi.header.style.top = -1 * ooohBoi.header_height + \"px\";\n            ooohBoi.prev_scroll_direction = scroll_direction;\n        } else if (scroll_direction === 'up') {\n            OB_removeClass(ooohBoi.header, 'im-hidden');\n            ooohBoi.header.style.top = ooohBoi.header_pos.top + \"px\";\n            ooohBoi.prev_scroll_direction = scroll_direction;\n        }\n    }\n    \/\/ listen \"scroll\" and \"resize\" window events\n    window.addEventListener('scroll', ooohBoi.checkScroll);\n    window.addEventListener('resize', ooohBoi.updateHeaderHeight);\n}\n\nfunction OB_outerHeight(el) {\n    var height = el.offsetHeight;\n    var style = getComputedStyle(el);\n    height += parseInt(style.marginTop) + parseInt(style.marginBottom);\n    return height;\n}\n\nfunction OB_addClass(el, className) {\n    if (el.classList) el.classList.add(className);\n    else {\n        var current = el.className,\n            found = false;\n        var all = current.split(' ');\n        for (var i = 0; i < all.length, !found; i++) found = all[i] === className;\n        if (!found) {\n            if (current === '') el.className = className;\n            else el.className += ' ' + className;\n        }\n    }\n}\n\nfunction OB_removeClass(el, className) {\n    if (el.classList) el.classList.remove(className);\n    else el.className = el.className.replace(new RegExp('(^|\\\\b)' + className.split(' ').join('|') + '(\\\\b|$)', 'gi'), ' ');\n}\n\nfunction OB_ready(fn) {\n    if (document.readyState != 'loading') fn();\n    else if (document.addEventListener) document.addEventListener('DOMContentLoaded', fn);\n    else {\n        document.attachEvent('onreadystatechange', function() {\n            if (document.readyState != 'loading') fn();\n        });\n    }\n}\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3e5f47a elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"3e5f47a\" data-element_type=\"widget\" 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<a class=\"elementor-icon elementor-animation-grow\" href=\"http:\/\/maringotkaulesa.cz\/\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" viewBox=\"0 0 730 728.26\"><defs><style>.m{fill:url(#e);}.n{fill:url(#d);}.o{fill:url(#g);}.p{fill:url(#f);}.q{fill:url(#i);}.r{fill:url(#h);}.s{fill:url(#k);}.t{fill:url(#j);}.u{fill:url(#c);}.v{fill:url(#b);}.w{fill:#f4eed8;}.x{fill:#cbbba0;}.y{fill:#d56c3c;}.a`{fill:#1d1d1b;}.aa{fill:#37686d;}.ab{fill:#a1d3d3;}.ac{fill:#294f51;}.ad{fill:#3a473d;}.ae{fill:#4b6d54;}<\/style><linearGradient id=\"b\" x1=\"486.68\" y1=\"298.51\" x2=\"558.17\" y2=\"370.01\" gradientTransform=\"matrix(1, 0, 0, 1, 0, 0)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#a2cbcf\"><\/stop><stop offset=\"1\" stop-color=\"#666a83\"><\/stop><\/linearGradient><linearGradient id=\"c\" x1=\"172.35\" y1=\"298.51\" x2=\"243.84\" y2=\"370.01\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"d\" x1=\"302.48\" y1=\"307.48\" x2=\"331.5\" y2=\"336.5\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"e\" x1=\"326.02\" y1=\"307.48\" x2=\"355.04\" y2=\"336.5\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"f\" x1=\"325.96\" y1=\"349.62\" x2=\"354.98\" y2=\"378.64\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"g\" x1=\"302.48\" y1=\"349.62\" x2=\"331.5\" y2=\"378.64\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"h\" x1=\"374.01\" y1=\"307.48\" x2=\"403.03\" y2=\"336.5\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"i\" x1=\"397.54\" y1=\"307.48\" x2=\"426.56\" y2=\"336.5\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"j\" x1=\"397.49\" y1=\"349.62\" x2=\"426.51\" y2=\"378.64\" xlink:href=\"#b\"><\/linearGradient><linearGradient id=\"k\" x1=\"374.01\" y1=\"349.62\" x2=\"403.03\" y2=\"378.64\" xlink:href=\"#b\"><\/linearGradient><\/defs><g id=\"a\"><g><circle class=\"x\" cx=\"364.63\" cy=\"364.31\" r=\"359.54\"><\/circle><path class=\"a`\" d=\"M365,728.26C164.22,728.26,.87,564.91,.87,364.13S164.22,0,365,0s364.13,163.35,364.13,364.13-163.35,364.13-364.13,364.13Zm0-718.57C169.56,9.69,10.56,168.69,10.56,364.13s159,354.44,354.44,354.44,354.44-159,354.44-354.44S560.44,9.69,365,9.69Z\"><\/path><circle class=\"ab\" cx=\"364.5\" cy=\"364.13\" r=\"344.6\"><\/circle><polygon class=\"ae\" points=\"44.85 493.13 684.14 493.13 671.42 520.97 655.67 547.74 636.06 576.37 607.58 608.14 580.38 632.47 534.44 663.96 498.37 681.57 456.72 696.45 412.49 705.76 361.96 708.73 318.17 705.47 279.66 698.03 241.02 686.01 196.65 665.11 162.15 642.49 133.52 619.88 101.89 587.1 74.7 549.89 55.23 515.54 44.85 493.13\"><\/polygon><polygon class=\"ad\" points=\"681.68 346.92 704.75 354.48 676 287.15 692.65 291.69 654.44 212.63 629.1 265.07 614.22 217.91 627.82 222.93 596.6 135.51 565.39 222.93 578.99 217.91 571.55 241.48 545.95 201.17 569.03 208.73 540.28 141.4 556.92 145.94 518.71 66.88 480.51 145.94 497.15 141.4 468.4 208.73 491.48 201.17 462.72 246.45 458.05 246.41 436.29 200.04 458.58 209.93 430.81 121.89 446.89 127.83 409.98 24.46 373.07 127.83 389.15 121.89 361.37 209.93 383.67 200.04 364.25 241.41 337.92 179.73 359.68 185.67 309.72 82.3 259.77 185.67 281.53 179.73 256.8 237.66 233.62 201.17 256.7 208.73 227.95 141.4 244.6 145.94 206.39 66.88 168.18 145.94 184.83 141.4 156.08 208.73 179.15 201.17 154.07 240.67 146.89 217.91 160.49 222.93 129.27 135.51 98.06 222.93 111.65 217.91 97.99 261.21 74.52 212.63 36.31 291.69 52.95 287.15 24.2 354.48 47.28 346.92 20.88 388.49 27.76 439.74 44.85 493.13 684.14 493.13 700.41 442.44 708.34 388.91 681.68 346.92\"><\/polygon><path class=\"a`\" d=\"M364.49,710.34c-190.9,0-346.22-155.31-346.22-346.22S173.59,17.91,364.49,17.91s346.22,155.31,346.22,346.22-155.31,346.22-346.22,346.22Zm0-689.2C175.37,21.14,21.51,175.01,21.51,364.13s153.86,342.98,342.99,342.98,342.99-153.86,342.99-342.98S553.62,21.14,364.49,21.14Z\"><\/path><rect class=\"x\" x=\"119.91\" y=\"236.92\" width=\"487.3\" height=\"228.08\"><\/rect><path class=\"a`\" d=\"M115.25,232.25v237.41h496.62V232.25H115.25Zm487.3,19.21H124.58v-9.88h477.97v9.88Zm-477.97,16.29v-12.79h477.97v12.79H124.58Zm477.97,3.5v12.79H124.58v-12.79h477.97ZM124.58,460.34v-9.88h166.41v-3.5H124.58v-12.79h167.36v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h166.41v-3.5H124.58v-12.79h477.97v12.79h-165.28v3.5h165.28v12.79h-165.28v3.5h165.28v12.79h-165.28v3.5h165.28v12.79h-165.28v3.5h165.28v12.79h-165.28v3.5h165.28v12.79h-166.14v3.5h166.14v12.79h-166.14v3.5h166.14v12.79h-166.14v3.5h166.14v12.79h-166.14v3.5h166.14v12.79h-165.28v3.5h165.28v9.88H124.58Z\"><\/path><rect class=\"aa\" x=\"290.54\" y=\"288.2\" width=\"146.52\" height=\"172.13\"><\/rect><g><path class=\"ac\" d=\"M321.03,394.14h-14.5v56.33h44.4v-56.33h-29.89Zm-13.34,55.17v-54h13.34v54h-13.34Zm14.5,0v-54h13.06v54h-13.06Zm27.56-54v54h-13.34v-54h13.34Z\"><\/path><path class=\"ac\" d=\"M407.95,394.14h-29.89v56.33h44.4v-56.33h-14.5Zm-28.73,55.17v-54h13.34v54h-13.34Zm14.5,0v-54h13.06v54h-13.06Zm27.56,0h-13.34v-54h13.34v54Z\"><\/path><\/g><g><path class=\"a`\" d=\"M184.41,437.65c-7.64,0-14.83,2.98-20.23,8.38-11.16,11.16-11.16,29.31,0,40.46,5.58,5.58,12.9,8.37,20.23,8.37s14.66-2.79,20.23-8.37c5.41-5.4,8.38-12.59,8.38-20.23s-2.98-14.83-8.38-20.23c-5.4-5.41-12.59-8.38-20.23-8.38Zm1.75,3.67c5.45,.38,10.53,2.48,14.65,6.07l-14.65,14.65v-20.72Zm-3.5,20.72l-14.65-14.65c4.12-3.59,9.2-5.69,14.65-6.07v20.72Zm-2.47,2.47h-20.71c.37-5.28,2.39-10.41,6.06-14.65l14.65,14.65Zm2.47,26.68c-5.28-.37-10.41-2.39-14.65-6.06l14.65-14.65v20.71Zm3.5-20.71l14.65,14.65c-4.24,3.68-9.37,5.7-14.65,6.06v-20.71Zm2.47-2.47h20.72c-.38,5.45-2.48,10.53-6.07,14.65l-14.65-14.65Zm0-3.5l14.65-14.65c3.59,4.12,5.69,9.2,6.07,14.65h-20.72Zm-29.16,3.5h20.71l-14.65,14.65c-3.68-4.24-5.7-9.37-6.06-14.65Z\"><\/path><path class=\"a`\" d=\"M566.34,446.03c-5.4-5.41-12.59-8.38-20.23-8.38s-14.83,2.98-20.23,8.38c-11.16,11.16-11.16,29.31,0,40.46,5.58,5.58,12.91,8.37,20.23,8.37s14.66-2.79,20.23-8.37c11.16-11.16,11.16-29.31,0-40.46Zm-18.48-4.71c5.45,.38,10.53,2.48,14.65,6.07l-14.65,14.65v-20.72Zm-3.5,20.72l-14.66-14.65c4.12-3.59,9.2-5.69,14.66-6.07v20.72Zm-2.47,2.47h-20.71c.37-5.28,2.39-10.41,6.06-14.65l14.65,14.65Zm2.47,26.68c-5.28-.37-10.41-2.39-14.65-6.06l14.65-14.65v20.71Zm3.5-20.71l14.65,14.65c-4.24,3.68-9.37,5.7-14.65,6.06v-20.71Zm2.47-2.47h20.71c-.37,5.28-2.39,10.41-6.06,14.65l-14.65-14.65Zm20.71-3.5h-20.71l14.65-14.65c3.68,4.24,5.7,9.37,6.06,14.65Zm-49.87,3.5h20.71l-14.65,14.65c-3.68-4.24-5.7-9.37-6.06-14.65Z\"><\/path><\/g><circle class=\"v\" cx=\"522.42\" cy=\"334.26\" r=\"50.55\"><\/circle><circle class=\"u\" cx=\"208.1\" cy=\"334.26\" r=\"50.55\"><\/circle><rect class=\"n\" x=\"307.11\" y=\"302.84\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"m\" x=\"330.65\" y=\"302.84\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"p\" x=\"330.59\" y=\"344.98\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"o\" x=\"307.11\" y=\"344.98\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"r\" x=\"378.64\" y=\"302.84\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"q\" x=\"402.18\" y=\"302.84\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"t\" x=\"402.12\" y=\"344.98\" width=\"19.75\" height=\"38.29\"><\/rect><rect class=\"s\" x=\"378.64\" y=\"344.98\" width=\"19.75\" height=\"38.29\"><\/rect><g><path class=\"ac\" d=\"M286.32,460.35h155.61v-177.27h-155.61v177.27Zm80.51-167.95h65.78v167.94h-65.78v-167.94Zm-71.18,0h66.52v167.94h-66.52v-167.94Z\"><\/path><path class=\"ac\" d=\"M522.42,280.21c-29.8,0-54.05,24.25-54.05,54.05s24.25,54.05,54.05,54.05,54.05-24.25,54.05-54.05-24.25-54.05-54.05-54.05Zm0,101.11c-25.95,0-47.06-21.11-47.06-47.06s21.11-47.06,47.06-47.06,47.06,21.11,47.06,47.06-21.11,47.06-47.06,47.06Z\"><\/path><path class=\"ac\" d=\"M208.1,280.21c-29.8,0-54.05,24.25-54.05,54.05s24.25,54.05,54.05,54.05,54.05-24.25,54.05-54.05-24.25-54.05-54.05-54.05Zm0,101.11c-25.95,0-47.06-21.11-47.06-47.06s21.11-47.06,47.06-47.06,47.06,21.11,47.06,47.06-21.11,47.06-47.06,47.06Z\"><\/path><\/g><g><path class=\"ac\" d=\"M305.95,342.3h22.08v-40.62h-22.08v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><path class=\"ac\" d=\"M329.48,342.3h22.08v-40.62h-22.08v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><path class=\"ac\" d=\"M329.43,384.44h22.08v-40.62h-22.08v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><path class=\"ac\" d=\"M305.95,384.44h22.08v-40.62h-22.08v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><path class=\"ac\" d=\"M377.48,342.3h22.08v-40.62h-22.08v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><path class=\"ac\" d=\"M401.01,301.68v40.62h22.08v-40.62h-22.08Zm19.75,38.29h-17.42v-35.95h17.42v35.95Z\"><\/path><path class=\"ac\" d=\"M400.95,384.44h22.09v-40.62h-22.09v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><path class=\"ac\" d=\"M377.48,384.44h22.08v-40.62h-22.08v40.62Zm2.33-38.29h17.42v35.95h-17.42v-35.95Z\"><\/path><\/g><g><g><path class=\"y\" d=\"M725.34,572.55c0-13.92-7.91-25.41-18.22-27.44l2.89-24.45H20.12l2.89,24.43c-10.37,1.96-18.34,13.49-18.34,27.46s7.97,25.5,18.34,27.46l-2.89,24.43H710l-2.89-24.45c10.31-2.03,18.22-13.52,18.22-27.44Z\"><\/path><g><path class=\"w\" d=\"M96.47,602.48v-60.97h8.39l11.22,32.28h.17l11.13-32.28h8.48v60.97h-8.74v-37.08h-.17l-8.65,26.21h-4.37l-8.56-26.21h-.17v37.08h-8.74Z\"><\/path><path class=\"w\" d=\"M140.14,602.48l13.62-60.97h7.28l13.62,60.97h-8.74l-2.57-13.1h-11.91l-2.57,13.1h-8.74Zm21.58-21.32l-4.28-22.09h-.17l-4.28,22.09h8.73Z\"><\/path><path class=\"w\" d=\"M178.93,602.48v-60.97h14.04c10.28,0,15.41,5.96,15.41,17.9,0,3.6-.56,6.65-1.67,9.16-1.11,2.51-3.07,4.54-5.87,6.08l9.42,27.83h-9.25l-8.14-26.03h-5.22v26.03h-8.74Zm8.74-52.75v19.01h4.97c1.54,0,2.77-.22,3.68-.64,.91-.43,1.63-1.04,2.14-1.84,.46-.8,.77-1.78,.94-2.95s.26-2.52,.26-4.07-.09-2.89-.26-4.07c-.17-1.17-.51-2.18-1.03-3.04-1.09-1.6-3.14-2.4-6.17-2.4h-4.54Z\"><\/path><path class=\"w\" d=\"M215.67,602.48v-60.97h8.73v60.97h-8.73Z\"><\/path><path class=\"w\" d=\"M232.54,602.48v-60.97h8.39l13.19,36.74h.17v-36.74h8.74v60.97h-8.22l-13.36-36.65h-.17v36.65h-8.73Z\"><\/path><path class=\"w\" d=\"M270.39,555.89c0-2.45,.43-4.63,1.28-6.51,.86-1.89,2-3.46,3.43-4.71,1.37-1.2,2.92-2.11,4.67-2.74,1.74-.63,3.49-.94,5.27-.94s3.52,.31,5.26,.94c1.74,.63,3.33,1.54,4.75,2.74,1.37,1.25,2.48,2.82,3.34,4.71,.86,1.88,1.28,4.05,1.28,6.51v3.09h-8.73v-3.09c0-2.11-.59-3.67-1.76-4.67-1.17-1-2.56-1.5-4.15-1.5s-2.98,.5-4.15,1.5c-1.17,1-1.76,2.56-1.76,4.67v32.2c0,2.11,.59,3.67,1.76,4.67s2.55,1.5,4.15,1.5,2.98-.5,4.15-1.5c1.17-1,1.76-2.56,1.76-4.67v-11.47h-6.94v-7.71h15.67v19.19c0,2.57-.43,4.77-1.28,6.59-.86,1.83-1.97,3.34-3.34,4.54-1.43,1.25-3.01,2.2-4.75,2.83-1.74,.63-3.5,.94-5.26,.94s-3.53-.31-5.27-.94c-1.74-.63-3.3-1.57-4.67-2.83-1.43-1.2-2.57-2.71-3.43-4.54-.86-1.83-1.28-4.02-1.28-6.59v-32.2Z\"><\/path><path class=\"w\" d=\"M306.88,555.89c0-2.45,.43-4.63,1.28-6.51,.86-1.89,2-3.46,3.43-4.71,1.37-1.2,2.92-2.11,4.67-2.74,1.74-.63,3.49-.94,5.27-.94s3.52,.31,5.26,.94c1.74,.63,3.33,1.54,4.75,2.74,1.37,1.25,2.48,2.82,3.34,4.71,.86,1.88,1.28,4.05,1.28,6.51v32.2c0,2.57-.43,4.77-1.28,6.59-.86,1.83-1.97,3.34-3.34,4.54-1.43,1.25-3.01,2.2-4.75,2.83-1.74,.63-3.5,.94-5.26,.94s-3.53-.31-5.27-.94c-1.74-.63-3.3-1.57-4.67-2.83-1.43-1.2-2.57-2.71-3.43-4.54-.86-1.83-1.28-4.02-1.28-6.59v-32.2Zm8.73,32.2c0,2.11,.59,3.67,1.76,4.67,1.17,1,2.55,1.5,4.15,1.5s2.98-.5,4.15-1.5c1.17-1,1.76-2.56,1.76-4.67v-32.2c0-2.11-.59-3.67-1.76-4.67-1.17-1-2.56-1.5-4.15-1.5s-2.98,.5-4.15,1.5c-1.17,1-1.76,2.56-1.76,4.67v32.2Z\"><\/path><path class=\"w\" d=\"M348.58,602.48v-52.75h-10.11v-8.22h28.95v8.22h-10.11v52.75h-8.74Z\"><\/path><path class=\"w\" d=\"M371.27,602.48v-60.97h8.74v27.83h.17l12.76-27.83h8.74l-11.91,24.41,14.13,36.57h-9.25l-9.93-27.06-4.71,8.82v18.24h-8.74Z\"><\/path><path class=\"w\" d=\"M403.81,602.48l13.62-60.97h7.28l13.62,60.97h-8.74l-2.57-13.1h-11.91l-2.57,13.1h-8.74Zm21.58-21.32l-4.28-22.09h-.17l-4.28,22.09h8.73Z\"><\/path><path class=\"w\" d=\"M486.79,541.51v47.27c0,2-.36,3.84-1.07,5.52-.72,1.69-1.73,3.18-3.04,4.49-1.31,1.32-2.83,2.35-4.54,3.09s-3.54,1.11-5.48,1.11-3.75-.37-5.44-1.11c-1.68-.74-3.18-1.77-4.49-3.09-1.32-1.31-2.34-2.81-3.08-4.49-.74-1.68-1.11-3.53-1.11-5.52v-47.27h8.74v46.41c0,2.17,.51,3.77,1.54,4.8,1.03,1.03,2.31,1.54,3.86,1.54s2.83-.51,3.85-1.54c1.03-1.03,1.54-2.63,1.54-4.8v-46.41h8.74Z\"><\/path><path class=\"w\" d=\"M510.94,602.48v-60.97h8.74v52.24h17.3v8.74h-26.03Z\"><\/path><path class=\"w\" d=\"M542.63,602.48v-60.97h26.03v8.22h-17.3v17.9h15.07v8.22h-15.07v17.9h17.3v8.74h-26.03Z\"><\/path><path class=\"w\" d=\"M602.58,559.06h-8.74v-1.97c0-2-.47-3.73-1.41-5.18-.94-1.46-2.53-2.18-4.75-2.18-1.2,0-2.17,.23-2.91,.68-.74,.46-1.34,1.03-1.8,1.71-.46,.74-.77,1.59-.94,2.53s-.26,1.92-.26,2.95c0,1.2,.04,2.2,.13,3,.08,.8,.3,1.51,.64,2.14,.34,.63,.84,1.17,1.5,1.63,.66,.46,1.56,.91,2.7,1.37l6.68,2.65c1.94,.74,3.51,1.61,4.71,2.61,1.2,1,2.14,2.15,2.83,3.46,.63,1.37,1.06,2.93,1.29,4.67,.23,1.74,.34,3.73,.34,5.95,0,2.57-.26,4.95-.77,7.15-.51,2.2-1.34,4.07-2.48,5.61-1.2,1.6-2.77,2.86-4.71,3.77-1.94,.91-4.31,1.37-7.11,1.37-2.11,0-4.08-.37-5.91-1.11-1.83-.74-3.4-1.77-4.71-3.09-1.32-1.31-2.35-2.84-3.13-4.58-.77-1.74-1.16-3.64-1.16-5.7v-3.25h8.74v2.74c0,1.6,.47,3.04,1.41,4.32,.94,1.29,2.53,1.93,4.75,1.93,1.48,0,2.64-.22,3.47-.64,.83-.43,1.47-1.04,1.93-1.84,.46-.8,.73-1.76,.81-2.87,.09-1.11,.13-2.35,.13-3.73,0-1.6-.06-2.91-.17-3.94-.11-1.03-.34-1.86-.68-2.49-.4-.63-.93-1.14-1.58-1.54-.66-.4-1.53-.83-2.61-1.29l-6.25-2.57c-3.77-1.54-6.29-3.59-7.58-6.12-1.28-2.54-1.93-5.73-1.93-9.55,0-2.28,.31-4.45,.94-6.51,.63-2.06,1.57-3.82,2.83-5.31,1.2-1.48,2.72-2.67,4.58-3.55,1.86-.88,4.07-1.33,6.64-1.33,2.17,0,4.15,.4,5.95,1.2,1.8,.8,3.35,1.86,4.67,3.17,2.63,2.74,3.94,5.88,3.94,9.42v4.28Z\"><\/path><path class=\"w\" d=\"M605.14,602.48l13.62-60.97h7.28l13.62,60.97h-8.74l-2.57-13.1h-11.91l-2.57,13.1h-8.74Zm21.58-21.32l-4.28-22.09h-.17l-4.28,22.09h8.73Z\"><\/path><\/g><circle class=\"w\" cx=\"698.22\" cy=\"573.23\" r=\"7.33\"><\/circle><circle class=\"w\" cx=\"31.54\" cy=\"572.57\" r=\"7.33\"><\/circle><\/g><path class=\"a`\" d=\"M715.25,629.1H14.87l3.04-25.75c-10.6-4.28-17.91-16.49-17.91-30.8s7.32-26.52,17.91-30.8l-3.04-25.75H715.25l-3.05,25.8c10.53,4.33,17.8,16.52,17.8,30.75s-7.27,26.43-17.8,30.75l3.05,25.8Zm-689.88-9.33H704.75l-2.78-23.53,4.24-.83c8.25-1.62,14.46-11.45,14.46-22.86s-6.22-21.24-14.46-22.86l-4.24-.83,2.78-23.53H25.36l2.78,23.54-4.27,.81c-8.29,1.57-14.55,11.41-14.55,22.88s6.25,21.31,14.55,22.88l4.27,.81-2.78,23.54Z\"><\/path><\/g><\/g><\/g><g id=\"l\"><\/g><\/svg>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\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<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-05a543b\" data-id=\"05a543b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5824c34 elementor-nav-menu__align-center animated-slow elementor-nav-menu--stretch elementor-nav-menu__text-align-center elementor-nav-menu--dropdown-tablet elementor-nav-menu--toggle elementor-nav-menu--burger elementor-invisible elementor-widget elementor-widget-nav-menu\" data-id=\"5824c34\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500,&quot;full_width&quot;:&quot;stretch&quot;,&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\\&quot;fas fa-caret-down\\&quot;&gt;&lt;\\\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}\" data-widget_type=\"nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<nav aria-label=\"Menu\" class=\"elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none e--animation-slow\">\n\t\t\t\t<ul id=\"menu-1-5824c34\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2033\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=994\" class=\"elementor-item menu-link\">O maringotce<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2031\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=121\" class=\"elementor-item menu-link\">Galerie<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2030\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=119\" class=\"elementor-item menu-link\">Cen\u00edk<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2034\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1591\" class=\"elementor-item menu-link\">Rezervace<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2035\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1594\" class=\"elementor-item menu-link\">Voucher<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2032\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=123\" class=\"elementor-item menu-link\">Kontakt<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t<div class=\"elementor-menu-toggle\" role=\"button\" tabindex=\"0\" aria-label=\"Menu Toggle\" aria-expanded=\"false\">\n\t\t\t<i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--open eicon-menu-bar\"><\/i><i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--close eicon-close\"><\/i>\t\t<\/div>\n\t\t\t\t\t<nav class=\"elementor-nav-menu--dropdown elementor-nav-menu__container\" aria-hidden=\"true\">\n\t\t\t\t<ul id=\"menu-2-5824c34\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2033\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=994\" class=\"elementor-item menu-link\" tabindex=\"-1\">O maringotce<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2031\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=121\" class=\"elementor-item menu-link\" tabindex=\"-1\">Galerie<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2030\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=119\" class=\"elementor-item menu-link\" tabindex=\"-1\">Cen\u00edk<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2034\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1591\" class=\"elementor-item menu-link\" tabindex=\"-1\">Rezervace<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2035\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1594\" class=\"elementor-item menu-link\" tabindex=\"-1\">Voucher<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2032\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=123\" class=\"elementor-item menu-link\" tabindex=\"-1\">Kontakt<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a38120c elementor-section-full_width elementor-section-height-full elementor-section-stretched elementor-hidden-mobile elementor-section-height-default elementor-section-items-middle elementor-invisible\" data-id=\"a38120c\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;slideInUp&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cc92633\" data-id=\"cc92633\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-81526eb animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"81526eb\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" 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>P\u0159ije\u010fte k n\u00e1m na\u010derpat kouzelnou atmosf\u00e9ru<\/p><p>a odpo\u010dinout si od v\u0161edn\u00edch starost\u00ed pod korunami strom\u016f.<\/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-b8e7663 elementor-widget elementor-widget-spacer\" data-id=\"b8e7663\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/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-992d809 animated-slow elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"992d809\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" 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<a class=\"elementor-icon elementor-animation-grow\" href=\"#kdojsme\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"a\" viewBox=\"0 0 376.97 218.65\"><defs><style>.b{fill:#f4eed8;}<\/style><\/defs><polygon class=\"b\" points=\"188.48 218.65 0 30.16 30.16 0 188.48 158.33 346.81 0 376.97 30.16 188.48 218.65\"><\/polygon><\/svg>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-dd5d831 elementor-section-full_width elementor-section-height-min-height elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-items-middle elementor-invisible\" data-id=\"dd5d831\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;gradient&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;animation&quot;:&quot;fadeInDown&quot;,&quot;background_motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;background_motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b11a03e\" data-id=\"b11a03e\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-be3fd8b elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-html\" data-id=\"be3fd8b\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n\"use strict\";\nOB_ready(OB_doWhenReady);\n\nfunction OB_doWhenReady() {\n    \/\/ localize everything\n    var ooohBoi = window.ooohBoi || {};\n    \/\/ local scope variables\n    ooohBoi.prev_scroll_pos = window.scrollY || document.body.scrollTop;\n    ooohBoi.cur_scroll_pos;\n    ooohBoi.scroll_direction = 'init';\n    ooohBoi.prev_scroll_direction = 0;\n    ooohBoi.header = document.querySelector('#show-hide-header'); \/\/ header ID\n    ooohBoi.header_pos = {\n        top: ooohBoi.header.offsetTop,\n        left: ooohBoi.header.offsetLeft,\n    };\n    ooohBoi.header_height = OB_outerHeight(ooohBoi.header);\n    \/\/ show-hide header with ease\/transition\n    ooohBoi.header.style.transition = 'all 0.3s ease';\n    \/\/ update header height on window resize\n    ooohBoi.updateHeaderHeight = function() {\n        ooohBoi.header_height = OB_outerHeight(ooohBoi.header);\n    }\n    \/\/ listen \"scroll\" event and decide what to do\n    ooohBoi.checkScroll = function() {\n        ooohBoi.cur_scroll_pos = window.scrollY || document.body.scrollTop;\n\n        if (ooohBoi.cur_scroll_pos > ooohBoi.prev_scroll_pos) ooohBoi.scroll_direction = 'down';\n        else if (ooohBoi.cur_scroll_pos < ooohBoi.prev_scroll_pos) ooohBoi.scroll_direction = 'up';\n\n        if (ooohBoi.scroll_direction !== ooohBoi.prev_scroll_direction) ooohBoi.toggleHeader(ooohBoi.scroll_direction, ooohBoi.cur_scroll_pos);\n        ooohBoi.prev_scroll_pos = ooohBoi.cur_scroll_pos;\n    }\n    \/\/ add or remove class based on the scrolling direction\n    ooohBoi.toggleHeader = function(scroll_direction, scroll_current) {\n        if (scroll_direction === 'down' && scroll_current > ooohBoi.header_height) {\n            OB_addClass(ooohBoi.header, 'im-hidden'); \/\/ for styling\n            ooohBoi.header.style.top = -1 * ooohBoi.header_height + \"px\";\n            ooohBoi.prev_scroll_direction = scroll_direction;\n        } else if (scroll_direction === 'up') {\n            OB_removeClass(ooohBoi.header, 'im-hidden');\n            ooohBoi.header.style.top = ooohBoi.header_pos.top + \"px\";\n            ooohBoi.prev_scroll_direction = scroll_direction;\n        }\n    }\n    \/\/ listen \"scroll\" and \"resize\" window events\n    window.addEventListener('scroll', ooohBoi.checkScroll);\n    window.addEventListener('resize', ooohBoi.updateHeaderHeight);\n}\n\nfunction OB_outerHeight(el) {\n    var height = el.offsetHeight;\n    var style = getComputedStyle(el);\n    height += parseInt(style.marginTop) + parseInt(style.marginBottom);\n    return height;\n}\n\nfunction OB_addClass(el, className) {\n    if (el.classList) el.classList.add(className);\n    else {\n        var current = el.className,\n            found = false;\n        var all = current.split(' ');\n        for (var i = 0; i < all.length, !found; i++) found = all[i] === className;\n        if (!found) {\n            if (current === '') el.className = className;\n            else el.className += ' ' + className;\n        }\n    }\n}\n\nfunction OB_removeClass(el, className) {\n    if (el.classList) el.classList.remove(className);\n    else el.className = el.className.replace(new RegExp('(^|\\\\b)' + className.split(' ').join('|') + '(\\\\b|$)', 'gi'), ' ');\n}\n\nfunction OB_ready(fn) {\n    if (document.readyState != 'loading') fn();\n    else if (document.addEventListener) document.addEventListener('DOMContentLoaded', fn);\n    else {\n        document.attachEvent('onreadystatechange', function() {\n            if (document.readyState != 'loading') fn();\n        });\n    }\n}\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4cfa965 elementor-widget elementor-widget-image\" data-id=\"4cfa965\" 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=\"http:\/\/maringotkaulesa.cz\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"730\" height=\"728\" src=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Logo-2.svg\" class=\"attachment-full size-full wp-image-2018\" alt=\"\" \/>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5565493\" data-id=\"5565493\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c1635f6 elementor-nav-menu__align-center animated-slow elementor-nav-menu--stretch elementor-nav-menu__text-align-center elementor-nav-menu--dropdown-tablet elementor-nav-menu--toggle elementor-nav-menu--burger elementor-invisible elementor-widget elementor-widget-nav-menu\" data-id=\"c1635f6\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500,&quot;full_width&quot;:&quot;stretch&quot;,&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\\&quot;fas fa-caret-down\\&quot;&gt;&lt;\\\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}\" data-widget_type=\"nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<nav aria-label=\"Menu\" class=\"elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none e--animation-slow\">\n\t\t\t\t<ul id=\"menu-1-c1635f6\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2033\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=994\" class=\"elementor-item menu-link\">O maringotce<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2031\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=121\" class=\"elementor-item menu-link\">Galerie<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2030\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=119\" class=\"elementor-item menu-link\">Cen\u00edk<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2034\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1591\" class=\"elementor-item menu-link\">Rezervace<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2035\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1594\" class=\"elementor-item menu-link\">Voucher<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2032\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=123\" class=\"elementor-item menu-link\">Kontakt<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t<div class=\"elementor-menu-toggle\" role=\"button\" tabindex=\"0\" aria-label=\"Menu Toggle\" aria-expanded=\"false\">\n\t\t\t<i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--open eicon-menu-bar\"><\/i><i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--close eicon-close\"><\/i>\t\t<\/div>\n\t\t\t\t\t<nav class=\"elementor-nav-menu--dropdown elementor-nav-menu__container\" aria-hidden=\"true\">\n\t\t\t\t<ul id=\"menu-2-c1635f6\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2033\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=994\" class=\"elementor-item menu-link\" tabindex=\"-1\">O maringotce<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2031\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=121\" class=\"elementor-item menu-link\" tabindex=\"-1\">Galerie<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2030\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=119\" class=\"elementor-item menu-link\" tabindex=\"-1\">Cen\u00edk<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2034\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1591\" class=\"elementor-item menu-link\" tabindex=\"-1\">Rezervace<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2035\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=1594\" class=\"elementor-item menu-link\" tabindex=\"-1\">Voucher<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-2032\"><a href=\"http:\/\/maringotkaulesa.cz\/?page_id=123\" class=\"elementor-item menu-link\" tabindex=\"-1\">Kontakt<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-fed2ae5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"fed2ae5\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d594f65\" data-id=\"d594f65\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ed8ac3d elementor-widget elementor-widget-spacer\" data-id=\"ed8ac3d\" data-element_type=\"widget\" id=\"kdojsme\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d0563bd elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d0563bd\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9feb28e\" data-id=\"9feb28e\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3784640 elementor-widget elementor-widget-heading\" data-id=\"3784640\" 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\">V\u011b\u0159\u00edme, \u017ee se V\u00e1m u n\u00e1s bude l\u00edbit, a str\u00e1v\u00edte zde p\u0159\u00edjemn\u00e9 chv\u00edle.<\/h2>\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-009f872 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"009f872\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f54077d\" data-id=\"f54077d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a8dc3fa elementor-widget elementor-widget-spacer\" data-id=\"a8dc3fa\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-26453e4 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"26453e4\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5c6a75c\" data-id=\"5c6a75c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a4dc635 elementor-widget elementor-widget-gallery\" data-id=\"a4dc635\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:3,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;columns_mobile&quot;:3,&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns_tablet&quot;:2,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&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<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Maringotka_Lukas_Lampart-39.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a4dc635\" data-elementor-lightbox-title=\"Maringotka_Lukas_Lampart-39\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzNSwidXJsIjoiaHR0cDpcL1wvbWFyaW5nb3RrYXVsZXNhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wMVwvTWFyaW5nb3RrYV9MdWthc19MYW1wYXJ0LTM5LmpwZyIsInNsaWRlc2hvdyI6ImE0ZGM2MzUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Maringotka_Lukas_Lampart-39-300x200.jpg\" data-width=\"300\" data-height=\"200\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Maringotka_Lukas_Lampart-34.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a4dc635\" data-elementor-lightbox-title=\"Maringotka_Lukas_Lampart-34\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEzMCwidXJsIjoiaHR0cDpcL1wvbWFyaW5nb3RrYXVsZXNhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wMVwvTWFyaW5nb3RrYV9MdWthc19MYW1wYXJ0LTM0LmpwZyIsInNsaWRlc2hvdyI6ImE0ZGM2MzUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Maringotka_Lukas_Lampart-34-300x200.jpg\" data-width=\"300\" data-height=\"200\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Maringotka_Lukas_Lampart-31.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a4dc635\" data-elementor-lightbox-title=\"Maringotka_Lukas_Lampart-31\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEyNywidXJsIjoiaHR0cDpcL1wvbWFyaW5nb3RrYXVsZXNhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wMVwvTWFyaW5nb3RrYV9MdWthc19MYW1wYXJ0LTMxLmpwZyIsInNsaWRlc2hvdyI6ImE0ZGM2MzUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"http:\/\/maringotkaulesa.cz\/wp-content\/uploads\/2023\/01\/Maringotka_Lukas_Lampart-31-300x200.jpg\" data-width=\"300\" data-height=\"200\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d5f99d1 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d5f99d1\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5e8f2c0\" data-id=\"5e8f2c0\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fbea85c elementor-widget elementor-widget-spacer\" data-id=\"fbea85c\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-bc7a1f5 elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"bc7a1f5\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0370873\" data-id=\"0370873\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e491a4b elementor-widget elementor-widget-spacer\" data-id=\"e491a4b\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2f38979 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2f38979\" data-element_type=\"section\" data-settings=\"{&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b10b9ef\" data-id=\"b10b9ef\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b5a1765 elementor-widget elementor-widget-text-editor\" data-id=\"b5a1765\" 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 class=\"p1\">N\u00e1\u0161 rodinn\u00fd projekt \u201eMaringotka u lesa\u201c se r\u00fdsoval v hlav\u011b del\u0161\u00ed dobu. Po zku\u0161ebn\u00edm provozu a pozitivn\u00edch ohlasech se na\u0161e vize stala skute\u010dnosti a m\u016f\u017eeme V\u00e1s zde p\u0159iv\u00edtat.<\/p><p class=\"p1\">Rann\u00ed k\u00e1vu si m\u016f\u017eete vychutnat v\u00a0posteli s\u00a0v\u00fdhledem p\u0159es kulat\u00e9 okno maringotky na les, nebo posn\u00eddat v\u00a0p\u0159\u00edst\u0159e\u0161ku u rybn\u00ed\u010dku obklopeni kv\u011btnatou loukou. Denn\u00edch aktivit v\u00a0okol\u00ed maringotky a bl\u00edzk\u00e9m okol\u00ed najdete spoustu a ve\u010der m\u016f\u017eete zakon\u010dit den t\u00e1bor\u00e1kem, saunou, nebo otev\u0159\u00edt lahvinku dobr\u00e9ho v\u00edna na z\u00e1pra\u017e\u00ed maringotky<\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-3bb4336 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3bb4336\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e9131c1\" data-id=\"e9131c1\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-e8f9599 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"e8f9599\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c873bf7\" data-id=\"c873bf7\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-367e8ee elementor-align-center elementor-widget elementor-widget-button\" data-id=\"367e8ee\" 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=\"http:\/\/maringotkaulesa.cz\/?page_id=994\">\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\">O maringotce<\/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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1254467\" data-id=\"1254467\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-dd9bd5d elementor-align-center elementor-widget elementor-widget-button\" data-id=\"dd9bd5d\" 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=\"http:\/\/maringotkaulesa.cz\/?page_id=1591\">\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\">Rezervace<\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9da54f5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"9da54f5\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5f66225\" data-id=\"5f66225\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6bd4035 elementor-widget elementor-widget-spacer\" data-id=\"6bd4035\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-87a496f elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"87a496f\" data-element_type=\"section\" data-settings=\"{&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-20b63a5\" data-id=\"20b63a5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6b42c45 elementor-widget elementor-widget-heading\" data-id=\"6b42c45\" data-element_type=\"widget\" id=\"#kontakt\" 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\">Kontakt<\/h2>\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6358ebc elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6358ebc\" data-element_type=\"section\" data-settings=\"{&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4933f96\" data-id=\"4933f96\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a229c48 elementor-widget elementor-widget-spacer\" data-id=\"a229c48\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-065ae2f elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"065ae2f\" data-element_type=\"section\" data-settings=\"{&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-da1a186\" data-id=\"da1a186\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-031fe83 elementor-widget elementor-widget-text-editor\" data-id=\"031fe83\" 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><strong>Maringotka u lesa <\/strong><\/p><p><strong>( I\u010c: 88286878 )<\/strong><\/p><p>\u00a0<\/p><p><span style=\"color: #333333;\"><a style=\"color: #333333;\" href=\"mailto:info@maringotkaulesa.cz\">info@maringotkaulesa.cz<\/a><\/span><\/p><p>+420 739 037 310<\/p><p>\u00a0<\/p><p>\u0160enov, 739 34<\/p><p>( Adresu a GPS sou\u0159adnice &#8222;Maringotky u lesa&#8220; V\u00e1m po\u0161leme p\u0159ed Va\u0161\u00edm p\u0159\u00edjezdem. )<\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-620b1c2 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"620b1c2\" data-element_type=\"section\" data-settings=\"{&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4d7d248\" data-id=\"4d7d248\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-807f41e elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"807f41e\" data-element_type=\"widget\" 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<a class=\"elementor-icon elementor-animation-grow\" href=\"https:\/\/www.facebook.com\/profile.php?id=100090022686880\" target=\"_blank\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 177.96 371.98\"><g id=\"Vrstva_3\" data-name=\"Vrstva 3\"><path d=\"M382.84,342.5H319.76V298.41a11.57,11.57,0,0,1,11.72-12.05H376.9V221.29H306.55C241,221.29,244.12,291,244.12,291V342.5H204.88v64.41h39.24V593.28h75.64V406.91h53.17Z\" transform=\"translate(-204.88 -221.29)\"><\/path><\/g><\/svg>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\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<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-fee9bfa\" data-id=\"fee9bfa\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-cb01156 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"cb01156\" data-element_type=\"widget\" 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<a class=\"elementor-icon elementor-animation-grow\" href=\"https:\/\/www.instagram.com\/maringotkaulesa\/\" target=\"_blank\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Vrstva_2\" data-name=\"Vrstva 2\" viewBox=\"0 0 380.66 380.66\"><path d=\"M294.85,504.26a97,97,0,1,1,97-97A97.09,97.09,0,0,1,294.85,504.26Zm0-173.95a77,77,0,1,0,77,77A77.06,77.06,0,0,0,294.85,330.31Z\" transform=\"translate(-103.53 -215.96)\"><\/path><circle cx=\"295.85\" cy=\"86.35\" r=\"21.96\"><\/circle><path d=\"M386.34,596.62H201.39a98,98,0,0,1-97.86-97.85V313.82A98,98,0,0,1,201.39,216h185a98,98,0,0,1,97.85,97.86v185A98,98,0,0,1,386.34,596.62ZM201.39,236a78,78,0,0,0-77.86,77.86v185a77.94,77.94,0,0,0,77.86,77.85h185a77.93,77.93,0,0,0,77.85-77.85V313.82A77.94,77.94,0,0,0,386.34,236Z\" transform=\"translate(-103.53 -215.96)\"><\/path><\/svg>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1ccd438 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1ccd438\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-71f8222\" data-id=\"71f8222\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-88bec7e elementor-widget elementor-widget-spacer\" data-id=\"88bec7e\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\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<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-b63ee75 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b63ee75\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-585fdde\" data-id=\"585fdde\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b889a56 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"b889a56\" 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=\"http:\/\/maringotkaulesa.cz\/\">\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\">\u00a9 2023 Maringotka u lesa - designed by Graprov design studio<\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>P\u0159ije\u010fte k n\u00e1m na\u010derpat kouzelnou atmosf\u00e9ru a odpo\u010dinout si od v\u0161edn\u00edch starost\u00ed pod korunami strom\u016f. V\u011b\u0159\u00edme, \u017ee se V\u00e1m u n\u00e1s bude l\u00edbit, a str\u00e1v\u00edte zde p\u0159\u00edjemn\u00e9 chv\u00edle. N\u00e1\u0161 rodinn\u00fd projekt \u201eMaringotka u lesa\u201c se r\u00fdsoval v hlav\u011b del\u0161\u00ed dobu. Po zku\u0161ebn\u00edm provozu a pozitivn\u00edch ohlasech se na\u0161e vize stala skute\u010dnosti a m\u016f\u017eeme V\u00e1s zde [&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":{"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"disabled","ast-banner-title-visibility":"","ast-main-header-display":"disabled","ast-hfb-above-header-display":"disabled","ast-hfb-below-header-display":"disabled","ast-hfb-mobile-header-display":"disabled","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"disabled","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-112","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=\/wp\/v2\/pages\/112","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=112"}],"version-history":[{"count":6,"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=\/wp\/v2\/pages\/112\/revisions"}],"predecessor-version":[{"id":2492,"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=\/wp\/v2\/pages\/112\/revisions\/2492"}],"wp:attachment":[{"href":"http:\/\/maringotkaulesa.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=112"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}