{"id":9448,"date":"2026-02-26T13:15:52","date_gmt":"2026-02-26T12:15:52","guid":{"rendered":"https:\/\/jemi.es\/?page_id=9448"},"modified":"2026-05-28T14:17:58","modified_gmt":"2026-05-28T12:17:58","slug":"home-3","status":"publish","type":"page","link":"https:\/\/jemi.es\/en\/","title":{"rendered":"Home"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"9448\" class=\"elementor elementor-9448\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5efc530 e-con-full e-flex e-con e-parent\" data-id=\"5efc530\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-37024fc elementor-widget elementor-widget-html\" data-id=\"37024fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"carousel-container\">\n\n <div class=\"carousel-container\">\n\n    <!-- Slide 1 (antes era la 2) -->\n    <div class=\"carousel-slide active\" style=\"background-image: url('https:\/\/jemi.es\/wp-content\/uploads\/2026\/04\/lavavajillas_industrial-1.png');\"\">\n        <div class=\"carousel-content\">\n            <h1>Discover our range of professional dishwashers, designed for all types of needs.<\/h1>\n            <a href=\"https:\/\/jemi.es\/en\/dishwasher\/\" class=\"carousel-button\">Discover<\/a>\n        <\/div>\n    <\/div>\n\n    <!-- Slide 2 -->\n    <div class=\"carousel-slide\" style=\"background-image: url('http:\/\/jemi.es\/wp-content\/uploads\/2026\/04\/Header-2-scaled.jpg');\">\n        <div class=\"carousel-content\">\n            <h1>Discover the Jemi professional kitchen range<\/h1>\n            <a href=\"https:\/\/jemi.es\/en\/kitchens\/\" class=\"carousel-button\">Discover<\/a>\n        <\/div>\n    <\/div>\n\n    <!-- Slide 3 -->\n    <div class=\"carousel-slide\" style=\"background-image: url('http:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Mask-group3.png');\">\n        <div class=\"carousel-content\">\n            <h1>Discover the range of Jemi industrial fryers, safe and efficient equipment.<\/h1>\n            <a href=\"https:\/\/jemi.es\/en\/fryers\/\" class=\"carousel-button\">Discover<\/a>\n        <\/div>\n    <\/div>\n\n  <!-- Navegaci\u00f3n -->\n  <div class=\"carousel-navigation\">\n    <div class=\"carousel-indicators\">\n      <div class=\"carousel-indicator active\" data-slide=\"0\"><div class=\"progress-bar\"><\/div><\/div>\n      <div class=\"carousel-indicator\" data-slide=\"1\"><div class=\"progress-bar\"><\/div><\/div>\n      <div class=\"carousel-indicator\" data-slide=\"2\"><div class=\"progress-bar\"><\/div><\/div>\n    \n  <\/div>\n\n<\/div>\n<\/div><\/div>\n\n<style>\n* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.carousel-container {\n  position: relative;\n  width: 100%;\n  height: 100vh;\n  overflow: hidden;\n  font-family: \"Montserrat\", Arial, sans-serif;\n}\n\n.carousel-slide {\n  position: absolute;\n  inset: 0;\n  background-size: cover;\n  background-position: center;\n  opacity: 0;\n  transition: opacity 0.8s ease-in-out;\n}\n\n.carousel-slide.active {\n  opacity: 1;\n}\n\n.carousel-slide::before {\n  content: \"\";\n  position: absolute;\n  inset: 0;\n  background: rgba(0,0,0,0.45);\n}\n\n.carousel-content {\n  position: absolute;\n  top: 68%;\n  left: 50%;\n  transform: translate(-50%, -50%);\n  width: 90%;\n  max-width: 900px;\n  text-align: center;\n  color: #fff;\n  z-index: 2;\n}\n\n.carousel-content h1 {\n  font-size: 40px;\n  font-weight: 300;\n  line-height: 1.3;\n  margin-bottom: 30px;\n}\n\n.carousel-button {\n  display: inline-block;\n  font-size: 18px;\n  color: #fff;\n  text-decoration: none;\n  position: relative;\n  padding-bottom: 10px;\n}\n\n.carousel-button::after {\n  content: \"\";\n  position: absolute;\n  left: 50%;\n  bottom: 0;\n  width: 120px;\n  height: 2px;\n  background: #fff;\n  transform: translateX(-50%);\n  transition: width 0.3s ease;\n}\n\n.carousel-button:hover {\n  color: #A81915;\n}\n\n\n.carousel-button:hover::after {\n  width: 160px;\n\n\n}\n\n\/* Indicadores *\/\n.carousel-navigation {\n  position: absolute;\n  bottom: 70px;\n  left: 50%;\n  border-radius: 100px;\n  transform: translateX(-50%);\n}\n\n.carousel-indicators {\n  display: flex;\n  gap: 8px;\n   border-radius: 100px;\n}\n\n.carousel-indicator {\n  width: 40px;\n  height: 5px;\n   border-radius: 100px;\n  background: rgba(255,255,255,0.4);\n  cursor: pointer;\n  position: relative;\n}\n\n.carousel-indicator .progress-bar {\n  height: 100%;\n  width: 0;\n  background: #A81916;\n  border-radius: 100px;\n}\n\n.carousel-indicator.active .progress-bar {\n  animation: progress 5s linear forwards;\n}\n\n@keyframes progress {\n  from { width: 0%; }\n  to { width: 100%; }\n}\n<\/style>\n\n<script>\nclass CustomCarousel {\n  constructor() {\n    this.currentSlide = 0;\n    this.slides = document.querySelectorAll('.carousel-slide');\n    this.indicators = document.querySelectorAll('.carousel-indicator');\n    this.totalSlides = this.slides.length;\n    this.init();\n  }\n\n  init() {\n    this.indicators.forEach((indicator, index) => {\n      indicator.addEventListener('click', () => this.goToSlide(index));\n    });\n    this.startAutoPlay();\n  }\n\n  goToSlide(index) {\n    this.slides[this.currentSlide].classList.remove('active');\n    this.indicators[this.currentSlide].classList.remove('active');\n\n    this.currentSlide = index;\n\n    this.slides[this.currentSlide].classList.add('active');\n    this.indicators[this.currentSlide].classList.add('active');\n\n    this.startAutoPlay();\n  }\n\n  nextSlide() {\n    this.goToSlide((this.currentSlide + 1) % this.totalSlides);\n  }\n\n  startAutoPlay() {\n    clearTimeout(this.timer);\n    this.resetProgress();\n    this.timer = setTimeout(() => this.nextSlide(), 5000);\n  }\n\n  resetProgress() {\n    this.indicators.forEach(i => {\n      const bar = i.querySelector('.progress-bar');\n      bar.style.animation = 'none';\n      bar.offsetHeight;\n      bar.style.animation = null;\n    });\n  }\n}\n\ndocument.addEventListener('DOMContentLoaded', () => {\n  new CustomCarousel();\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-98c7812 e-flex e-con-boxed e-con e-parent\" data-id=\"98c7812\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-65757b7 e-con-full logo-motion e-flex e-con e-child\" data-id=\"65757b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1071188 elementor-widget elementor-widget-image\" data-id=\"1071188\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"153\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png\" class=\"attachment-large size-large wp-image-164\" alt=\"\" srcset=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png 400w, https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1-300x115.png 300w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/>\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<div class=\"elementor-element elementor-element-131e316 e-con-full e-flex e-con e-child\" data-id=\"131e316\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70e5b75 elementor-widget elementor-widget-html\" data-id=\"70e5b75\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  const element = document.querySelector(\".logo-motion\");\n  if (!element) return;\n\n  let ticking = false;\n\n  function easeOutCubic(t) {\n    return 1 - Math.pow(1 - t, 3);\n  }\n\n  function animateLogo() {\n    const scrollY = window.scrollY;\n    const vh = window.innerHeight;\n    const vw = window.innerWidth;\n    const isMobile = vw <= 768;\n\n    if (isMobile) {\n      const limit = vh * 0.35;\n      const rawProgress = Math.max(0, Math.min(scrollY \/ limit, 1));\n      const progress = easeOutCubic(rawProgress);\n\n      \/\/ Coincide con el CSS m\u00f3vil: top 30%, left 50%, scale 1\n      const startTop = vh * 0.30;\n      const endTop = 70;\n\n      const startLeft = vw * 0.50;\n      const endLeft = vw * 0.50;\n\n      const scaleStart = 1;\n      const scaleEnd = 0.45;\n\n      const currentTop = startTop + (endTop - startTop) * progress;\n      const currentLeft = startLeft + (endLeft - startLeft) * progress;\n      const scale = scaleStart + (scaleEnd - scaleStart) * progress;\n\n      element.style.top = `${currentTop}px`;\n      element.style.left = `${currentLeft}px`;\n      element.style.transform = `translate(-50%, -50%) scale(${scale})`;\n\n    } else {\n      const limit = vh * 0.65;\n      const rawProgress = Math.max(0, Math.min(scrollY \/ limit, 1));\n      const progress = easeOutCubic(rawProgress);\n\n      \/\/ Coincide con el CSS desktop: top 40%, left 50%, scale 1.2\n      const startTop = vh * 0.40;\n      const endTop = 100;\n\n      const startLeft = vw * 0.50;\n      const endLeft = vw * 0.21;\n\n      const scaleStart = 1.2;\n      const scaleEnd = 0.6;\n\n      const currentTop = startTop + (endTop - startTop) * progress;\n      const currentLeft = startLeft + (endLeft - startLeft) * progress;\n      const scale = scaleStart + (scaleEnd - scaleStart) * progress;\n\n      element.style.top = `${currentTop}px`;\n      element.style.left = `${currentLeft}px`;\n      element.style.transform = `translate(-50%, -50%) scale(${scale})`;\n    }\n\n    ticking = false;\n  }\n\n  function onScroll() {\n    if (!ticking) {\n      window.requestAnimationFrame(animateLogo);\n      ticking = true;\n    }\n  }\n\n  window.addEventListener(\"scroll\", onScroll, { passive: true });\n  window.addEventListener(\"resize\", animateLogo);\n\n  animateLogo();\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0b7a5e0 e-flex e-con-boxed e-con e-parent\" data-id=\"0b7a5e0\" 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<div class=\"elementor-element elementor-element-7422030 e-con-full e-flex e-con e-child\" data-id=\"7422030\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f74aa72 e-con-full e-flex e-con e-child\" data-id=\"f74aa72\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4016aca elementor-widget elementor-widget-heading\" data-id=\"4016aca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Choose your sector or type of business<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4e80e1f e-con-full e-flex e-con e-child\" data-id=\"4e80e1f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba903d6 elementor-widget elementor-widget-text-editor\" data-id=\"ba903d6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Optimise your hospitality premises with JEMI professional equipment adapted to each sector.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4125136 e-con-full e-flex e-con e-child\" data-id=\"4125136\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6275e15 elementor-widget elementor-widget-jet-listing-grid\" data-id=\"6275e15\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:2000,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:1500,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:3,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:1,&quot;fade&quot;:true,&quot;slidesToShow&quot;:{&quot;desktop&quot;:1,&quot;tablet&quot;:1,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--5768\" data-queried-id=\"9448|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:5768,&quot;posts_num&quot;:99,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;3&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:2000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;fade&quot;,&quot;speed&quot;:1500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"terms\" data-listing-id=\"5768\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-155\" data-post-id=\"155\"  ><style type=\"text\/css\">.jet-listing-dynamic-post-155 .elementor-element.elementor-element-4c899fc:not(.elementor-motion-effects-element-type-background), .jet-listing-dynamic-post-155 .elementor-element.elementor-element-4c899fc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/10\/Rectangle-5-1.png\");}<\/style>\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"5768\" class=\"elementor elementor-5768\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t<a class=\"elementor-element elementor-element-4c899fc e-con-full e-flex e-con e-child\" data-id=\"4c899fc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/jemi.es\/en\/solutions-by-sector\/cafeteria-bar\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a90d82 elementor-widget elementor-widget-heading\" data-id=\"2a90d82\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Bar \/ caf\u00e9<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t<\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-803a943 e-con-full e-flex e-con e-child\" data-id=\"803a943\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfa0017 elementor-widget elementor-widget-jet-listing-grid\" data-id=\"dfa0017\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:2000,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:1500,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:3,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:1,&quot;fade&quot;:true,&quot;slidesToShow&quot;:{&quot;desktop&quot;:1,&quot;tablet&quot;:1,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--5768\" data-queried-id=\"9448|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:5768,&quot;posts_num&quot;:99,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;3&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:2000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;fade&quot;,&quot;speed&quot;:1500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"terms\" data-listing-id=\"5768\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-158\" data-post-id=\"158\"  ><style type=\"text\/css\">.jet-listing-dynamic-post-158 .elementor-element.elementor-element-4c899fc:not(.elementor-motion-effects-element-type-background), .jet-listing-dynamic-post-158 .elementor-element.elementor-element-4c899fc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/11\/Frame-5614_11zon.webp\");}<\/style>\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"5768\" class=\"elementor elementor-5768\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t<a class=\"elementor-element elementor-element-4c899fc e-con-full e-flex e-con e-child\" data-id=\"4c899fc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/jemi.es\/en\/solutions-by-sector\/food-service-chain\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a90d82 elementor-widget elementor-widget-heading\" data-id=\"2a90d82\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Foodservice chain<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ce58238 elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"ce58238\" 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<div class=\"elementor-element elementor-element-170ae49 e-con-full e-flex e-con e-child\" data-id=\"170ae49\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3567786 elementor-widget elementor-widget-jet-listing-grid\" data-id=\"3567786\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:2000,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:3000,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:3,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:1,&quot;fade&quot;:true,&quot;slidesToShow&quot;:{&quot;desktop&quot;:1,&quot;tablet&quot;:1,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--5787\" data-queried-id=\"9448|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:5787,&quot;posts_num&quot;:99,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;yes&quot;,&quot;max_posts_num&quot;:99,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;3&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:2000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;fade&quot;,&quot;speed&quot;:3000,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"terms\" data-listing-id=\"5787\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-324\" data-post-id=\"324\"  ><style type=\"text\/css\">.jet-listing-dynamic-post-324 .elementor-element.elementor-element-bae5e27:not(.elementor-motion-effects-element-type-background), .jet-listing-dynamic-post-324 .elementor-element.elementor-element-bae5e27 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/10\/Rectangle-5.png\");}<\/style>\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"5787\" class=\"elementor elementor-5787\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t<a class=\"elementor-element elementor-element-bae5e27 e-con-full e-flex e-con e-child\" data-id=\"bae5e27\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/jemi.es\/en\/solutions-by-sector\/restoration\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-459f9e6 elementor-widget elementor-widget-heading\" data-id=\"459f9e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Restaurants: Small Restaurants, Gastrobars, Boutique Hotels, Food trucks restaurants<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t<\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-25fd1c1 e-con-full e-flex e-con e-child\" data-id=\"25fd1c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a89a2ad elementor-widget elementor-widget-jet-listing-grid\" data-id=\"a89a2ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:2500,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:1500,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:3,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:1,&quot;fade&quot;:true,&quot;slidesToShow&quot;:{&quot;desktop&quot;:1,&quot;tablet&quot;:1,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--5489\" data-queried-id=\"9448|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:5489,&quot;posts_num&quot;:99,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;3&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:2500,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;fade&quot;,&quot;speed&quot;:1500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"terms\" data-listing-id=\"5489\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-157\" data-post-id=\"157\"  ><style type=\"text\/css\">.jet-listing-dynamic-post-157 .elementor-element.elementor-element-7d33edf:not(.elementor-motion-effects-element-type-background), .jet-listing-dynamic-post-157 .elementor-element.elementor-element-7d33edf > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/10\/Rectangle-5-2.png\");}<\/style>\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"5489\" class=\"elementor elementor-5489\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t<a class=\"elementor-element elementor-element-7d33edf e-con-full e-flex e-con e-child\" data-id=\"7d33edf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/jemi.es\/en\/solutions-by-sector\/hotel-kitchen\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f83dac elementor-widget elementor-widget-heading\" data-id=\"8f83dac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Hotel kitchen<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2c4a846 e-flex e-con-boxed e-con e-parent\" data-id=\"2c4a846\" 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-ff54e6a elementor-align-center elementor-widget elementor-widget-button\" data-id=\"ff54e6a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/en\/sectores\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">See all<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\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-be5077d e-flex e-con-boxed e-con e-parent\" data-id=\"be5077d\" 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-9b207ea elementor-widget elementor-widget-spacer\" data-id=\"9b207ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2151977 e-flex e-con-boxed e-con e-parent\" data-id=\"2151977\" 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<div class=\"elementor-element elementor-element-03f0d0b e-con-full e-flex e-con e-child\" data-id=\"03f0d0b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7eee933 e-con-full e-flex e-con e-child\" data-id=\"7eee933\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a221c8 elementor-widget elementor-widget-heading\" data-id=\"3a221c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Discover our products by type<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8871d39 e-con-full e-flex e-con e-child\" data-id=\"8871d39\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-520c3ff elementor-widget elementor-widget-text-editor\" data-id=\"520c3ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Find the perfect equipment for your space and needs.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-299071c elementor-widget elementor-widget-html\" data-id=\"299071c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n\n    const fichas = document.querySelectorAll(\".fichas-productos .ficha\");\n\n    fichas.forEach(ficha => {\n        ficha.addEventListener(\"mouseenter\", () => {\n            \/\/ Quitamos 'active' de todas\n            fichas.forEach(f => f.classList.remove(\"active\"));\n\n            \/\/ A\u00f1adimos active a la ficha en la que hay hover\n            ficha.classList.add(\"active\");\n        });\n    });\n\n});\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-08a2ba6 e-con-full fichas-productos e-flex e-con e-child\" data-id=\"08a2ba6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"elementor-element elementor-element-7d31382 e-con-full ficha e-flex e-con e-child\" data-id=\"7d31382\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"\/en\/dishwasher\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1435a6c Titulo elementor-widget elementor-widget-heading\" data-id=\"1435a6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Professional dishwashers<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f7a3953 descripcion elementor-widget elementor-widget-text-editor\" data-id=\"f7a3953\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Frontal, dome, tunnel and parts washer machines for utensils of all types, sizes and sectors. Maximum water and energy efficiency.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-574da6d e-con-full ficha e-flex e-con e-child\" data-id=\"574da6d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/jemi.es\/en\/kitchens\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8cb56fc Titulo elementor-widget elementor-widget-heading\" data-id=\"8cb56fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Professional Kitchens<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9d1bdcc descripcion elementor-widget elementor-widget-text-editor\" data-id=\"9d1bdcc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Four series of modular kitchens and their different product families, as well as the special line of made-to-measure kitchens.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-60c2427 e-con-full ficha e-flex e-con e-child\" data-id=\"60c2427\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/jemi.es\/en\/fryers\/\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b5f5aa Titulo elementor-widget elementor-widget-heading\" data-id=\"2b5f5aa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Industrial fryers<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b7abac1 descripcion elementor-widget elementor-widget-text-editor\" data-id=\"b7abac1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Table-top or bench-top models, single and double basins, cold zone and temperature control for perfect and safe frying.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fd4b045 elementor-widget elementor-widget-html\" data-id=\"fd4b045\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n\n    const fichas = document.querySelectorAll(\".fichas-productos .ficha\");\n\n    if (fichas.length === 0) return;\n\n    \/\/ Activar la primera por defecto\n    fichas[0].classList.add(\"active\");\n\n    fichas.forEach(ficha => {\n\n        ficha.addEventListener(\"mouseenter\", function() {\n            fichas.forEach(f => f.classList.remove(\"active\"));\n            this.classList.add(\"active\");\n        });\n\n    });\n\n});\n<\/script>\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-ac78af9 e-flex e-con-boxed e-con e-parent\" data-id=\"ac78af9\" 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-993fb44 elementor-widget elementor-widget-spacer\" data-id=\"993fb44\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-16a0c01 e-con-full e-flex e-con e-parent\" data-id=\"16a0c01\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-84028e6 e-con-full e-flex e-con e-child\" data-id=\"84028e6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-850677d e-flex e-con-boxed e-con e-child\" data-id=\"850677d\" 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-1d3d1fa elementor-widget elementor-widget-heading\" data-id=\"1d3d1fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Rely on JEMI's industrial solutions: industrial cookers and dishwashers with 60 years of reliability and innovation.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b8acf44 elementor-widget elementor-widget-text-editor\" data-id=\"b8acf44\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>More than six decades manufacturing robust, efficient equipment adapted to the most demanding standards.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7334f03 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"7334f03\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/en\/who-we-are\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">About us<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-08e2e91 elementor-pagination-type-progressbar elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"08e2e91\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 1&quot;,&quot;_id&quot;:&quot;fd9c442&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 2&quot;,&quot;_id&quot;:&quot;11ad496&quot;},{&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 3&quot;,&quot;_id&quot;:&quot;857570d&quot;},{&quot;_id&quot;:&quot;534b92d&quot;,&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 4&quot;},{&quot;_id&quot;:&quot;4ff27ae&quot;,&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 7&quot;},{&quot;_id&quot;:&quot;2da01e6&quot;,&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 5&quot;},{&quot;_id&quot;:&quot;f8e3077&quot;,&quot;slide_title&quot;:&quot;Diapositiva n\\u00ba 6&quot;}],&quot;slides_to_show&quot;:&quot;5&quot;,&quot;pagination&quot;:&quot;progressbar&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;3&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4bde9b7 e-flex e-con-boxed e-con e-child\" data-id=\"4bde9b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4c84a72 e-con-full e-flex e-con e-child\" data-id=\"4c84a72\" 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-91951e1 elementor-widget elementor-widget-image\" data-id=\"91951e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"158\" height=\"158\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons-6.svg\" class=\"attachment-large size-large wp-image-5844\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4df3bfe e-con-full e-flex e-con e-child\" data-id=\"4df3bfe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a8991a1 elementor-widget elementor-widget-heading\" data-id=\"a8991a1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Founded in 1959<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6207d3f elementor-widget elementor-widget-heading\" data-id=\"6207d3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">The value of accumulated experience<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fe0c207 e-flex e-con-boxed e-con e-child\" data-id=\"fe0c207\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4d73dea e-con-full e-flex e-con e-child\" data-id=\"4d73dea\" 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-6dd9b83 elementor-widget elementor-widget-image\" data-id=\"6dd9b83\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"158\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons-5.svg\" class=\"attachment-large size-large wp-image-5845\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-390505b e-con-full e-flex e-con e-child\" data-id=\"390505b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0872d46 elementor-widget elementor-widget-heading\" data-id=\"0872d46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Production capacity<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6fb87cb elementor-widget elementor-widget-heading\" data-id=\"6fb87cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">2 manufacturing plants (12,000 m\u00b2)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7bcfea5 e-flex e-con-boxed e-con e-child\" data-id=\"7bcfea5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7ea3cb2 e-con-full e-flex e-con e-child\" data-id=\"7ea3cb2\" 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-c70aae7 elementor-widget elementor-widget-image\" data-id=\"c70aae7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"159\" height=\"159\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons-4.svg\" class=\"attachment-large size-large wp-image-5846\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7e70587 e-con-full e-flex e-con e-child\" data-id=\"7e70587\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f14172 elementor-widget elementor-widget-heading\" data-id=\"1f14172\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Staff<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0972f6b elementor-widget elementor-widget-heading\" data-id=\"0972f6b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">127 specialised professionals<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2970438 e-flex e-con-boxed e-con e-child\" data-id=\"2970438\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-aa57b91 e-con-full e-flex e-con e-child\" data-id=\"aa57b91\" 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-91e2ede elementor-widget elementor-widget-image\" data-id=\"91e2ede\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"148\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons-3.svg\" class=\"attachment-large size-large wp-image-5847\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6c86e0f e-con-full e-flex e-con e-child\" data-id=\"6c86e0f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d0a28fe elementor-widget elementor-widget-heading\" data-id=\"d0a28fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Global reach<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7857f5d elementor-widget elementor-widget-heading\" data-id=\"7857f5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Presence in +70 countries<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-bce3c5f e-flex e-con-boxed e-con e-child\" data-id=\"bce3c5f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-87869a7 e-con-full e-flex e-con e-child\" data-id=\"87869a7\" 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-288a013 elementor-widget elementor-widget-image\" data-id=\"288a013\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"148\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons-2.svg\" class=\"attachment-large size-large wp-image-5848\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-90d307a e-con-full e-flex e-con e-child\" data-id=\"90d307a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d8a87ee elementor-widget elementor-widget-heading\" data-id=\"d8a87ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Quality Equipment<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e479413 elementor-widget elementor-widget-heading\" data-id=\"e479413\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Equipment built for excellent and consistent performance.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-50e3ef8 e-flex e-con-boxed e-con e-child\" data-id=\"50e3ef8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-10546b4 e-con-full e-flex e-con e-child\" data-id=\"10546b4\" 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-9d59604 elementor-widget elementor-widget-image\" data-id=\"9d59604\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"148\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons-1.svg\" class=\"attachment-large size-large wp-image-5849\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1322c31 e-con-full e-flex e-con e-child\" data-id=\"1322c31\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25ef60e elementor-widget elementor-widget-heading\" data-id=\"25ef60e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">After-sales support<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c1d64f5 elementor-widget elementor-widget-heading\" data-id=\"c1d64f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Technical assistance, spare parts and support whenever you need it.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"7\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 7\" data-no-translation-aria-label=\"\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4e8f8be e-con-full e-flex e-con e-child\" data-id=\"4e8f8be\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7f87fc1 e-con-full e-flex e-con e-child\" data-id=\"7f87fc1\" 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-79a3476 elementor-widget elementor-widget-image\" data-id=\"79a3476\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"148\" src=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/12\/Set-Icons.svg\" class=\"attachment-large size-large wp-image-5850\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d443e06 e-con-full e-flex e-con e-child\" data-id=\"d443e06\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3abd5b3 elementor-widget elementor-widget-heading\" data-id=\"3abd5b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Proven trust<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a4173d7 elementor-widget elementor-widget-heading\" data-id=\"a4173d7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Thousands of customers endorse our professionalism, quality and service.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\" data-no-translation-aria-label=\"\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" transform=\"rotate(-180 10.6264 11.5)\" stroke=\"#A81916\" stroke-width=\"1.21445\"><\/circle><path d=\"M12.0904 16.0002L7.53619 11.446L12.0904 6.89183\" stroke=\"#A81916\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\" data-no-translation-aria-label=\"\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" stroke=\"#A81916\" stroke-width=\"1.21445\"><\/circle><path d=\"M9.16211 6.99976L13.7163 11.554L9.16211 16.1082\" stroke=\"#A81916\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-aa6e3b7 e-flex e-con-boxed e-con e-parent\" data-id=\"aa6e3b7\" 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<div class=\"elementor-element elementor-element-a3c075f e-con-full e-flex e-con e-child\" data-id=\"a3c075f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-86b84ed e-con-full e-flex e-con e-child\" data-id=\"86b84ed\" 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-23fe1b7 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"23fe1b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">What solution <br>do you need? Use the product finder<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9198dfe e-con-full e-flex e-con e-child\" data-id=\"9198dfe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-64afd86 elementor-widget elementor-widget-text-editor\" data-id=\"64afd86\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A guided form to help you choose the ideal model according to sector, volume and use.<br \/><br \/><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e30a4d elementor-widget elementor-widget-button\" data-id=\"7e30a4d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/jemi.es\/en\/find-your-product\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/circle><path d=\"M9.1626 6.99976L13.7168 11.554L9.1626 16.1082\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Locate your product<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f0f87e4 e-con-full e-flex e-con e-child\" data-id=\"f0f87e4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-1a1238b e-con-full e-flex e-con e-child\" data-id=\"1a1238b\" 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-da1a8b6 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"da1a8b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Calculate your savings with our efficient solutions<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ce9ff72 e-con-full e-flex e-con e-child\" data-id=\"ce9ff72\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c038c1 elementor-widget elementor-widget-text-editor\" data-id=\"8c038c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Simulates water and energy consumption <br \/>of your next Jemi industrial kitchen and find out how much you can reduce your operating costs.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-82f01b8 elementor-widget elementor-widget-button\" data-id=\"82f01b8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/circle><path d=\"M9.1626 6.99976L13.7168 11.554L9.1626 16.1082\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Calculate my savings<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-363e48d e-flex e-con-boxed e-con e-parent\" data-id=\"363e48d\" 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-c4ad153 elementor-widget elementor-widget-spacer\" data-id=\"c4ad153\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f204fc2 e-flex e-con-boxed e-con e-parent\" data-id=\"f204fc2\" 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<div class=\"elementor-element elementor-element-0082580 e-grid e-con-full e-con e-child\" data-id=\"0082580\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ca9ed28 e-con-full e-flex e-con e-child\" data-id=\"ca9ed28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0467607 e-con-full e-flex e-con e-child\" data-id=\"0467607\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d4cc5c elementor-widget elementor-widget-heading\" data-id=\"5d4cc5c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">All the information, <br>\nat your fingertips<\/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-68a94e1 e-con-full e-flex e-con e-child\" data-id=\"68a94e1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-af8c243 e-grid e-con-full e-con e-child\" data-id=\"af8c243\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"elementor-element elementor-element-94c93aa e-con-full e-flex e-con e-child\" data-id=\"94c93aa\" data-element_type=\"container\" data-e-type=\"container\" href=\"\/en\/documentation\/\">\n\t\t<div class=\"elementor-element elementor-element-13b2d42 e-con-full e-flex e-con e-child\" data-id=\"13b2d42\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-258bbf1 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"258bbf1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Access our documentation<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-00754bd elementor-widget__width-initial elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"00754bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/circle><path d=\"M9.1626 6.99976L13.7168 11.554L9.1626 16.1082\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-58b8450 elementor-widget elementor-widget-text-editor\" data-id=\"58b8450\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Everything you need to work with our professional kitchen and dishwashing equipment can be found in our documentation section.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-0f04536 e-con-full e-flex e-con e-child\" data-id=\"0f04536\" data-element_type=\"container\" data-e-type=\"container\" href=\"\/en\/branches\/\">\n\t\t<div class=\"elementor-element elementor-element-07ced39 e-con-full e-flex e-con e-child\" data-id=\"07ced39\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9ac10f3 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9ac10f3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Do you need to locate the delegation in your geographical area?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15993ef elementor-widget__width-initial elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"15993ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/circle><path d=\"M9.1626 6.99976L13.7168 11.554L9.1626 16.1082\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ae3b198 elementor-widget elementor-widget-text-editor\" data-id=\"ae3b198\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Access information about our sales offices.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-f395fed e-con-full e-flex e-con e-child\" data-id=\"f395fed\" data-element_type=\"container\" data-e-type=\"container\" href=\"\/en\/contact\/\">\n\t\t<div class=\"elementor-element elementor-element-5c0563f e-con-full e-flex e-con e-child\" data-id=\"5c0563f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9449661 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9449661\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Need to locate a technician?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b76d61 elementor-widget__width-initial elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"0b76d61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"22\" height=\"23\" viewbox=\"0 0 22 23\" fill=\"none\"><circle cx=\"10.6264\" cy=\"11.5\" r=\"10.0192\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/circle><path d=\"M9.1626 6.99976L13.7168 11.554L9.1626 16.1082\" stroke=\"#1A1413\" stroke-width=\"1.21445\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9edb1fc elementor-widget elementor-widget-text-editor\" data-id=\"9edb1fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Connect directly to our SAT for support, spare parts and preventive maintenance.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f4295d0 e-flex e-con-boxed e-con e-parent\" data-id=\"f4295d0\" 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-db97b3d elementor-widget elementor-widget-spacer\" data-id=\"db97b3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Discover our range of professional dishwashers, designed to meet all your needs Discover Discover the Jemi professional kitchen range Discover Discover the Jemi range of industrial fryers, safe and efficient equipment Discover Choose your sector or type of business Optimise your catering premises with JEMI professional equipment tailored to each sector. See all [\u2026]<\/p>","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":62,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-9448","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Home - Jemi<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jemi.es\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - Jemi\" \/>\n<meta property=\"og:description\" content=\"Descubre nuestra gama de lavavajillas profesionales, dise\u00f1adas para todo tipo de necesidades Descubrir Descubre la gama de cocina profesional Jemi Descubrir Descubre la gama de freidoras industriales Jemi, equipos seguros y eficientes Descubrir Elige tu sector o tipo de negocio Optimiza tu local de hosteler\u00eda con equipos profesionales JEMI adaptados a cada sector. Ver todos [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jemi.es\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Jemi\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-28T12:17:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jemi.es\\\/\",\"url\":\"https:\\\/\\\/jemi.es\\\/\",\"name\":\"Home - Jemi\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jemi.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jemi.es\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jemi.es\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jemi.es\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Capa_1.png\",\"datePublished\":\"2026-02-26T12:15:52+00:00\",\"dateModified\":\"2026-05-28T12:17:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jemi.es\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jemi.es\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/jemi.es\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jemi.es\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Capa_1.png\",\"contentUrl\":\"https:\\\/\\\/jemi.es\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Capa_1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jemi.es\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jemi.es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jemi.es\\\/#website\",\"url\":\"https:\\\/\\\/jemi.es\\\/\",\"name\":\"Jemi\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jemi.es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home - Jemi","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jemi.es\/en\/","og_locale":"en_GB","og_type":"article","og_title":"Home - Jemi","og_description":"Descubre nuestra gama de lavavajillas profesionales, dise\u00f1adas para todo tipo de necesidades Descubrir Descubre la gama de cocina profesional Jemi Descubrir Descubre la gama de freidoras industriales Jemi, equipos seguros y eficientes Descubrir Elige tu sector o tipo de negocio Optimiza tu local de hosteler\u00eda con equipos profesionales JEMI adaptados a cada sector. Ver todos [&hellip;]","og_url":"https:\/\/jemi.es\/en\/","og_site_name":"Jemi","article_modified_time":"2026-05-28T12:17:58+00:00","og_image":[{"url":"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/jemi.es\/","url":"https:\/\/jemi.es\/","name":"Home - Jemi","isPartOf":{"@id":"https:\/\/jemi.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jemi.es\/#primaryimage"},"image":{"@id":"https:\/\/jemi.es\/#primaryimage"},"thumbnailUrl":"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png","datePublished":"2026-02-26T12:15:52+00:00","dateModified":"2026-05-28T12:17:58+00:00","breadcrumb":{"@id":"https:\/\/jemi.es\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jemi.es\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/jemi.es\/#primaryimage","url":"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png","contentUrl":"https:\/\/jemi.es\/wp-content\/uploads\/2025\/09\/Capa_1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jemi.es\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jemi.es\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/jemi.es\/#website","url":"https:\/\/jemi.es\/","name":"Jemi","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jemi.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/pages\/9448","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/comments?post=9448"}],"version-history":[{"count":0,"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/pages\/9448\/revisions"}],"wp:attachment":[{"href":"https:\/\/jemi.es\/en\/wp-json\/wp\/v2\/media?parent=9448"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}