{"id":5837,"date":"2025-06-16T11:36:36","date_gmt":"2025-06-16T08:36:36","guid":{"rendered":"https:\/\/freespace-arch.com\/?page_id=5837"},"modified":"2025-10-07T14:16:15","modified_gmt":"2025-10-07T11:16:15","slug":"circle","status":"publish","type":"page","link":"https:\/\/freespace-arch.com\/","title":{"rendered":"circle"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"5837\" class=\"elementor elementor-5837\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb134b1 e-flex e-con-boxed e-con e-parent\" data-id=\"eb134b1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1c3aee0 elementor-widget elementor-widget-html\" data-id=\"1c3aee0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\r\n\/* Multi-Section Horizontal Scroll Code\r\n* Enhanced version supporting mobile and desktop sections\r\n* Add CSS class \"mobile-only\" or \"desktop-only\" to your horizontalScrollContainer sections\r\n*\/\r\nlet speedMultipliers = {\r\ndesktop: 1.4,\r\ntablet: 1.2,\r\nmobile: 10,\r\n}\r\ndocument.addEventListener('DOMContentLoaded', function () {\r\n    \r\n  const isMobile = \/iPhone|iPad|Android|SamsungBrowser\/i.test(navigator.userAgent);\r\n  const isElementorEditor = document.body.classList.contains('elementor-editor-active');\r\n  \r\n  \/\/ Get window width for device detection\r\n  let windowWidth = window.innerWidth;\r\n  const isDesktop = windowWidth > 1024;\r\n  const isTablet = windowWidth > 767 && windowWidth <= 1024;\r\n  const isMobileDevice = windowWidth <= 767;\r\n\r\n  let horizontalScrollContainers = document.querySelectorAll('.horizontalScrollWrapper');\r\n  \r\n  horizontalScrollContainers.forEach((horizontalScrollWrapper, index) => {\r\n\r\n    \/\/ Get the actual container inside the wrapper\r\n    let horizontalScrollContainer = horizontalScrollWrapper.querySelector('.horizontalScrollContainer');\r\n    if (!horizontalScrollContainer) return;\r\n\r\n    \/\/ Check if this section should be active based on device type\r\n    const isMobileSection = horizontalScrollWrapper.classList.contains('mobile-only') || \r\n                           horizontalScrollWrapper.hasAttribute('data-mobile-only') ||\r\n                           horizontalScrollContainer.classList.contains('mobile-only') || \r\n                           horizontalScrollContainer.hasAttribute('data-mobile-only');\r\n    const isDesktopSection = horizontalScrollWrapper.classList.contains('desktop-only') || \r\n                            horizontalScrollWrapper.hasAttribute('data-desktop-only') ||\r\n                            horizontalScrollContainer.classList.contains('desktop-only') || \r\n                            horizontalScrollContainer.hasAttribute('data-desktop-only');\r\n    \r\n    \/\/ Skip this section if it's not meant for current device\r\n    if (isMobileSection && !isMobileDevice) {\r\n      horizontalScrollWrapper.style.display = 'none';\r\n      return;\r\n    }\r\n    if (isDesktopSection && isMobileDevice) {\r\n      horizontalScrollWrapper.style.display = 'none';\r\n      return;\r\n    }\r\n\r\n    let speedMultipliers = {\r\n      desktop: 1.4,\r\n      tablet: 1.2,\r\n      mobile: 1,\r\n    } \/* greater value = faster, 1 = default *\/\r\n\r\n    let horizontalScrollTranslate = horizontalScrollContainer.querySelector('.horizontalScrollTranslate');\r\n    let horizontalScrollParent = horizontalScrollWrapper;\r\n    \r\n    \/\/ Add unique identifier to avoid conflicts\r\n    const uniqueId = `scroll-${index}`;\r\n    horizontalScrollWrapper.setAttribute('data-scroll-id', uniqueId);\r\n    \r\n    let scrolledRatio = 0;\r\n    let horizontalScrollContainerTop, horizontalScrollHeight, horizontalScrollTranslateWidth, widthToScroll, mult;\r\n    \r\n    if (isMobile && !isElementorEditor) horizontalScrollTranslate.style.transition = 'none';\r\n\r\n    \/\/ EDITOR-SPECIFIC: Add manual scroll controls\r\n    if (isElementorEditor) {\r\n      addEditorScrollControls(horizontalScrollWrapper, horizontalScrollTranslate, index);\r\n    }\r\n\r\n    function updateValues() {\r\n      let currentWindowWidth = window.innerWidth;\r\n      currentWindowWidth > 1024 ? mult = speedMultipliers.desktop : \r\n      currentWindowWidth > 767 ? mult = speedMultipliers.tablet : \r\n      mult = speedMultipliers.mobile;\r\n      \r\n      horizontalScrollTranslateWidth = horizontalScrollTranslate.offsetWidth;\r\n      \r\n      if (isElementorEditor) {\r\n        horizontalScrollParent.style.height = 'auto';\r\n      } else {\r\n        horizontalScrollParent.style.height = window.innerHeight + horizontalScrollTranslateWidth \/ mult + 'px';\r\n      }\r\n      \r\n      horizontalScrollHeight = horizontalScrollParent.offsetHeight;\r\n      widthToScroll = horizontalScrollTranslateWidth - currentWindowWidth;\r\n      horizontalScrollContainerTop = (window.innerHeight - horizontalScrollContainer.offsetHeight) \/ 2;\r\n      horizontalScrollContainer.style.top = `${horizontalScrollContainerTop}px`;\r\n    }\r\n    \r\n    updateValues();\r\n\r\n    \/\/ Update values on resize with device check\r\n    window.addEventListener('resize', () => {\r\n      let newWindowWidth = window.innerWidth;\r\n      let newIsMobileDevice = newWindowWidth <= 767;\r\n      \r\n      \/\/ Hide\/show sections based on new screen size\r\n      if (isMobileSection && !newIsMobileDevice) {\r\n        horizontalScrollWrapper.style.display = 'none';\r\n        return;\r\n      }\r\n      if (isDesktopSection && newIsMobileDevice) {\r\n        horizontalScrollWrapper.style.display = 'none';\r\n        return;\r\n      }\r\n      \r\n      \/\/ Show the section if it should be visible\r\n      horizontalScrollWrapper.style.display = '';\r\n      \r\n      if (windowWidth !== newWindowWidth) {\r\n        windowWidth = newWindowWidth;\r\n        updateValues();\r\n      }\r\n    });\r\n\r\n    let isUpdateScheduled = false;\r\n\r\n    function manageScroll() {\r\n      let horizontalScrollTop = horizontalScrollParent.getBoundingClientRect().top;\r\n      scrolledRatio = (horizontalScrollTop - horizontalScrollContainerTop) \/ \r\n                     (horizontalScrollHeight - horizontalScrollContainer.offsetHeight - 100) * -1;\r\n      scrolledRatio = Math.min(Math.max(scrolledRatio, 0), 1);\r\n      horizontalScrollTranslate.style.transform = `translateX(${scrolledRatio * widthToScroll }px)`;\r\n      isUpdateScheduled = false;\r\n    }\r\n\r\n    \/* Listen to the scroll event on the window object and schedule the update function using throttling *\/\r\n    window.addEventListener('scroll', () => {\r\n      if (!isUpdateScheduled && horizontalScrollWrapper.style.display !== 'none') {\r\n        isUpdateScheduled = true;\r\n        requestAnimationFrame(manageScroll);\r\n      }\r\n    });\r\n\r\n  });\r\n\r\n  \/\/ Enhanced editor controls for multiple sections\r\n  function addEditorScrollControls(container, translateElement, containerIndex) {\r\n    \/\/ Check if control panel already exists\r\n    if (document.querySelector('.horizontal-scroll-controls')) return;\r\n    \r\n    const controlPanel = document.createElement('div');\r\n    controlPanel.className = 'horizontal-scroll-controls';\r\n    controlPanel.style.cssText = `\r\n      position: fixed;\r\n      top: 10px;\r\n      right: 10px;\r\n      background: rgba(0,0,0,0.9);\r\n      color: white;\r\n      padding: 15px;\r\n      border-radius: 8px;\r\n      z-index: 99999;\r\n      font-family: Arial, sans-serif;\r\n      font-size: 12px;\r\n      min-width: 250px;\r\n      max-height: 400px;\r\n      overflow-y: auto;\r\n    `;\r\n    \r\n    \/\/ Add controls for each container\r\n    let controlsHTML = '<div style=\"font-weight: bold; margin-bottom: 10px;\">Horizontal Scroll Controls<\/div>';\r\n    \r\n    document.querySelectorAll('.horizontalScrollWrapper').forEach((wrapper, idx) => {\r\n      const isMobileSection = wrapper.classList.contains('mobile-only') || wrapper.hasAttribute('data-mobile-only') ||\r\n                             wrapper.querySelector('.horizontalScrollContainer')?.classList.contains('mobile-only') ||\r\n                             wrapper.querySelector('.horizontalScrollContainer')?.hasAttribute('data-mobile-only');\r\n      const isDesktopSection = wrapper.classList.contains('desktop-only') || wrapper.hasAttribute('data-desktop-only') ||\r\n                              wrapper.querySelector('.horizontalScrollContainer')?.classList.contains('desktop-only') ||\r\n                              wrapper.querySelector('.horizontalScrollContainer')?.hasAttribute('data-desktop-only');\r\n      \r\n      let sectionType = 'All Devices';\r\n      if (isMobileSection) sectionType = 'Mobile Only';\r\n      if (isDesktopSection) sectionType = 'Desktop Only';\r\n      \r\n      controlsHTML += `\r\n        <div style=\"border: 1px solid #444; padding: 10px; margin: 5px 0; border-radius: 4px;\">\r\n          <div style=\"font-weight: bold;\">Section ${idx + 1} (${sectionType})<\/div>\r\n          <input type=\"range\" class=\"scroll-range\" data-container=\"${idx}\" min=\"0\" max=\"100\" value=\"0\" style=\"width: 100%; margin: 5px 0;\">\r\n          <div>\r\n            <button class=\"scroll-btn-left\" data-container=\"${idx}\" style=\"margin-right: 5px;\">\u2190 Left<\/button>\r\n            <button class=\"scroll-btn-right\" data-container=\"${idx}\">Right \u2192<\/button>\r\n          <\/div>\r\n        <\/div>\r\n      `;\r\n    });\r\n    \r\n    controlPanel.innerHTML = controlsHTML;\r\n    document.body.appendChild(controlPanel);\r\n    \r\n    \/\/ Add event listeners for all controls\r\n    controlPanel.addEventListener('input', function(e) {\r\n      if (e.target.classList.contains('scroll-range')) {\r\n        const containerIndex = parseInt(e.target.getAttribute('data-container'));\r\n        const wrapper = document.querySelectorAll('.horizontalScrollWrapper')[containerIndex];\r\n        const translateEl = wrapper.querySelector('.horizontalScrollTranslate');\r\n        const maxScroll = translateEl.offsetWidth - window.innerWidth;\r\n        const scrollPercent = e.target.value \/ 100;\r\n        translateEl.style.transform = `translateX(${scrollPercent * maxScroll * -1}px)`;\r\n      }\r\n    });\r\n    \r\n    controlPanel.addEventListener('click', function(e) {\r\n      if (e.target.classList.contains('scroll-btn-left') || e.target.classList.contains('scroll-btn-right')) {\r\n        const containerIndex = parseInt(e.target.getAttribute('data-container'));\r\n        const slider = controlPanel.querySelector(`input[data-container=\"${containerIndex}\"]`);\r\n        const isLeft = e.target.classList.contains('scroll-btn-left');\r\n        \r\n        slider.value = Math.max(0, Math.min(100, parseInt(slider.value) + (isLeft ? -10 : 10)));\r\n        slider.dispatchEvent(new Event('input'));\r\n      }\r\n    });\r\n    \r\n    \/\/ Add mouse wheel support for each container\r\n    document.querySelectorAll('.horizontalScrollWrapper').forEach((wrapper, idx) => {\r\n      const cont = wrapper.querySelector('.horizontalScrollContainer');\r\n      if (!cont) return;\r\n      \r\n      cont.addEventListener('wheel', function(e) {\r\n        if (wrapper.style.display === 'none') return;\r\n        \r\n        e.preventDefault();\r\n        const translateEl = wrapper.querySelector('.horizontalScrollTranslate');\r\n        const currentTransform = translateEl.style.transform;\r\n        const currentX = currentTransform ? parseInt(currentTransform.match(\/translateX\\(([^)]+)px\\)\/)?.[1]) || 0 : 0;\r\n        const maxScroll = translateEl.offsetWidth - window.innerWidth;\r\n        const newX = Math.max(Math.min(0, currentX - e.deltaY), -maxScroll);\r\n        translateEl.style.transform = `translateX(${newX}px)`;\r\n        \r\n        \/\/ Update corresponding slider\r\n        const slider = controlPanel.querySelector(`input[data-container=\"${idx}\"]`);\r\n        if (slider) {\r\n          const percent = Math.abs(newX) \/ maxScroll * 100;\r\n          slider.value = percent;\r\n        }\r\n      });\r\n    });\r\n  }\r\n\r\n  \/* preload the images after the first image gets in the viewport *\/\r\n  (function () {\r\n    let images = document.querySelectorAll('.horizontalScrollWrapper img');\r\n    if (!images.length) return;\r\n    \r\n    images.forEach(img => {\r\n      let options = {\r\n        root: null,\r\n        rootMargin: '0px',\r\n        threshold: 0.3\r\n      };\r\n\r\n      let observer = new IntersectionObserver((entries, observer) => {\r\n        entries.forEach(entry => {\r\n          if (entry.isIntersecting) {\r\n            addPreloadLink(img);\r\n            observer.unobserve(img);\r\n          }\r\n        });\r\n      }, options);\r\n\r\n      observer.observe(img);\r\n    });\r\n  })();\r\n\r\n  function addPreloadLink(img) {\r\n    let link = document.createElement('link');\r\n    link.rel = 'preload';\r\n    link.href = img.src || img.dataset.src;\r\n    link.as = 'image';\r\n    if (img.srcset) link.setAttribute('imagesrcset', img.srcset);\r\n    if (img.sizes) link.setAttribute('imagesizes', img.sizes);\r\n    document.head.appendChild(link);\r\n  }\r\n  \/* END OF preload the images after the first image gets in the viewport *\/\r\n\r\n  \/* link anchors support *\/\r\n  const anchorLinks = document.querySelectorAll('a[href*=\"#\"]');\r\n\r\n  anchorLinks.forEach((link) => {\r\n    link.addEventListener('click', function (event) {\r\n      const href = this.getAttribute('href');\r\n      const anchorIndex = href.lastIndexOf('#');\r\n      const targetID = anchorIndex !== -1 ? href.substring(anchorIndex + 1) : '';\r\n      const targetElement = document.getElementById(targetID);\r\n\r\n      if (targetElement) {\r\n        const translateContainer = targetElement.closest('.horizontalScrollTranslate');\r\n\r\n        if (translateContainer) {\r\n          const wrapper = translateContainer.closest('.horizontalScrollWrapper');\r\n          const container = wrapper?.querySelector('.horizontalScrollContainer');\r\n          \r\n          \/\/ Check if the wrapper is currently visible\r\n          if (wrapper?.style.display === 'none') return;\r\n          \r\n          event.preventDefault();\r\n\r\n          if (isElementorEditor) {\r\n            const scrollDistance = targetElement.offsetLeft;\r\n            const maxScroll = translateContainer.offsetWidth - window.innerWidth;\r\n            const scrollPercent = scrollDistance \/ maxScroll * 100;\r\n            \r\n            translateContainer.style.transform = `translateX(-${scrollDistance}px)`;\r\n            \r\n            \/\/ Update corresponding control slider\r\n            const containerIndex = Array.from(document.querySelectorAll('.horizontalScrollWrapper')).indexOf(wrapper);\r\n            const slider = document.querySelector(`input[data-container=\"${containerIndex}\"]`);\r\n            if (slider) slider.value = scrollPercent;\r\n            \r\n          } else {\r\n            let scrollParent = translateContainer.closest('.horizontalScrollWrapper');\r\n            let scrollHeight = scrollParent.offsetHeight;\r\n            let scrollDistance = targetElement.offsetLeft \/ (translateContainer.offsetWidth - window.innerWidth) * (scrollHeight - translateContainer.parentElement.offsetHeight - 100);\r\n            \/* we consider the 100px offset to make it sticky a bit longer after it reaches the end, for better UX \r\n            * we also consider the speedMultipliers, through the scrollHeight \r\n            *\/\r\n            scrollDistance += scrollParent.getBoundingClientRect().top + window.scrollY;\r\n\r\n            setTimeout(function () {\r\n              if (typeof jQuery !== 'undefined') {\r\n                jQuery('html,body').animate({ scrollTop: scrollDistance }, 1300);\r\n              } else {\r\n                window.scrollTo({ top: scrollDistance, behavior: 'smooth' });\r\n              }\r\n            }, 100);\r\n          }\r\n        }\r\n      }\r\n    });\r\n  });\r\n  \/* END OF link anchors support *\/\r\n\r\n});\r\n<\/script>\r\n\r\n<style>\r\n\/* Multi-Section Horizontal Scroll CSS *\/\r\n\r\nbody:not(.elementor-editor-active) .horizontalScrollContainer {\r\n    overflow: hidden;\r\n}\r\n\r\n.horizontalScrollContainer {\r\n    position: sticky;\r\n    top: 0;\r\n}\r\n\r\n\/* Editor-specific overrides *\/\r\nbody.elementor-editor-active .horizontalScrollContainer {\r\n    overflow-x: auto;\r\n    overflow-y: hidden;\r\n}\r\n\r\n.horizontalScrollTranslate.e-con {\r\n    width: fit-content;\r\n    transition: transform 0.14s cubic-bezier(.03,.89,.74,1.01);\r\n}\r\n\r\nbody.elementor-editor-active .horizontalScrollTranslate.e-con {\r\n    transition: none;\r\n}\r\n\r\n.horizontalScrollTranslate > .e-con.e-con {\r\n   min-width: 100vw;\r\n   height: 100vh;\r\n   max-height: 100vh;\r\n   max-width: 100vw; \/* delete if you want containers that are direct children of \"horizontalScrollTranslate\" to be more than 100vw *\/\r\n}\r\n\r\n\/* Device-specific visibility for wrappers *\/\r\n@media (max-width: 767px) {\r\n    .horizontalScrollWrapper.desktop-only {\r\n        display: none !important;\r\n    }\r\n    \r\n    .horizontalScrollWrapper.mobile-only {\r\n        display: block;\r\n    }\r\n    \r\n    \/* Also check container classes for backward compatibility *\/\r\n    .horizontalScrollWrapper .horizontalScrollContainer.desktop-only {\r\n        display: none !important;\r\n    }\r\n    \r\n    \/* Mobile-specific adjustments *\/\r\n    .horizontalScrollTranslate > .e-con.e-con {\r\n        min-height: 100vh;\r\n        height: 100vh;\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    .horizontalScrollWrapper.mobile-only {\r\n        display: none !important;\r\n    }\r\n    \r\n    .horizontalScrollWrapper.desktop-only {\r\n        display: block;\r\n    }\r\n    \r\n    \/* Also check container classes for backward compatibility *\/\r\n    .horizontalScrollWrapper .horizontalScrollContainer.mobile-only {\r\n        display: none !important;\r\n    }\r\n}\r\n\r\n\/* Editor adjustments for better editing experience *\/\r\nbody.elementor-editor-active .horizontalScrollTranslate > .e-con.e-con {\r\n   min-height: 60vh;\r\n   height: auto;\r\n}\r\n\r\n\/* Ensure sections don't interfere with each other *\/\r\n.horizontalScrollWrapper + .horizontalScrollWrapper {\r\n    margin-top: 0;\r\n}\r\n\r\n\/* Optional: Add visual indicators in editor for wrappers *\/\r\nbody.elementor-editor-active .horizontalScrollWrapper.mobile-only::before {\r\n    content: \"\ud83d\udcf1 MOBILE ONLY\";\r\n    position: absolute;\r\n    top: 5px;\r\n    left: 5px;\r\n    background: #e74c3c;\r\n    color: white;\r\n    padding: 3px 8px;\r\n    font-size: 10px;\r\n    z-index: 1000;\r\n    border-radius: 3px;\r\n    font-weight: bold;\r\n}\r\n\r\nbody.elementor-editor-active .horizontalScrollWrapper.desktop-only::before {\r\n    content: \"\ud83d\udda5\ufe0f DESKTOP ONLY\";\r\n    position: absolute;\r\n    top: 5px;\r\n    left: 5px;\r\n    background: #3498db;\r\n    color: white;\r\n    padding: 3px 8px;\r\n    font-size: 10px;\r\n    z-index: 1000;\r\n    border-radius: 3px;\r\n    font-weight: bold;\r\n}\r\n\r\n\/* Also support container-level classes for backward compatibility *\/\r\nbody.elementor-editor-active .horizontalScrollContainer.mobile-only::before {\r\n    content: \"\ud83d\udcf1 MOBILE ONLY\";\r\n    position: absolute;\r\n    top: 5px;\r\n    left: 5px;\r\n    background: #e74c3c;\r\n    color: white;\r\n    padding: 3px 8px;\r\n    font-size: 10px;\r\n    z-index: 1000;\r\n    border-radius: 3px;\r\n    font-weight: bold;\r\n}\r\n\r\nbody.elementor-editor-active .horizontalScrollContainer.desktop-only::before {\r\n    content: \"\ud83d\udda5\ufe0f DESKTOP ONLY\";\r\n    position: absolute;\r\n    top: 5px;\r\n    left: 5px;\r\n    background: #3498db;\r\n    color: white;\r\n    padding: 3px 8px;\r\n    font-size: 10px;\r\n    z-index: 1000;\r\n    border-radius: 3px;\r\n    font-weight: bold;\r\n}\r\n<\/style>\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<div data-section-luminosity=\"dark\" class=\"elementor-element elementor-element-f77673b e-con-full wrapper e-flex e-con e-parent\" data-id=\"f77673b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6409744 e-con-full back e-flex e-con e-child\" data-id=\"6409744\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/video.gumlet.io\\\/67d29303cbc68914a3378816\\\/67d29342cbc68914a3378a66\\\/download.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-ff3e8f0 elementor-widget elementor-widget-html\" data-id=\"ff3e8f0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script src=\"https:\/\/unpkg.com\/gsap@3\/dist\/gsap.min.js\"><\/script>\r\n<script src=\"https:\/\/unpkg.com\/gsap@3\/dist\/ScrollTrigger.min.js\"><\/script>\r\n\r\n<script>\r\ngsap.registerPlugin(ScrollTrigger);\r\n\r\nlet arr = gsap.utils.toArray(\".wrapper\");\r\n\r\narr.forEach((e) => {\r\n  const target = e.children[0];\r\n\r\n  \/\/ \u05d4\u05ea\u05d7\u05dc\u05d4: \u05e2\u05d9\u05d2\u05d5\u05dc \u05e9\u05de\u05db\u05e1\u05d4 \u05d0\u05ea \u05db\u05dc \u05d4\u05d0\u05dc\u05de\u05e0\u05d8 \u2014 \u05e0\u05e8\u05d0\u05d4 \u05db\u05de\u05d5 \u05e8\u05d9\u05d1\u05d5\u05e2\r\n  gsap.set(target, {\r\n    clipPath: \"circle(100% at 50% 50%)\"\r\n  });\r\n\r\n  let tl = gsap.timeline({\r\n    scrollTrigger: {\r\n      trigger: e,\r\n      scrub: 0.3,\r\n      start: \"center center\",\r\n      end: \"bottom center\"\r\n    }\r\n  });\r\n\r\n  \/\/ \u05de\u05ea\u05db\u05d5\u05d5\u05e5 \u05dc\u05e2\u05d9\u05d2\u05d5\u05dc \u05e7\u05d8\u05df \u05d1\u05d2\u05dc\u05d9\u05dc\u05d4\r\n  tl.to(target, {\r\n    clipPath: \"circle(30% at 50% 50%)\",\r\n    ease: \"power2.out\"\r\n  });\r\n});\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43ce59c elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"43ce59c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_effect&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_direction&quot;:&quot;in-out&quot;,&quot;motion_fx_opacity_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:66,&quot;end&quot;:100}},&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:34,&quot;end&quot;:100}},&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_opacity_level&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:80}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249a851f\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h1 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h1\"  > From just a <b>Place <\/b><br>to <b>FREE SPACE<\/b><\/h1>\t\t<\/div>\n\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-d2213ff elementor-widget elementor-widget-spacer\" data-id=\"d2213ff\" data-element_type=\"widget\" data-e-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-86ae5e3 e-transform elementor-align-center elementor-widget elementor-widget-lottie\" data-id=\"86ae5e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;source_json&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/freespace-arch.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Comp-1.json&quot;,&quot;id&quot;:7236,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;link_to&quot;:&quot;custom&quot;,&quot;custom_link&quot;:{&quot;url&quot;:&quot;#start&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:90,&quot;sizes&quot;:[]},&quot;source&quot;:&quot;media_file&quot;,&quot;caption_source&quot;:&quot;none&quot;,&quot;trigger&quot;:&quot;arriving_to_viewport&quot;,&quot;viewport&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;play_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;end_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;renderer&quot;:&quot;svg&quot;,&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"lottie.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<a class=\"e-lottie__container__link\" href=\"#start\"><div class=\"e-lottie__container\"><div class=\"e-lottie__animation\"><\/div><\/div><\/a>\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-155602d e-flex e-con-boxed e-con e-parent\" data-id=\"155602d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ed9d1bb elementor-widget elementor-widget-menu-anchor\" data-id=\"ed9d1bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"start\"><\/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-e33c8fb textRevealOnScroll elementor-widget elementor-widget-heading\" data-id=\"e33c8fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u05d0\u05e0\u05d7\u05e0\u05d5 \u05de\u05d0\u05de\u05d9\u05e0\u05d9\u05dd \u05e9\u05ea\u05e4\u05e7\u05d9\u05d3\u05e0\u05d5 \u05db\u05d0\u05d3\u05e8\u05d9\u05db\u05dc\u05d9\u05dd \u05d4\u05d5\u05d0 \u05dc\u05ea\u05db\u05e0\u05df \u05de\u05e7\u05d5\u05de\u05d5\u05ea \u05d8\u05d5\u05d1\u05d9\u05dd \u05d1\u05db\u05dc \u05e7\u05e0\u05d4 \u05de\u05d9\u05d3\u05d4 - <br>\u05db\u05d0\u05dc\u05d4 \u05e9\u05de\u05d9\u05d9\u05e6\u05e8\u05d9\u05dd \u05d7\u05d5\u05d5\u05d9\u05d9\u05ea \u05e9\u05d4\u05d9\u05d9\u05d4 \u05e0\u05e2\u05d9\u05de\u05d4, \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd \u05d1\u05d0\u05d5\u05e4\u05df \u05e2\u05de\u05d5\u05e7 \u05dc\u05de\u05e8\u05d7\u05d1 \u05d4\u05e1\u05d5\u05d1\u05d1 \u05d0\u05d5\u05ea\u05dd, <br>\u05d5\u05de\u05e9\u05de\u05e9\u05d9\u05dd \u05db\u05e7\u05e8\u05e7\u05e2 \u05e4\u05d5\u05e8\u05d4 \u05dc\u05d0\u05d9\u05e0\u05d8\u05e8\u05d0\u05e7\u05e6\u05d9\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d5\u05dc\u05e8\u05d2\u05e2\u05d9\u05dd \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9\u05d9\u05dd. <br>\u05d4\u05d2\u05d9\u05e9\u05d4 \u05d4\u05d6\u05d5 \u05de\u05e0\u05d7\u05d4 \u05d0\u05d5\u05ea\u05e0\u05d5 \u05d1\u05db\u05dc \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d5\u05de\u05d4\u05d5\u05d5\u05d4 \u05de\u05d3\u05d3 \u05dc\u05d0\u05d9\u05db\u05d5\u05ea \u2013 \u05d4\u05d7\u05dc \u05de\u05ea\u05db\u05e0\u05d5\u05df \u05e9\u05dc \u05e4\u05d9\u05e0\u05d4 \u05d0\u05d9\u05e0\u05d8\u05d9\u05de\u05d9\u05ea \u05d5\u05e2\u05d3 \u05dc\u05e2\u05d9\u05e6\u05d5\u05d1 \u05de\u05d1\u05e0\u05d9\u05dd \u05d5\u05de\u05e8\u05d7\u05d1\u05d9\u05dd \u05d2\u05d3\u05d5\u05dc\u05d9\u05dd. \u05e2\u05d1\u05d5\u05e8\u05e0\u05d5, \u05d0\u05d9\u05db\u05d5\u05ea \u05d0\u05d3\u05e8\u05d9\u05db\u05dc\u05d9\u05ea \u05d4\u05d9\u05d0 \u05d4\u05d9\u05db\u05d5\u05dc\u05ea \u05dc\u05d4\u05e4\u05d5\u05da \u05d7\u05dc\u05dc \u05dc\u05de\u05e7\u05d5\u05dd \u05d7\u05d9, <br>\u05e0\u05d5\u05e9\u05dd \u05d5\u05e8\u05dc\u05d5\u05d5\u05e0\u05d8\u05d9 \u05dc\u05d0\u05d5\u05e8\u05da \u05d6\u05de\u05df.\n<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f913b31 elementor-widget elementor-widget-html\" data-id=\"f913b31\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script src=\"https:\/\/unpkg.com\/split-type\"><\/script>\r\n<style>\r\n.textRevealOnScroll,\r\n.stickyTextRevealWrapper {\r\n    --text-reveal-from: 0.3;\r\n    --text-reveal-to: 0.4;\r\n  --text-reveal-before-color: rgba(128, 128, 128, 0.3)\r\n  !important; \/* light gray *\/\r\n--text-reveal-after-color: #000000!important;                   \/* black *\/\r\n\r\n    --text-reveal-transition-duration: 0.4s;\r\n    --text-reveal-sticky-wrapper-height: 230vh;\r\n    --text-reveal-sticky-wrapper-height-mobile: 200vh;\r\n}\r\n\r\n.textRevealOnScroll .elementor-heading-title .line,\r\n.stickyTextRevealWrapper .elementor-heading-title .line {\r\n    background: linear-gradient(to left, var(--text-reveal-after-color) 50%, var(--text-reveal-before-color) 56%);\r\n    background-size: 230% 100%;\r\n    background-position-x: 100%;\r\n    color: transparent;\r\n    background-clip: text;\r\n    -webkit-background-clip: text;\r\n    transition: background-position var(--text-reveal-transition-duration);\r\n    white-space: nowrap;\r\n}\r\n\r\n_::-webkit-full-page-media, _:future, :root .textRevealOnScroll .elementor-heading-title .line,\r\n:root .stickyTextRevealWrapper .elementor-heading-title .line {\r\n    transition: 0.14s;\r\n}\r\n\r\n.stickyTextRevealWrapper {\r\n    height: var(--text-reveal-sticky-wrapper-height);\r\n    padding: 0;\r\n}\r\n\r\n@media (max-width:1024px) {\r\n    .stickyTextRevealWrapper {\r\n        height: var(--text-reveal-sticky-wrapper-height-mobile);\r\n    }\r\n}\r\n\r\n.stickyTextRevealWrapper > .e-con-inner {\r\n    padding: 0;\r\n}\r\n\r\n.stickyTextRevealContainer {\r\n    height: 100vh;\r\n    position: sticky;\r\n    top: 0;\r\n    padding-top: 0;\r\n    padding-bottom: 0;\r\n}\r\n<\/style>\r\n\r\n<script src=\"https:\/\/unpkg.com\/split-type\"><\/script>\r\n<script>\r\ndocument.addEventListener('DOMContentLoaded', function () {\r\n\r\n    let textRevealWrappers = document.querySelectorAll('.stickyTextRevealWrapper, .textRevealOnScroll');\r\n\r\n    textRevealWrappers.forEach((textRevealWrapper) => {\r\n        let textRevealContainer = textRevealWrapper.querySelector('.stickyTextRevealContainer');\r\n        let textRevealHeading = textRevealWrapper.querySelector('.elementor-heading-title');\r\n        let scrolledRatio = 0;\r\n        let textRevealWrapperHeight;\r\n\r\n        const isMobile = \/iPhone|iPad|Android|SamsungBrowser\/i.test(navigator.userAgent);\r\n\r\n        let settings = {\r\n            from: parseFloat(window.getComputedStyle(textRevealWrapper).getPropertyValue('--text-reveal-from')),\r\n            to: parseFloat(window.getComputedStyle(textRevealWrapper).getPropertyValue('--text-reveal-to')),\r\n            isSticky: textRevealContainer && (window.getComputedStyle(textRevealContainer).position === 'sticky' || window.getComputedStyle(textRevealContainer).position === '-webkit-sticky'),\r\n        };\r\n\r\n        let splittedText = new SplitType(textRevealHeading, { types: \"lines\" });\r\n\r\n        addCSSVariables();\r\n        textRevealWrapper.style.setProperty('--scrolled-ratio', scrolledRatio);\r\n\r\n        function updateValues() {\r\n            textRevealWrapperHeight = textRevealWrapper.offsetHeight;\r\n        }\r\n\r\n        updateValues();\r\n        let isUpdateScheduled = false;\r\n\r\n        function manageScrollSticky() {\r\n            let textRevealWrapperTop = textRevealWrapper.getBoundingClientRect().top;\r\n            let textRevealContainerTop = textRevealContainer.getBoundingClientRect().top;\r\n            let windowHeight = window.innerHeight;\r\n            scrolledRatio = (textRevealWrapperTop - textRevealContainerTop) \/ (textRevealWrapperHeight - windowHeight) * -1;\r\n            scrolledRatio = Math.min(Math.max(scrolledRatio, 0), 1);\r\n            textRevealWrapper.style.setProperty('--scrolled-ratio', scrolledRatio);\r\n            isUpdateScheduled = false;\r\n\r\n            splittedText.lines.forEach((line, index) => {\r\n                let backgroundXPos = Math.min(Math.max((scrolledRatio * splittedText.lines.length - index) * 100, 0), 100);\r\n                line.style.backgroundPositionX = `${backgroundXPos}%`;\r\n            });\r\n        }\r\n\r\n        function manageScroll() {\r\n            let textRevealWrapperTop = textRevealWrapper.getBoundingClientRect().top;\r\n            let windowHeight = window.innerHeight;\r\n            scrolledRatio = (textRevealWrapperTop - windowHeight * (1 - settings.from)) \/ \r\n                (textRevealWrapperHeight + (windowHeight * (1 - settings.from)) - (windowHeight * settings.to)) * -1;\r\n            scrolledRatio = Math.min(Math.max(scrolledRatio, 0), 1);\r\n            textRevealWrapper.style.setProperty('--scrolled-ratio', scrolledRatio);\r\n            isUpdateScheduled = false;\r\n\r\n            splittedText.lines.forEach((line, index) => {\r\n                let backgroundXPos = Math.min(Math.max((scrolledRatio * splittedText.lines.length - index) * 100, 0), 100);\r\n                line.style.backgroundPositionX = `${backgroundXPos}%`;\r\n            });\r\n        }\r\n\r\n        window.addEventListener('scroll', () => {\r\n            if (!isUpdateScheduled) {\r\n                isUpdateScheduled = true;\r\n                requestAnimationFrame(settings.isSticky ? manageScrollSticky : manageScroll);\r\n            }\r\n        });\r\n\r\n        let windowsWidth = window.innerWidth;\r\n        window.addEventListener(\"resize\", function () {\r\n            if (windowsWidth !== window.innerWidth) {\r\n                updateValues();\r\n                splittedText = new SplitType(textRevealHeading, { types: \"lines\" });\r\n                addCSSVariables();\r\n                windowsWidth = window.innerWidth;\r\n            }\r\n        });\r\n\r\n        function addCSSVariables() {\r\n            splittedText.lines.forEach((line, index) => {\r\n                line.style.setProperty('--line-index', index);\r\n                line.style.setProperty('--line-total', splittedText.lines.length);\r\n                if (isMobile) line.style.transition = 'none';\r\n            });\r\n        }\r\n\r\n    });\r\n\r\n});\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-48bb9ff animated-slow elementor-hidden-mobile e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"48bb9ff\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;zoomIn&quot;,&quot;animation_delay&quot;:3}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aee64b8 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"aee64b8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"web-stories-list alignnone is-view-type-circles is-style-default is-carousel\" data-id=\"5\">\n\t\t\t<div\n\t\t\tclass=\"web-stories-list__inner-wrapper carousel-5\"\n\t\t\tstyle=\"--ws-circle-size:125px\"\n\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\tclass=\"web-stories-list__carousel circles\"\n\t\t\t\t\tdata-id=\"carousel-5\"\n\t\t\t\t\tdata-prev=\"Previous\"\n\t\t\t\t\tdata-next=\"Next\"\n\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":5}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-4\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05e1\u05d1\u05d9\u05d1\u05d41.gif\"\n\t\t\t\t\t\talt=\"Beyond Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":5}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-3\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05d7\u05dc\u05dc.gif\"\n\t\t\t\t\t\talt=\"Full Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":5}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-2\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05de\u05e7\u05d5\u05dd1.gif\"\n\t\t\t\t\t\talt=\"Inter Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":5}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05de\u05d5\u05e6\u05e8.gif\"\n\t\t\t\t\t\talt=\"Micro Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Previous\" class=\"glider-prev\"><\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Next\" class=\"glider-next\"><\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\/\/\/\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e257e0 elementor-hidden-tablet elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-wp-widget-web_stories_widget\" data-id=\"0e257e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_direction&quot;:&quot;in-out&quot;,&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:10,&quot;end&quot;:100}},&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1000,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"wp-widget-web_stories_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"web-stories-list alignnone web-stories-list--widget is-view-type-circles is-style-default has-title is-carousel\" data-id=\"3\">\n\t\t\t<div\n\t\t\tclass=\"web-stories-list__inner-wrapper carousel-3\"\n\t\t\tstyle=\"--ws-circle-size:150px\"\n\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\tclass=\"web-stories-list__carousel circles\"\n\t\t\t\t\tdata-id=\"carousel-3\"\n\t\t\t\t\tdata-prev=\"Previous\"\n\t\t\t\t\tdata-next=\"Next\"\n\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":3}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-4\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05e1\u05d1\u05d9\u05d1\u05d41.gif\"\n\t\t\t\t\t\talt=\"Beyond Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tBeyond Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":3}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-3\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05d7\u05dc\u05dc.gif\"\n\t\t\t\t\t\talt=\"Full Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tFull Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":3}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-2\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05de\u05e7\u05d5\u05dd1.gif\"\n\t\t\t\t\t\talt=\"Inter Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tInter Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":3}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05de\u05d5\u05e6\u05e8.gif\"\n\t\t\t\t\t\talt=\"Micro Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tMicro Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Previous\" class=\"glider-prev\"><\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Next\" class=\"glider-next\"><\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1f40b79 animated-slow elementor-hidden-desktop e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"1f40b79\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;zoomIn&quot;,&quot;animation_delay&quot;:3}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57c6f1c elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"57c6f1c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"web-stories-list alignnone is-view-type-circles is-style-default is-carousel\" data-id=\"6\">\n\t\t\t<div\n\t\t\tclass=\"web-stories-list__inner-wrapper carousel-6\"\n\t\t\tstyle=\"--ws-circle-size:125px\"\n\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\tclass=\"web-stories-list__carousel circles\"\n\t\t\t\t\tdata-id=\"carousel-6\"\n\t\t\t\t\tdata-prev=\"Previous\"\n\t\t\t\t\tdata-next=\"Next\"\n\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":6}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-4\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05e1\u05d1\u05d9\u05d1\u05d41.gif\"\n\t\t\t\t\t\talt=\"Beyond Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":6}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-3\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05d7\u05dc\u05dc.gif\"\n\t\t\t\t\t\talt=\"Full Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":6}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-2\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05de\u05e7\u05d5\u05dd1.gif\"\n\t\t\t\t\t\talt=\"Inter Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":6}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05de\u05d5\u05e6\u05e8.gif\"\n\t\t\t\t\t\talt=\"Micro Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Previous\" class=\"glider-prev\"><\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Next\" class=\"glider-next\"><\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\/\/\/\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ade496b elementor-hidden-desktop elementor-invisible elementor-widget elementor-widget-wp-widget-web_stories_widget\" data-id=\"ade496b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"wp-widget-web_stories_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"web-stories-list alignnone web-stories-list--widget is-view-type-circles is-style-default has-title is-carousel\" data-id=\"4\">\n\t\t\t<div\n\t\t\tclass=\"web-stories-list__inner-wrapper carousel-4\"\n\t\t\tstyle=\"--ws-circle-size:80px\"\n\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\tclass=\"web-stories-list__carousel circles\"\n\t\t\t\t\tdata-id=\"carousel-4\"\n\t\t\t\t\tdata-prev=\"Previous\"\n\t\t\t\t\tdata-next=\"Next\"\n\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":4}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-4\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05e1\u05d1\u05d9\u05d1\u05d41.gif\"\n\t\t\t\t\t\talt=\"Beyond Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tBeyond Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":4}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-3\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05d7\u05dc\u05dc.gif\"\n\t\t\t\t\t\talt=\"Full Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tFull Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":4}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8-2\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05de\u05e7\u05d5\u05dd1.gif\"\n\t\t\t\t\t\talt=\"Inter Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tInter Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div\n\t\t\t\tclass=\"web-stories-list__story\"\n\t\t\t\tdata-wp-interactive=\"web-stories-block\"\n\t\t\t\tdata-wp-context='{\"instanceId\":4}'\t\t\t\tdata-wp-on--click=\"actions.open\"\n\t\t\t\tdata-wp-on-window--popstate=\"actions.onPopstate\"\n\t\t\t\t>\n\t\t\t\t\t\t\t<div class=\"web-stories-list__story-poster\">\n\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?web-story=%d7%9e%d7%95%d7%a6%d7%a8\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/1\u05de\u05d5\u05e6\u05e8.gif\"\n\t\t\t\t\t\talt=\"Micro Space\"\n\t\t\t\t\t\twidth=\"185\"\n\t\t\t\t\t\theight=\"308\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsizes=\"auto, (max-width: 300px) 100vw, 300px\"\n\t\t\t\t\t\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\tdecoding=\"async\"\n\t\t\t\t\t>\n\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<div class=\"web-stories-list__story-content-overlay\">\n\t\t\t\t\t\t\t<div class=\"story-content-overlay__title\">\n\t\t\t\t\tMicro Space\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Previous\" class=\"glider-prev\"><\/div>\n\t\t\t\t\t<div tabindex=\"0\" aria-label=\"Next\" class=\"glider-next\"><\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f854be5 e-con-full horizontalScrollWrapper elementor-hidden-mobile elementor-hidden-tablet e-flex e-con e-parent\" data-id=\"f854be5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-275bf6a e-con-full horizontalScrollContainer e-flex e-con e-child\" data-id=\"275bf6a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d3c4521 e-con-full horizontalScrollTranslate e-flex e-con e-child\" data-id=\"d3c4521\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-55f5966 e-con-full e-transform e-flex e-con e-child\" data-id=\"55f5966\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-100,&quot;sizes&quot;:[]},&quot;background_background&quot;:&quot;classic&quot;,&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-b8fe20e animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"b8fe20e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-04d3d35 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"04d3d35\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249aaac3\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d0\u05d6 \u05de\u05d4\u05d5 \u05de\u05e7\u05d5\u05dd\n?<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark><\/h2>\t\t<\/div>\n\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-a117223 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"a117223\" data-element_type=\"widget\" data-e-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\"><b>\"\u05de\u05e7\u05d5\u05dd\" \u05d4\u05d5\u05d0 \u05d9\u05d5\u05ea\u05e8 \u05de\u05d7\u05dc\u05dc \u05d4\u05ea\u05d7\u05d5\u05dd \u05d1\u05d0\u05e8\u05d1\u05e2 \u05e7\u05d9\u05e8\u05d5\u05ea- \u05d4\u05d5\u05d0 \u05d7\u05d5\u05d5\u05d9\u05d4.\n<\/b><br>\u05de\u05e8\u05d7\u05d1 \u05e9\u05de\u05e9\u05e8\u05d4 \u05d0\u05d5\u05d5\u05d9\u05e8\u05d4 \u05d5\u05de\u05e9\u05dc\u05d1 \u05ea\u05d7\u05d5\u05e9\u05d5\u05ea \u05e9\u05dc \u05d6\u05d4\u05d5\u05ea \u05d5\u05e9\u05d9\u05d9\u05db\u05d5\u05ea. <\/br>\u05d4\u05d5\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d5\u05d2\u05d3\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d2\u05d1\u05d5\u05dc\u05d5\u05ea \u05de\u05d5\u05d7\u05e9\u05d9\u05d9\u05dd \u05d0\u05d5 \u05ea\u05d5\u05d3\u05e2\u05ea\u05d9\u05d9\u05dd. <br>\u05d4\u05d7\u05d5\u05de\u05e8\u05d9\u05dd, \u05d4\u05d0\u05d5\u05e8 \u05d5\u05d4\u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea \u05e9\u05dc \u05de\u05e7\u05d5\u05dd, \u05de\u05d9\u05d9\u05e6\u05e8\u05d9\u05dd \u05d9\u05d7\u05e1\u05d9\u05dd \u05d1\u05d9\u05df \u05d4\u05d0\u05d3\u05dd \u05dc\u05de\u05e8\u05d7\u05d1.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-98a2ec7 e-con-full e-flex e-con e-child\" data-id=\"98a2ec7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0bf4606 elementor-widget__width-initial elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"0bf4606\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249ab3d9\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > \u05d5\u05de\u05d4 \u05d4\u05d5\u05e4\u05da \u05de\u05e7\u05d5\u05dd \u05dc\u05be <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > Free space?\n<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-3276d94 elementor-align-left e-transform elementor-widget elementor-widget-lottie\" data-id=\"3276d94\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;source_json&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/freespace-arch.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Animation-1747211500717.json&quot;,&quot;id&quot;:3342,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;loop&quot;:&quot;yes&quot;,&quot;play_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.6,&quot;sizes&quot;:[]},&quot;reverse_animation&quot;:&quot;yes&quot;,&quot;_transform_flipX_effect&quot;:&quot;transform&quot;,&quot;source&quot;:&quot;media_file&quot;,&quot;caption_source&quot;:&quot;none&quot;,&quot;link_to&quot;:&quot;none&quot;,&quot;trigger&quot;:&quot;arriving_to_viewport&quot;,&quot;viewport&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;end_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;renderer&quot;:&quot;svg&quot;}\" data-widget_type=\"lottie.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"e-lottie__container\"><div class=\"e-lottie__animation\"><\/div><\/div>\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-3fe3dac e-con-full e-flex e-con e-child\" data-id=\"3fe3dac\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dc3f3d6 elementor-widget elementor-widget-ld_fancy_image\" data-id=\"dc3f3d6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_effect&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_level&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4.8,&quot;sizes&quot;:[]},&quot;motion_fx_opacity_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:9,&quot;end&quot;:40}},&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_direction&quot;:&quot;in-out&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-4,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_opacity_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"ld_fancy_image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div class=\"lqd-imggrp-single d-inline-flex pos-rel align-items-center justify-content-center\"   >\n\n\t\t\t\t\n\t\t\t\t<div class=\"lqd-imggrp-img-container pos-rel\" >\n\n\t\t\t\t\t<figure\n\t\t\t\t\t\tclass=\"w-100 pos-rel\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"854\" height=\"640\" src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/05\/05185.gif\" class=\"attachment-full size-full wp-image-3646\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/figure>\n\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\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-1381e9e elementor-widget elementor-widget-ld_fancy_image\" data-id=\"1381e9e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-10,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:7,&quot;end&quot;:32}},&quot;motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"ld_fancy_image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div class=\"lqd-imggrp-single d-inline-flex pos-rel align-items-center justify-content-center\"   >\n\n\t\t\t\t\n\t\t\t\t<div class=\"lqd-imggrp-img-container pos-rel\" >\n\n\t\t\t\t\t<figure\n\t\t\t\t\t\tclass=\"w-100 pos-rel\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t<img decoding=\"async\" width=\"854\" height=\"640\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 854 640&#039;%2F%3E\" class=\"attachment-full size-full wp-image-3646 ld-lazyload\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/05\/05185.gif\" data-aspect=\"1.334375\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/figure>\n\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-449fa9c e-con-full e-flex e-con e-child\" data-id=\"449fa9c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1abc884 animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"1abc884\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6875517 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"6875517\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249e62ea\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d4\u05ea\u05d0\u05de\u05d4\n<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-0bcae2f lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"0bcae2f\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e7\u05d5\u05dd \u05d8\u05d5\u05d1 \u05e0\u05d5\u05e6\u05e8 \u05de\u05ea\u05d5\u05da \u05d4\u05d9\u05db\u05e8\u05d5\u05ea \u05e2\u05dd \u05de\u05d9 \u05e9\u05e2\u05ea\u05d9\u05d3 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d5. <\/b><br>\u05ea\u05db\u05e0\u05d5\u05df \u05e9\u05de\u05ea\u05d7\u05d9\u05dc \u05de\u05d4\u05e7\u05e9\u05d1\u05d4 \u05dc\u05e8\u05e6\u05d5\u05e0\u05d5\u05ea \u05d5\u05dc\u05e6\u05e8\u05db\u05d9\u05dd \u05d4\u05e9\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05d4\u05d0\u05e0\u05e9\u05d9\u05dd. <\/br> \u05db\u05e9\u05d4\u05ea\u05d4\u05dc\u05d9\u05da \u05de\u05ea\u05d7\u05e9\u05d1 \u05d1\u05d3\u05e7\u05d5\u05d9\u05d5\u05ea \u05d4\u05d0\u05dc\u05d4, \u05e0\u05d5\u05e6\u05e8 \u05de\u05e8\u05d7\u05d1 \u05e9\u05de\u05ea\u05d0\u05d9\u05dd \u05d1\u05d3\u05d9\u05d5\u05e7 \u2013 <\/br> \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05d5, \u05dc\u05d7\u05dc\u05dc \u05e9\u05d1\u05d5 \u05d4\u05d5\u05d0 \u05de\u05e2\u05d5\u05e6\u05d1 \u05d5\u05dc\u05e1\u05d1\u05d9\u05d1\u05d4 \u05e9\u05d1\u05d4 \u05d4\u05d5\u05d0 \u05de\u05ea\u05e7\u05d9\u05d9\u05dd.<\/h2>\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-30a3be2 e-con-full e-flex e-con e-child\" data-id=\"30a3be2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-17e81c5 elementor-widget elementor-widget-video\" data-id=\"17e81c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/07\/\u05d4\u05ea\u05d0\u05de\u05d42.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-68d2632 e-con-full e-flex e-con e-child\" data-id=\"68d2632\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1ce8a30 animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"1ce8a30\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c2e2c58 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"c2e2c58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249e6b65\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9\u05d5\u05ea<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-6137197 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"6137197\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e7\u05d5\u05dd \u05e9\u05de\u05e9\u05e8\u05ea \u05d0\u05ea \u05d4\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05d5, \u05ea\u05d5\u05de\u05da \u05d1\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05d9\u05d5\u05de\u05d9\u05d5\u05de\u05d9\u05d5\u05ea \u05d5\u05de\u05ea\u05d0\u05d9\u05dd \u05dc\u05e6\u05e8\u05db\u05d9\u05dd \u05de\u05d2\u05d5\u05d5\u05e0\u05d9\u05dd.<\/b> <br> \u05de\u05e8\u05d7\u05d1 \u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9 \u05e2\u05d5\u05d6\u05e8 \u05dc\u05e0\u05d5 \u05dc\u05d4\u05d5\u05e8\u05d9\u05d3 \u05e2\u05d5\u05de\u05e1 \u05de\u05d9\u05d5\u05ea\u05e8, \u05d5\u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05d4\u05d9\u05d5\u05de\u05d9\u05d5\u05ea \u05dc\u05e7\u05e8\u05d5\u05ea \u05d1\u05d0\u05d5\u05e4\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 \u05d5\u05d1\u05e0\u05d5\u05d7\u05d5\u05ea. \u05de\u05e7\u05d5\u05dd \u05e9\u05db\u05d6\u05d4 \u05de\u05ea\u05d5\u05db\u05e0\u05df \u05de\u05ea\u05d5\u05da \u05d4\u05ea\u05d1\u05d5\u05e0\u05e0\u05d5\u05ea \u05db\u05d5\u05dc\u05dc\u05ea \u05d1\u05d7\u05dc\u05dc \u05d5\u05de\u05e0\u05e6\u05dc \u05d0\u05d5\u05ea\u05d5 \u05d1\u05de\u05dc\u05d5\u05d0\u05d5, \u05db\u05da \u05e9\u05db\u05dc \u05e4\u05d9\u05e0\u05d4 \u05de\u05e7\u05d1\u05dc\u05ea \u05ea\u05e4\u05e7\u05d9\u05d3 \u05de\u05de\u05e9\u05d9 \u05d1\u05d7\u05d9\u05d9 \u05d4\u05d9\u05d5\u05dd \u05d9\u05d5\u05dd.<\/h2>\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-80eeef9 e-con-full e-flex e-con e-child\" data-id=\"80eeef9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-18eeb3e elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"18eeb3e\" data-element_type=\"widget\" data-e-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<img decoding=\"async\" width=\"960\" height=\"640\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&apos;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&apos; viewBox%3D&apos;0 0 960 640&apos;%2F%3E\" class=\"attachment-full size-full wp-image-5406 ld-lazyload\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/051828.gif\" data-aspect=\"1.5\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8544dfe e-con-full e-flex e-con e-child\" data-id=\"8544dfe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-56452bb animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"56452bb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dcf0029 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"dcf0029\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249e732a\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d6\u05d4\u05d5\u05ea \u05d5\u05d0\u05d5\u05d5\u05d9\u05e8\u05d4<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-247fdb5 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"247fdb5\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e8\u05d7\u05d1 \u05e9\u05d9\u05e9 \u05d1\u05d5 \u05e0\u05e9\u05de\u05d4, \u05d5\u05de\u05e8\u05d2\u05d9\u05e9\u05d9\u05dd \u05d1\u05d5 \u05d0\u05ea\" \u05e8\u05d5\u05d7 \u05d4\u05de\u05e7\u05d5\u05dd \". <br> <\/b>\n\u05dc\u05db\u05dc \u05de\u05e7\u05d5\u05dd \u05d9\u05e9 \u05d0\u05d5\u05e4\u05d9 \u05e9\u05de\u05d5\u05e9\u05e4\u05e2 \u05de\u05d4\u05e1\u05d1\u05d9\u05d1\u05d4 \u05d5\u05de\u05d4\u05d0\u05e0\u05e9\u05d9\u05dd \u05e9\u05e0\u05de\u05e6\u05d0\u05d9\u05dd \u05d1\u05d5. <br> \u05d4\u05d7\u05d5\u05de\u05e8\u05d9\u05dd, \u05d4\u05d0\u05d5\u05e8 \u05d5\u05d4\u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05de\u05e7\u05d5\u05dd \u05de\u05d9\u05d9\u05e6\u05e8\u05d9\u05dd \u05de\u05e2\u05e8\u05db\u05ea \u05d9\u05d7\u05e1\u05d9\u05dd \u05d9\u05d9\u05d7\u05d5\u05d3\u05d9\u05ea \u05d1\u05d9\u05df \u05d4\u05d0\u05d3\u05dd \u05dc\u05de\u05e8\u05d7\u05d1.<br>  \u05e2\u05d9\u05e6\u05d5\u05d1 \u05e0\u05db\u05d5\u05df \u05de\u05d1\u05d8\u05d0 \u05d0\u05ea \u05d4\u05de\u05e8\u05db\u05d9\u05d1\u05d9\u05dd \u05d4\u05d0\u05dc\u05d4 \u05d1\u05de\u05e8\u05d7\u05d1, \u05de\u05d3\u05d2\u05d9\u05e9 \u05d5\u05de\u05e2\u05e6\u05d9\u05dd \u05d0\u05d5\u05ea\u05dd. <br>  \u05d6\u05d5\u05d4\u05d9 \u05d1\u05d3\u05d9\u05d5\u05e7 \u05d4\u05d0\u05d9\u05db\u05d5\u05ea \u05e9\u05de\u05e2\u05d5\u05e8\u05e8\u05ea \u05ea\u05d7\u05d5\u05e9\u05ea \u05e9\u05d9\u05d9\u05db\u05d5\u05ea, \u05d5\u05d4\u05d5\u05e4\u05db\u05ea \u05de\u05e7\u05d5\u05dd \u05dc\u05e0\u05d5\u05d7, <br>\u05d0\u05e1\u05ea\u05d8\u05d9 \u05d5\u05de\u05d3\u05d5\u05d9\u05e7. <\/h2>\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-8807430 e-con-full e-flex e-con e-child\" data-id=\"8807430\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0c0eba0 elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"0c0eba0\" data-element_type=\"widget\" data-e-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<img loading=\"lazy\" decoding=\"async\" width=\"1138\" height=\"640\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&apos;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&apos; viewBox%3D&apos;0 0 1138 640&apos;%2F%3E\" class=\"attachment-full size-full wp-image-5405 ld-lazyload\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/051829.gif\" data-aspect=\"1.778125\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b1c5148 e-con-full e-flex e-con e-child\" data-id=\"b1c5148\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fce8199 animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"fce8199\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fdb12d5 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"fdb12d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e5249e7af2\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d3\u05d9\u05e0\u05de\u05d9\u05d5\u05ea<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-89e45d1 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"89e45d1\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e7\u05d5\u05dd \u05e9\u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d0\u05ea \u05e2\u05e6\u05de\u05d5 \u05dc\u05e6\u05e8\u05db\u05d9\u05dd \u05de\u05e9\u05ea\u05e0\u05d9\u05dd, \u05dc\u05d0\u05d5\u05e8\u05da \u05d4\u05e9\u05e0\u05d9\u05dd. <\/b><br> \u05ea\u05db\u05e0\u05d5\u05df \u05e0\u05db\u05d5\u05df \u05d9\u05d5\u05e6\u05e8 \u05d7\u05dc\u05dc\u05d9\u05dd \u05d3\u05d9\u05e0\u05de\u05d9\u05d9\u05dd, \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05d0\u05d5\u05e4\u05df \u05e9\u05d1\u05d5 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05d4\u05dd. <br> \u05d0\u05d1\u05dc \u05d3\u05d9\u05e0\u05de\u05d9\u05d5\u05ea \u05d4\u05d9\u05d0 \u05dc\u05d0 \u05e8\u05e7 \u05e9\u05d9\u05e0\u05d5\u05d9 \u05dc\u05d0\u05d5\u05e8\u05da \u05d6\u05de\u05df, \u05d4\u05d9\u05d0 \u05d2\u05dd \u05d4\u05d3\u05e8\u05da \u05e9\u05d1\u05d4 \u05d4\u05de\u05e8\u05d7\u05d1 \u05de\u05ea\u05e7\u05e9\u05e8 \u05e2\u05dd \u05de\u05d9 \u05e9\u05e0\u05de\u05e6\u05d0 \u05d1\u05d5. <br> \u05ea\u05db\u05e0\u05d5\u05df \u05e9\u05de\u05e9\u05dc\u05d1 \u05d0\u05dc\u05de\u05e0\u05d8\u05d9\u05dd \u05d0\u05d9\u05e0\u05d8\u05e8\u05d0\u05e7\u05d8\u05d9\u05d1\u05d9\u05d9\u05dd, \u05de\u05db\u05e0\u05d9\u05e1 \u05dc\u05ea\u05d5\u05da \u05de\u05e8\u05d7\u05d1 \u05d0\u05d7\u05d3 \u05de\u05d2\u05d5\u05d5\u05df \u05e1\u05d9\u05d8\u05d5\u05d0\u05e6\u05d9\u05d5\u05ea \u05d0\u05e4\u05e9\u05e8\u05d9\u05d5\u05ea. <br> \u05d5\u05db\u05e9\u05d4\u05ea\u05db\u05e0\u05d5\u05df \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05de\u05d9\u05e9\u05d5\u05ea \u2013 \u05d4\u05d5\u05d0 \u05de\u05e2\u05e0\u05d9\u05e7 \u05dc\u05d0\u05e0\u05e9\u05d9\u05dd \u05d7\u05d5\u05e4\u05e9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05e8\u05d7\u05d1 \u05d1\u05d3\u05e8\u05db\u05dd \u05e9\u05dc\u05d4\u05dd.<\/h2>\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-9a0545f e-con-full e-flex e-con e-child\" data-id=\"9a0545f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a898bb0 elementor-widget elementor-widget-ld_fancy_image\" data-id=\"a898bb0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ld_fancy_image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div class=\"lqd-imggrp-single d-inline-flex pos-rel align-items-center justify-content-center\"   >\n\n\t\t\t\t\n\t\t\t\t<div class=\"lqd-imggrp-img-container pos-rel\" >\n\n\t\t\t\t\t<figure\n\t\t\t\t\t\tclass=\"w-100 pos-rel\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"938\" height=\"640\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 938 640&#039;%2F%3E\" class=\"attachment-full size-full wp-image-5408 ld-lazyload\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/051830.gif\" data-aspect=\"1.465625\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/figure>\n\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c5b3203 e-con-full horizontalScrollWrapper mobile-onlyhorizontalScrollWrapper elementor-hidden-desktop e-flex e-con e-parent\" data-id=\"c5b3203\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c76eaa5 e-con-full horizontalScrollContainer e-flex e-con e-child\" data-id=\"c76eaa5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7ac44ef e-con-full horizontalScrollTranslate e-flex e-con e-child\" data-id=\"7ac44ef\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a8ca422 e-con-full e-flex e-con e-child\" data-id=\"a8ca422\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-32556dc animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"32556dc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0149553 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"0149553\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e524a36b39\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d0\u05d6 \u05de\u05d4\u05d5 \u05de\u05e7\u05d5\u05dd\n?<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark><\/h2>\t\t<\/div>\n\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-2305aa2 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"2305aa2\" data-element_type=\"widget\" data-e-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\"><b>\"\u05de\u05e7\u05d5\u05dd\" \u05d4\u05d5\u05d0 \u05d9\u05d5\u05ea\u05e8 \u05de\u05d7\u05dc\u05dc \u05d4\u05ea\u05d7\u05d5\u05dd \u05d1\u05d0\u05e8\u05d1\u05e2 \u05e7\u05d9\u05e8\u05d5\u05ea- \u05d4\u05d5\u05d0 \u05d7\u05d5\u05d5\u05d9\u05d4.\n<\/b><br>\u05de\u05e8\u05d7\u05d1 \u05e9\u05de\u05e9\u05e8\u05d4 \u05d0\u05d5\u05d5\u05d9\u05e8\u05d4 \u05d5\u05de\u05e9\u05dc\u05d1 \u05ea\u05d7\u05d5\u05e9\u05d5\u05ea \u05e9\u05dc \u05d6\u05d4\u05d5\u05ea \u05d5\u05e9\u05d9\u05d9\u05db\u05d5\u05ea. <\/br>\u05d4\u05d5\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d5\u05d2\u05d3\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d2\u05d1\u05d5\u05dc\u05d5\u05ea \u05de\u05d5\u05d7\u05e9\u05d9\u05d9\u05dd \u05d0\u05d5 \u05ea\u05d5\u05d3\u05e2\u05ea\u05d9\u05d9\u05dd. <br>\u05d4\u05d7\u05d5\u05de\u05e8\u05d9\u05dd, \u05d4\u05d0\u05d5\u05e8 \u05d5\u05d4\u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea \u05e9\u05dc \u05de\u05e7\u05d5\u05dd, \u05de\u05d9\u05d9\u05e6\u05e8\u05d9\u05dd \u05d9\u05d7\u05e1\u05d9\u05dd \u05d1\u05d9\u05df \u05d4\u05d0\u05d3\u05dd \u05dc\u05de\u05e8\u05d7\u05d1.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-da30a9f e-con-full e-flex e-con e-child\" data-id=\"da30a9f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0f1a79e elementor-widget__width-initial elementor-widget-mobile__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"0f1a79e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e524a372ab\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  > \u05d5\u05de\u05d4 \u05d4\u05d5\u05e4\u05da \u05de\u05e7\u05d5\u05dd \u05dc\u05be <b>Free space?<\/b><\/h2>\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f274e03 e-con-full e-flex e-con e-child\" data-id=\"f274e03\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-135d9e0 e-con-full e-flex e-con e-child\" data-id=\"135d9e0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72774aa elementor-widget elementor-widget-video\" data-id=\"72774aa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/video.gumlet.io\/67d29303cbc68914a3378816\/6891e0b18bcbb4476aed53c5\/download.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e8faee3 e-con-full e-flex e-con e-child\" data-id=\"e8faee3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-20e1505 animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"20e1505\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68529b4 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"68529b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e524a379b8\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d4\u05ea\u05d0\u05de\u05d4\n<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-bde91de lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"bde91de\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e7\u05d5\u05dd \u05d8\u05d5\u05d1 \u05e0\u05d5\u05e6\u05e8 \u05de\u05ea\u05d5\u05da \u05d4\u05d9\u05db\u05e8\u05d5\u05ea \u05e2\u05dd \u05de\u05d9 \u05e9\u05e2\u05ea\u05d9\u05d3 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d5. <\/b><br>\u05ea\u05db\u05e0\u05d5\u05df \u05e9\u05de\u05ea\u05d7\u05d9\u05dc \u05de\u05d4\u05e7\u05e9\u05d1\u05d4 \u05dc\u05e8\u05e6\u05d5\u05e0\u05d5\u05ea \u05d5\u05dc\u05e6\u05e8\u05db\u05d9\u05dd \u05d4\u05e9\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05d4\u05d0\u05e0\u05e9\u05d9\u05dd. <\/br> \u05db\u05e9\u05d4\u05ea\u05d4\u05dc\u05d9\u05da \u05de\u05ea\u05d7\u05e9\u05d1 \u05d1\u05d3\u05e7\u05d5\u05d9\u05d5\u05ea \u05d4\u05d0\u05dc\u05d4, \u05e0\u05d5\u05e6\u05e8 \u05de\u05e8\u05d7\u05d1 \u05e9\u05de\u05ea\u05d0\u05d9\u05dd \u05d1\u05d3\u05d9\u05d5\u05e7 \u2013 <\/br> \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05d5, \u05dc\u05d7\u05dc\u05dc \u05e9\u05d1\u05d5 \u05d4\u05d5\u05d0 \u05de\u05e2\u05d5\u05e6\u05d1 \u05d5\u05dc\u05e1\u05d1\u05d9\u05d1\u05d4 \u05e9\u05d1\u05d4 \u05d4\u05d5\u05d0 \u05de\u05ea\u05e7\u05d9\u05d9\u05dd.<\/h2>\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-fa51ea5 e-con-full e-flex e-con e-child\" data-id=\"fa51ea5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-60a8c84 e-con-full e-flex e-con e-child\" data-id=\"60a8c84\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-67e58fd elementor-widget elementor-widget-video\" data-id=\"67e58fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/video.gumlet.io\/67d29303cbc68914a3378816\/6891e0b10f894537ede1ba73\/download.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8b70d1d e-con-full e-flex e-con e-child\" data-id=\"8b70d1d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-eb94b8c animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"eb94b8c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-33e81ca elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"33e81ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e524a38093\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9\u05d5\u05ea<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-b1bfc6d lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"b1bfc6d\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e7\u05d5\u05dd \u05e9\u05de\u05e9\u05e8\u05ea \u05d0\u05ea \u05d4\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05d5, \u05ea\u05d5\u05de\u05da \u05d1\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05d9\u05d5\u05de\u05d9\u05d5\u05de\u05d9\u05d5\u05ea \u05d5\u05de\u05ea\u05d0\u05d9\u05dd \u05dc\u05e6\u05e8\u05db\u05d9\u05dd \u05de\u05d2\u05d5\u05d5\u05e0\u05d9\u05dd.<\/b> <br> \u05de\u05e8\u05d7\u05d1 \u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9 \u05e2\u05d5\u05d6\u05e8 \u05dc\u05e0\u05d5 \u05dc\u05d4\u05d5\u05e8\u05d9\u05d3 \u05e2\u05d5\u05de\u05e1 \u05de\u05d9\u05d5\u05ea\u05e8, \u05d5\u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05d4\u05d9\u05d5\u05de\u05d9\u05d5\u05ea \u05dc\u05e7\u05e8\u05d5\u05ea \u05d1\u05d0\u05d5\u05e4\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 \u05d5\u05d1\u05e0\u05d5\u05d7\u05d5\u05ea. \u05de\u05e7\u05d5\u05dd \u05e9\u05db\u05d6\u05d4 \u05de\u05ea\u05d5\u05db\u05e0\u05df \u05de\u05ea\u05d5\u05da \u05d4\u05ea\u05d1\u05d5\u05e0\u05e0\u05d5\u05ea \u05db\u05d5\u05dc\u05dc\u05ea \u05d1\u05d7\u05dc\u05dc \u05d5\u05de\u05e0\u05e6\u05dc \u05d0\u05d5\u05ea\u05d5 \u05d1\u05de\u05dc\u05d5\u05d0\u05d5, <br>\u05db\u05da \u05e9\u05db\u05dc \u05e4\u05d9\u05e0\u05d4 \u05de\u05e7\u05d1\u05dc\u05ea \u05ea\u05e4\u05e7\u05d9\u05d3 \u05de\u05de\u05e9\u05d9 \u05d1\u05d7\u05d9\u05d9 \u05d4\u05d9\u05d5\u05dd \u05d9\u05d5\u05dd.<\/h2>\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-a822f45 e-con-full e-flex e-con e-child\" data-id=\"a822f45\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c4b0d9b e-con-full e-flex e-con e-child\" data-id=\"c4b0d9b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-143265b elementor-widget elementor-widget-video\" data-id=\"143265b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/video.gumlet.io\/67d29303cbc68914a3378816\/6891e0b169cc5f5f0053af11\/download.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-32a9dec e-con-full e-flex e-con e-child\" data-id=\"32a9dec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0b3c4f5 animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"0b3c4f5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62487cb elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"62487cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e524a38750\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d6\u05d4\u05d5\u05ea \u05d5\u05d0\u05d5\u05d5\u05d9\u05e8\u05d4<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-ae49458 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"ae49458\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e8\u05d7\u05d1 \u05e9\u05d9\u05e9 \u05d1\u05d5 \u05e0\u05e9\u05de\u05d4, \u05d5\u05de\u05e8\u05d2\u05d9\u05e9\u05d9\u05dd \u05d1\u05d5 \u05d0\u05ea\" \u05e8\u05d5\u05d7 \u05d4\u05de\u05e7\u05d5\u05dd \". <br> <\/b>\n\u05dc\u05db\u05dc \u05de\u05e7\u05d5\u05dd \u05d9\u05e9 \u05d0\u05d5\u05e4\u05d9 \u05e9\u05de\u05d5\u05e9\u05e4\u05e2 \u05de\u05d4\u05e1\u05d1\u05d9\u05d1\u05d4 \u05d5\u05de\u05d4\u05d0\u05e0\u05e9\u05d9\u05dd \u05e9\u05e0\u05de\u05e6\u05d0\u05d9\u05dd \u05d1\u05d5. <br> \u05d4\u05d7\u05d5\u05de\u05e8\u05d9\u05dd, \u05d4\u05d0\u05d5\u05e8 \u05d5\u05d4\u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05de\u05e7\u05d5\u05dd \u05de\u05d9\u05d9\u05e6\u05e8\u05d9\u05dd \u05de\u05e2\u05e8\u05db\u05ea \u05d9\u05d7\u05e1\u05d9\u05dd \u05d9\u05d9\u05d7\u05d5\u05d3\u05d9\u05ea \u05d1\u05d9\u05df \u05d4\u05d0\u05d3\u05dd \u05dc\u05de\u05e8\u05d7\u05d1.<br>  \u05e2\u05d9\u05e6\u05d5\u05d1 \u05e0\u05db\u05d5\u05df \u05de\u05d1\u05d8\u05d0 \u05d0\u05ea \u05d4\u05de\u05e8\u05db\u05d9\u05d1\u05d9\u05dd \u05d4\u05d0\u05dc\u05d4 \u05d1\u05de\u05e8\u05d7\u05d1, \u05de\u05d3\u05d2\u05d9\u05e9 \u05d5\u05de\u05e2\u05e6\u05d9\u05dd \u05d0\u05d5\u05ea\u05dd. <br>  \u05d6\u05d5\u05d4\u05d9 \u05d1\u05d3\u05d9\u05d5\u05e7 \u05d4\u05d0\u05d9\u05db\u05d5\u05ea \u05e9\u05de\u05e2\u05d5\u05e8\u05e8\u05ea \u05ea\u05d7\u05d5\u05e9\u05ea \u05e9\u05d9\u05d9\u05db\u05d5\u05ea, \u05d5\u05d4\u05d5\u05e4\u05db\u05ea \u05de\u05e7\u05d5\u05dd \u05dc\u05e0\u05d5\u05d7, \u05d0\u05e1\u05ea\u05d8\u05d9 \u05d5\u05de\u05d3\u05d5\u05d9\u05e7. <\/h2>\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-d7be003 e-con-full e-flex e-con e-child\" data-id=\"d7be003\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dceeb94 e-con-full e-flex e-con e-child\" data-id=\"dceeb94\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3581696 elementor-widget elementor-widget-video\" data-id=\"3581696\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/video.gumlet.io\/67d29303cbc68914a3378816\/6891e0b169cc5f5f0053af0f\/download.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-019343f e-con-full e-flex e-con e-child\" data-id=\"019343f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8028674 animated-fast e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"8028674\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0940c91 elementor-widget__width-auto elementor-widget elementor-widget-hub_fancy_heading\" data-id=\"0940c91\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"hub_fancy_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div id=\"ld-fancy-heading-6a9e524a38e7e\" class=\"ld-fancy-heading pos-rel\">\n\t\t\t<h2 class=\"ld-fh-element d-inline-block pos-rel  elementor-heading-title lqd-highlight-classic lqd-highlight-grow-left h2\"  data-inview=\"true\" data-transition-delay=\"true\" data-delay-options=\"{&quot;elements&quot;:&quot;.lqd-highlight-inner&quot;,&quot;delayType&quot;:&quot;transition&quot;}\" > <mark class=\"lqd-highlight\"><span class=\"lqd-highlight-txt\"  > \u05d3\u05d9\u05e0\u05de\u05d9\u05d5\u05ea<\/span><span class=\"lqd-highlight-inner\"><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"235.509\" height=\"13.504\" viewBox=\"0 0 235.509 13.504\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"M163,.383a13.044,13.044,0,0,1,1.517-.072,3.528,3.528,0,0,1,1.237-.134q.618.044,1.237.044a.249.249,0,0,1-.1.178.337.337,0,0,0-.1.266q3.092.088,6.184-.044T178.953.4l-.206-.088a12,12,0,0,0,4.123,0,13.467,13.467,0,0,1,5.772,0q1.443-.178,2.68-.266A5.978,5.978,0,0,1,193.8.4,16.707,16.707,0,0,1,198.01.045q2.164.088,4.844.088-.618.088-.824.134L201.412.4a3.893,3.893,0,0,0,2.061,0,5.413,5.413,0,0,1,1.649-.356q.618.088,1.134.178a9.762,9.762,0,0,0,1.544.09,17,17,0,0,1,3.092-.266q1.649,0,3.5.178,2.886.088,5.875.044t5.875-.222q0,.088.206.088h.412a21.975,21.975,0,0,0,2.577.889A12.458,12.458,0,0,1,232.12,2.18a3.962,3.962,0,0,1,1.031.622A3.349,3.349,0,0,1,234.8,3.825a5.079,5.079,0,0,1,.618,1.111q.412.534-1.031.98-1.031.444-.618.98a2.09,2.09,0,0,1,.206.889q0,.444.825.889.618.8-.206,1.245l-1.237.534q-1.443-.088-2.68-.134a17.255,17.255,0,0,1-2.267-.222,3.128,3.128,0,0,0-.928-.044,3.129,3.129,0,0,1-.928-.044q-2.267-.178-4.432-.266T217.7,9.476q-1.649-.088-2.886-.088a17.343,17.343,0,0,1-2.474-.178q-3.916,0-7.73-.088t-7.73-.266l-12.471-.178q-6.287-.088-12.883-.088h-1.958q-.928,0-1.958.088h-2.061q-1.031,0-2.061-.088-2.68-.088-5.256-.134t-5.256.044h-5.462q-2.577,0-5.462.088-4.535.088-8.76.178t-8.554.088q-2.886.088-5.875.088t-5.875.088q-1.443.088-2.886.134t-3.092.044q-4.741.178-9.791.312t-9.791.312q-2.267.088-4.329.088T78.77,10.1q-4.329.266-8.863.49t-9.276.49q-1.237.088-2.68.134a24.356,24.356,0,0,0-2.683.224q-2.68.178-5.462.312t-5.668.4q-2.474.266-4.741.312t-4.741.044q-1.031-.088-1.958-.134a9.684,9.684,0,0,1-1.958-.312,12.5,12.5,0,0,0-1.443-.312q-.825-.134-1.856-.31-2.886.356-6.39.666t-6.8.845a26.709,26.709,0,0,1-2.886.356,20.758,20.758,0,0,1-9.482-.889Q.232,11.962.026,11.25T1.263,9.917q0-.266.825-.266a13.039,13.039,0,0,0,2.886-.444A17.187,17.187,0,0,1,7.86,8.672q3.092-.266,6.184-.8,1.649-.178,3.3-.312t3.5-.312q4.123-.354,8.039-.712t8.039-.622q9.478-.8,18.758-1.338,2.68-.178,5.153-.356t4.741-.356q2.474-.178,5.05-.356T75.88,3.24h1.34a4.829,4.829,0,0,0,1.34-.178q2.267-.178,4.329-.222t4.329-.134a7.256,7.256,0,0,1,2.267,0,3.459,3.459,0,0,0,1.031-.088,6.009,6.009,0,0,1,2.37-.266,14.745,14.745,0,0,0,2.783-.088q1.649,0,2.474.088a1.308,1.308,0,0,1,.185.011,1.226,1.226,0,0,1,.33-.1,3.656,3.656,0,0,0,.515-.088,4.433,4.433,0,0,1,2.886.266q.412-.088,1.031-.178l1.237-.178q.412,0,1.031.044a5.761,5.761,0,0,0,1.237-.044q2.886-.088,5.772-.044a53.829,53.829,0,0,0,5.772-.222,9.505,9.505,0,0,1,1.34-.088h1.34a4.428,4.428,0,0,1,.821-.258l.825-.178a15.178,15.178,0,0,1,1.855.444,3.028,3.028,0,0,1,1.031-.534,4.039,4.039,0,0,1,1.443-.178,6.158,6.158,0,0,1,1.649.178,5.05,5.05,0,0,0,2.267.268q1.855-.088,3.813-.134T138.13,1.2q1.031,0,2.164-.044t2.37-.044q-.206-.088.412-.534h3.092q.412,0,.309.266t.928,0a5.845,5.845,0,0,1,1.443,0,31.833,31.833,0,0,0,5.359.088,21.471,21.471,0,0,1,6.8.178,5.236,5.236,0,0,0,1.031-.4q.412-.222.825-.4a.694.694,0,0,1,.137.07Z\" transform=\"translate(0 0.002)\"\/><\/svg><svg class=\"lqd-highlight-pen\" width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M36.204 1.044C32.02 2.814 5.66 31.155 4.514 35.116c-.632 2.182-1.75 5.516-2.483 7.409-3.024 7.805-1.54 9.29 6.265 6.265 1.893-.733 5.227-1.848 7.41-2.477 3.834-1.105 4.473-1.647 19.175-16.27 0 0 10.63-10.546 15.21-15.125C53 8.997 42.021-1.418 36.203 1.044Zm7.263 5.369c3.56 3.28 4.114 4.749 2.643 6.995l-1.115 1.7-4.586-4.543-4.585-4.544 1.42-1.157C39.311 3.18 40.2 3.4 43.467 6.413ZM37.863 13.3l4.266 4.304-11.547 11.561-11.547 11.561-4.48-4.446-4.481-4.447 11.404-11.418c6.273-6.28 11.566-11.42 11.762-11.42.197 0 2.277 1.938 4.623 4.305ZM12.016 39.03l3.54 3.584-3.562 1.098-5.316 1.641c-1.665.516-1.727.455-1.211-1.21l1.614-5.226c1.289-4.177.685-4.191 4.935.113Z\"\/><\/svg><svg class=\"lqd-highlight-brush-svg lqd-highlight-brush-svg-2\" width=\"233\" height=\"13\" viewBox=\"0 0 233 13\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-hidden=\"true\" preserveAspectRatio=\"none\"><path d=\"m.624 9.414-.312-2.48C0 4.454.001 4.454.002 4.454l.035-.005.102-.013.398-.047c.351-.042.872-.102 1.557-.179 1.37-.152 3.401-.368 6.05-.622C13.44 3.081 21.212 2.42 31.13 1.804 50.966.572 79.394-.48 113.797.24c34.387.717 63.927 2.663 84.874 4.429a1048.61 1048.61 0 0 1 24.513 2.34 641.605 641.605 0 0 1 8.243.944l.432.054.149.02-.318 2.479-.319 2.48-.137-.018c-.094-.012-.234-.03-.421-.052a634.593 634.593 0 0 0-8.167-.936 1043.26 1043.26 0 0 0-24.395-2.329c-20.864-1.76-50.296-3.697-84.558-4.413-34.246-.714-62.535.332-82.253 1.556-9.859.612-17.574 1.269-22.82 1.772-2.622.251-4.627.464-5.973.614a213.493 213.493 0 0 0-1.901.22l-.094.01-.028.004Z\"\/><\/svg><\/span><\/mark>\n<\/h2>\t\t<\/div>\n\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-473a9f9 lineByLineReveal,  elementor-widget elementor-widget-heading\" data-id=\"473a9f9\" data-element_type=\"widget\" data-e-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\"><b>\u05de\u05e7\u05d5\u05dd \u05e9\u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d0\u05ea \u05e2\u05e6\u05de\u05d5 \u05dc\u05e6\u05e8\u05db\u05d9\u05dd \u05de\u05e9\u05ea\u05e0\u05d9\u05dd, \u05dc\u05d0\u05d5\u05e8\u05da \u05d4\u05e9\u05e0\u05d9\u05dd. <\/b><br> \u05ea\u05db\u05e0\u05d5\u05df \u05e0\u05db\u05d5\u05df \u05d9\u05d5\u05e6\u05e8 \u05d7\u05dc\u05dc\u05d9\u05dd \u05d3\u05d9\u05e0\u05de\u05d9\u05d9\u05dd, \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05d0\u05d5\u05e4\u05df \u05e9\u05d1\u05d5 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05d4\u05dd. <br> \u05d0\u05d1\u05dc \u05d3\u05d9\u05e0\u05de\u05d9\u05d5\u05ea \u05d4\u05d9\u05d0 \u05dc\u05d0 \u05e8\u05e7 \u05e9\u05d9\u05e0\u05d5\u05d9 \u05dc\u05d0\u05d5\u05e8\u05da \u05d6\u05de\u05df, \u05d4\u05d9\u05d0 \u05d2\u05dd \u05d4\u05d3\u05e8\u05da \u05e9\u05d1\u05d4 \u05d4\u05de\u05e8\u05d7\u05d1 \u05de\u05ea\u05e7\u05e9\u05e8 \u05e2\u05dd \u05de\u05d9 \u05e9\u05e0\u05de\u05e6\u05d0 \u05d1\u05d5. <br> \u05ea\u05db\u05e0\u05d5\u05df \u05e9\u05de\u05e9\u05dc\u05d1 \u05d0\u05dc\u05de\u05e0\u05d8\u05d9\u05dd \u05d0\u05d9\u05e0\u05d8\u05e8\u05d0\u05e7\u05d8\u05d9\u05d1\u05d9\u05d9\u05dd, \u05de\u05db\u05e0\u05d9\u05e1 \u05dc\u05ea\u05d5\u05da \u05de\u05e8\u05d7\u05d1 \u05d0\u05d7\u05d3 \u05de\u05d2\u05d5\u05d5\u05df \u05e1\u05d9\u05d8\u05d5\u05d0\u05e6\u05d9\u05d5\u05ea \u05d0\u05e4\u05e9\u05e8\u05d9\u05d5\u05ea. <br> \u05d5\u05db\u05e9\u05d4\u05ea\u05db\u05e0\u05d5\u05df \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05de\u05d9\u05e9\u05d5\u05ea \u2013 \u05d4\u05d5\u05d0 \u05de\u05e2\u05e0\u05d9\u05e7 \u05dc\u05d0\u05e0\u05e9\u05d9\u05dd \u05d7\u05d5\u05e4\u05e9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05e8\u05d7\u05d1 \u05d1\u05d3\u05e8\u05db\u05dd \u05e9\u05dc\u05d4\u05dd.<\/h2>\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-42b3d21 e-con-full e-flex e-con e-child\" data-id=\"42b3d21\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cc83b79 e-con-full e-flex e-con e-child\" data-id=\"cc83b79\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57876e8 elementor-widget elementor-widget-video\" data-id=\"57876e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/video.gumlet.io\/67d29303cbc68914a3378816\/6891e0b18bcbb4476aed53c3\/download.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-93b9912 e-flex e-con-boxed e-con e-parent\" data-id=\"93b9912\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.7,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-916dc10 textLightUpHeading elementor-widget elementor-widget-heading\" data-id=\"916dc10\" data-element_type=\"widget\" data-e-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\">\u05db\u05d0\u05e9\u05e8 \u05db\u05dc \u05d4\u05de\u05e8\u05db\u05d9\u05d1\u05d9\u05dd \u05d4\u05d0\u05dc\u05d4 \u05de\u05ea\u05d7\u05d1\u05e8\u05d9\u05dd,<br> \u05d4\u05d7\u05dc\u05dc \u05d4\u05d5\u05e4\u05da \u05dc\u05de\u05e7\u05d5\u05dd \u05d1\u05e2\u05dc \u05de\u05e9\u05de\u05e2\u05d5\u05ea \u05d5\u05e0\u05d5\u05db\u05d7\u05d5\u05ea. <br> \u05d5\u05db\u05e9\u05d4\u05de\u05e7\u05d5\u05dd \u05d7\u05d5\u05e4\u05e9\u05d9 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e0\u05db\u05d5\u05df \u05d5\u05de\u05d3\u05d5\u05d9\u05e7 \u05dc\u05d0\u05d5\u05e8\u05da \u05d6\u05de\u05df \u2013 <br> <b>\u05d6\u05d4 Free Space.<\/b>\n<\/h2>\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<div class=\"elementor-element elementor-element-c0fee16 e-flex e-con-boxed e-con e-parent\" data-id=\"c0fee16\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3772cbd elementor-widget elementor-widget-html\" data-id=\"3772cbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>document.querySelectorAll('.web-stories-list__story-content-overlay').forEach(el => {\r\n  const words = el.textContent.trim().split(' ');\r\n  if (words.length > 1) {\r\n    el.innerHTML = `<strong>${words[0]}<\/strong> ${words.slice(1).join(' ')}`;\r\n  }\r\n});<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f8fd13b elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f8fd13b\" data-element_type=\"section\" data-e-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-4c15d13\" data-id=\"4c15d13\" data-element_type=\"column\" data-e-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-7248358 e-transform e-transform e-transform e-transform elementor-widget elementor-widget-ld_portfolio\" data-id=\"7248358\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_skewX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_skewX_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_skewX_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_skewY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_skewY_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_skewY_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"ld_portfolio.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"carousel-container carousel-nav-floated carousel-nav-bottom carousel-nav-left carousel-nav-square carousel-nav-solid carousel-nav-lg carousel-nav-shadowed lqd-pf-filterable-carousel\" data-filterable-carousel=\"true\"><div class=\"carousel-items pos-rel\" data-lqd-flickity='{ \"forceEnableOnMobile\": true, \"filters\": \"#pf-filter-119833432\", \"filtersCounter\": true, \"doSomethingCrazyWithFilters\": true, \"prevNextButtons\": true, \"buttonsAppendTo\": \"parent_el\", \"navArrow\": 6, \"fullwidthSide\": true, \"navOffsets\": { \"nav\": {\"bottom\": \"110px\", \"left\": \"15px\", \"right\": \"auto\"} } }'><div class=\"flickity-viewport-wrap\"><div class=\"flickity-viewport pos-rel w-100\"><div class=\"flickity-slider d-flex w-100 h-100\" style=\"right: 0; transform: translateX(0%);\"><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-3598\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-3598 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 1400 1000&#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/05\/05-1-1400x1000.webp\" data-aspect=\"1.4\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05d4\u05d1\u05d9\u05ea \u05d1\u05e7\u05e6\u05d4 \u05d4\u05d4\u05e8<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=%d7%94%d7%91%d7%99%d7%aa-%d7%91%d7%a7%d7%a6%d7%94-%d7%94%d7%94%d7%a8\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-465\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-465 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0  &#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05d1\u05d9\u05ea-\u05d1\u05e7\u05d9\u05d1\u05d5\u05e5-1400x1000.webp\" data-aspect=\"\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05d4\u05d1\u05d9\u05ea \u05d1\u05e7\u05d9\u05d1\u05d5\u05e5<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=free-movment-5\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 \">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-8413\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-8413 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 1400 1000&#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/07\/28-Copy-1400x1000.jpg\" data-aspect=\"1.4\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05ea\u05d7\u05e0\u05d5\u05ea \u05de\u05e4\u05d2\u05e9<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=%d7%aa%d7%97%d7%a0%d7%95%d7%aa-%d7%9e%d7%a4%d7%92%d7%a9\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-464\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-464 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0  &#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05d4\u05d1\u05d9\u05ea-\u05e2\u05dc-\u05d4\u05e2\u05e5-1400x1000.webp\" data-aspect=\"\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05d4\u05d1\u05d9\u05ea \u05e2\u05dc \u05d4\u05e2\u05e5<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=%d7%94%d7%91%d7%99%d7%aa-%d7%a2%d7%9c-%d7%94%d7%a2%d7%a5\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-462\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-462 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0  &#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/02\/\u05de\u05e7\u05d5\u05dd-\u05d1\u05e2\u05d9\u05e8-1400x1000.webp\" data-aspect=\"\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05de\u05e7\u05d5\u05dd \u05d1\u05e2\u05d9\u05e8<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=free-movment-2\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-3857\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-3857 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 1400 1000&#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/05\/01-7-1400x1000.webp\" data-aspect=\"1.4\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05e7\u05d9\u05e8\u05d5\u05ea \u05e9\u05e7\u05d5\u05e4\u05d9\u05dd<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=%d7%a7%d7%99%d7%a8%d7%95%d7%aa-%d7%a9%d7%a7%d7%95%d7%a4%d7%99%d7%9d\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-1012\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-1012 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0  &#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/\u05ea\u05e0\u05d5\u05e2\u05d4-\u05d7\u05d5\u05e4\u05e9\u05d9\u05ea-1400x1000.webp\" data-aspect=\"\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05ea\u05e0\u05d5\u05e2\u05d4 \u05d7\u05d5\u05e4\u05e9\u05d9\u05ea<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=%d7%aa%d7%a0%d7%95%d7%a2%d7%94-%d7%97%d7%95%d7%a4%d7%a9%d7%99%d7%aa\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-3699\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-3699 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0 1400 1000&#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/tinyroom-1400x1000.webp\" data-aspect=\"1.4\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">Tiny room 0-18<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=tiny-room-0-18\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-3734\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-3734 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0  &#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/\u05d1\u05d9\u05ea-\u05d5\u05d2\u05df-1400x1000.webp\" data-aspect=\"\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05d1\u05d9\u05ea \u05d5\u05d2\u05df<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=%d7%91%d7%99%d7%aa-%d7%95%d7%92%d7%9f\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><div class=\"carousel-item col-sm-12 arc\">\n\n\t<div class=\"carousel-item-inner\">\n\t\t<div class=\"carousel-item-content\">\n\n\t\t\t<article id=\"post-463\" class=\"lqd-pf-item lqd-pf-item-style-4 overflow-hidden border-radius-6 pos-rel lqd-pf-content-v lqd-pf-light pf-details-h-str post-463 liquid-portfolio type-liquid-portfolio status-publish format-standard has-post-thumbnail hentry liquid-portfolio-category-arc\">\n\t\t\t\t<div class=\"lqd-pf-item-inner\">\n\n\t\t\t\t\t<div class=\"lqd-pf-img overflow-hidden pos-rel\">\n\t\t\t\t\t\t<figure>\n\t\t\t\t\t\t\t<figure  class=\"lqd-overlay\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"1000\" src=\"data:image\/svg+xml;charset=utf-8,%3Csvg xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039; viewBox%3D&#039;0 0  &#039;%2F%3E\" class=\"w-100 h-100 objfit-cover objfit-center ld-lazyload wp-post-image\" alt=\"\" data-src=\"https:\/\/freespace-arch.com\/wp-content\/uploads\/2025\/06\/\u05d4\u05e1\u05de\u05d8\u05d4-1400x1000.webp\" data-aspect=\"\" \/><\/figure>\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<span class=\"lqd-pf-overlay-bg lqd-overlay\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"lqd-pf-details lqd-overlay d-flex justify-content-end\">\n\t\t\t\t\t\t<div class=\"text-vertical p-4\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"lqd-pf-title mt-0 mb-0 h5\">\u05d4\u05e1\u05de\u05d8\u05d4<\/h2>\t\t\t\t\t\t\t\t\t<div class=\"portfolio-summary\">\n\t\t\t<p><\/p>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<a href=\"https:\/\/freespace-arch.com\/?portfolios=free-movment-3\"  class=\"lqd-overlay lqd-pf-overlay-link lqd-cc-label-trigger\" data-cc-icon-color=\"\"><\/a>\n\t\t\t\t<\/div>\n\t\t\t<\/article>\n\n\t\t<\/div>\n\t<\/div>\n\n<\/div><\/div><\/div><\/div><\/div><\/div>\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<div class=\"elementor-element elementor-element-3eb7328 e-flex e-con-boxed e-con e-parent\" data-id=\"3eb7328\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f172078 elementor-widget elementor-widget-html\" data-id=\"f172078\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"scrollIndicator\">0%<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f132707 elementor-widget elementor-widget-html\" data-id=\"f132707\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>document.addEventListener('scroll', function () {\r\n  const scrollTop = window.scrollY;\r\n  const docHeight = document.body.scrollHeight - window.innerHeight;\r\n  const scrollPercent = Math.round((scrollTop \/ docHeight) * 100);\r\n  const indicator = document.getElementById('scrollIndicator');\r\n  indicator.textContent = scrollPercent + '%';\r\n\r\n  \/\/ Detect background brightness under indicator\r\n  const elUnder = document.elementFromPoint(window.innerWidth - 40, window.innerHeight - 40);\r\n  const bgColor = window.getComputedStyle(elUnder).backgroundColor;\r\n\r\n  const rgb = bgColor.match(\/\\d+\/g);\r\n  if (rgb) {\r\n    const [r, g, b] = rgb.map(Number);\r\n    const luminance = 0.299 * r + 0.587 * g + 0.114 * b;\r\n    indicator.style.color = luminance > 186 ? '#000' : '#fff';\r\n  }\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>From just a Place to FREE SPACE \u05d0\u05e0\u05d7\u05e0\u05d5 \u05de\u05d0\u05de\u05d9\u05e0\u05d9\u05dd \u05e9\u05ea\u05e4\u05e7\u05d9\u05d3\u05e0\u05d5 \u05db\u05d0\u05d3\u05e8\u05d9\u05db\u05dc\u05d9\u05dd \u05d4\u05d5\u05d0 \u05dc\u05ea\u05db\u05e0\u05df \u05de\u05e7\u05d5\u05de\u05d5\u05ea \u05d8\u05d5\u05d1\u05d9\u05dd \u05d1\u05db\u05dc \u05e7\u05e0\u05d4 \u05de\u05d9\u05d3\u05d4 &#8211; \u05db\u05d0\u05dc\u05d4 \u05e9\u05de\u05d9\u05d9\u05e6\u05e8\u05d9\u05dd \u05d7\u05d5\u05d5\u05d9\u05d9\u05ea \u05e9\u05d4\u05d9\u05d9\u05d4 \u05e0\u05e2\u05d9\u05de\u05d4, \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd \u05d1\u05d0\u05d5\u05e4\u05df \u05e2\u05de\u05d5\u05e7 \u05dc\u05de\u05e8\u05d7\u05d1 \u05d4\u05e1\u05d5\u05d1\u05d1 \u05d0\u05d5\u05ea\u05dd, \u05d5\u05de\u05e9\u05de\u05e9\u05d9\u05dd \u05db\u05e7\u05e8\u05e7\u05e2 \u05e4\u05d5\u05e8\u05d4 \u05dc\u05d0\u05d9\u05e0\u05d8\u05e8\u05d0\u05e7\u05e6\u05d9\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d5\u05dc\u05e8\u05d2\u05e2\u05d9\u05dd \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9\u05d9\u05dd. \u05d4\u05d2\u05d9\u05e9\u05d4 \u05d4\u05d6\u05d5 \u05de\u05e0\u05d7\u05d4 \u05d0\u05d5\u05ea\u05e0\u05d5 \u05d1\u05db\u05dc \u05e4\u05e8\u05d5\u05d9\u05e7\u05d8 \u05d5\u05de\u05d4\u05d5\u05d5\u05d4 \u05de\u05d3\u05d3 \u05dc\u05d0\u05d9\u05db\u05d5\u05ea \u2013 \u05d4\u05d7\u05dc \u05de\u05ea\u05db\u05e0\u05d5\u05df \u05e9\u05dc \u05e4\u05d9\u05e0\u05d4 \u05d0\u05d9\u05e0\u05d8\u05d9\u05de\u05d9\u05ea \u05d5\u05e2\u05d3 \u05dc\u05e2\u05d9\u05e6\u05d5\u05d1 \u05de\u05d1\u05e0\u05d9\u05dd [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-5837","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/freespace-arch.com\/index.php?rest_route=\/wp\/v2\/pages\/5837","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/freespace-arch.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/freespace-arch.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/freespace-arch.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/freespace-arch.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5837"}],"version-history":[{"count":428,"href":"https:\/\/freespace-arch.com\/index.php?rest_route=\/wp\/v2\/pages\/5837\/revisions"}],"predecessor-version":[{"id":8565,"href":"https:\/\/freespace-arch.com\/index.php?rest_route=\/wp\/v2\/pages\/5837\/revisions\/8565"}],"wp:attachment":[{"href":"https:\/\/freespace-arch.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5837"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}