{"id":4206,"date":"2024-09-25T10:47:30","date_gmt":"2024-09-25T08:47:30","guid":{"rendered":"http:\/\/dynaplant.nl\/home\/"},"modified":"2026-06-08T14:38:03","modified_gmt":"2026-06-08T12:38:03","slug":"home","status":"publish","type":"page","link":"https:\/\/dynaplant.nl\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4206\" class=\"elementor elementor-4206 elementor-10\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0c03760 e-flex e-con-boxed e-con e-parent\" data-id=\"0c03760\" 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-b7351a4 elementor-widget elementor-widget-html\" data-id=\"b7351a4\" 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>\n\ndocument.addEventListener('DOMContentLoaded', function () {\n    \n  const isMobile = \/iPhone|iPad|Android|SamsungBrowser\/i.test(navigator.userAgent);\n\n  let horizontalScrollContainers = document.querySelectorAll('.horizontalScrollContainer');\n  horizontalScrollContainers.forEach((horizontalScrollContainer) => {\n\n    let speedMultipliers = {\n      desktop: 1.4,\n      tablet: 1.2,\n      mobile: 1,\n    } \/* greater value = faster, 1 = default *\/\n\n    let horizontalScrollTranslate = horizontalScrollContainer.querySelector('.horizontalScrollTranslate');\n    let horizontalScrollParent = horizontalScrollContainer.parentElement;\n    let scrolledRatio = 0;\n    let horizontalScrollContainerTop, horizontalScrollHeight, horizontalScrollTranslateWidth, widthToScroll, windowWidth, mult;\n    \n    if (isMobile) horizontalScrollTranslate.style.transition = 'none';\n\n    function updateValues() {\n      windowWidth = window.innerWidth;\n      windowWidth > 1024 ? mult = speedMultipliers.desktop : windowWidth > 767 ? mult = speedMultipliers.tablet : mult = speedMultipliers.mobile;\n      horizontalScrollTranslateWidth = horizontalScrollTranslate.offsetWidth;\n      horizontalScrollParent.style.height = window.innerHeight + horizontalScrollTranslateWidth \/ mult + 'px';\n      horizontalScrollHeight = horizontalScrollParent.offsetHeight;\n      widthToScroll = horizontalScrollTranslateWidth - windowWidth;\n      horizontalScrollContainerTop = (window.innerHeight - horizontalScrollContainer.offsetHeight) \/ 2;\n      horizontalScrollContainer.style.top = `${horizontalScrollContainerTop}px`;\n    }\n    updateValues();\n\n    \/* update values on resize event *\/\n    window.addEventListener('resize', () => {\n      if (windowWidth !== window.innerWidth) updateValues();\n    });\n\n    let isUpdateScheduled = false;\n\n    function manageScroll() {\n      let horizontalScrollTop = horizontalScrollParent.getBoundingClientRect().top;\n      let windowHeight = window.innerHeight;\n      scrolledRatio = (horizontalScrollTop - horizontalScrollContainerTop) \/ (horizontalScrollHeight - horizontalScrollContainer.offsetHeight - 100) * -1; \/* removing 100px to make it sticky a bit longer after it reaches the end, for better UX *\/\n      \/* clamp scrolledRatio in between 0 and 1 *\/\n      scrolledRatio = Math.min(Math.max(scrolledRatio, 0), 1);\n      horizontalScrollTranslate.style.transform = `translateX(${scrolledRatio * widthToScroll * -1}px)`;\n      isUpdateScheduled = false;\n    };\n\n    \/* Listen to the scroll event on the window object and schedule the update function using throttling *\/\n    window.addEventListener('scroll', () => {\n      if (!isUpdateScheduled) {\n        isUpdateScheduled = true;\n        requestAnimationFrame(manageScroll);\n      }\n    });\n\n  });\n\n   \n\n  \/* preload the images after the first image gets in the viewport *\/\n  (function () {\n    let images = document.querySelectorAll('.horizontalScrollContainer img');\n    if (!images.length) return;\n    let firstImage = images[0];\n\n    let options = {\n      root: null,\n      rootMargin: '0px',\n      threshold: 0.3\n    };\n\n    let observer = new IntersectionObserver((entries, observer) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          images.forEach(img => {\n            addPreloadLink(img);\n          });\n          observer.unobserve(firstImage);\n        }\n      });\n    }, options);\n\n    observer.observe(firstImage);\n  })();\n\n\n\n  function addPreloadLink(img) {\n    let link = document.createElement('link');\n    link.rel = 'preload';\n    link.href = img.src || img.dataset.src;\n    link.as = 'image';\n    if (img.srcset) link.setAttribute('imagesrcset', img.srcset);\n    if (img.sizes) link.setAttribute('imagesizes', img.sizes);\n    document.head.appendChild(link);\n  }\n  \/* END OF preload the images after the first image gets in the viewport *\/\n\n\n  \/* link anchors support *\/\n  const anchorLinks = document.querySelectorAll('a[href*=\"#\"]');\n\n  anchorLinks.forEach((link) => {\n    link.addEventListener('click', function (event) {\n      const href = this.getAttribute('href');\n      const anchorIndex = href.lastIndexOf('#');\n      const targetID = anchorIndex !== -1 ? href.substring(anchorIndex + 1) : '';\n\n      const targetElement = document.getElementById(targetID);\n\n      if (targetElement) {\n        const translateContainer = targetElement.closest('.horizontalScrollTranslate');\n\n        if (translateContainer) {\n          event.preventDefault();\n\n          let scrollParent = translateContainer.closest('.horizontalScrollWrapper');\n\n          let scrollHeight = scrollParent.offsetHeight;\n\n          let scrollDistance = targetElement.offsetLeft \/ (translateContainer.offsetWidth - window.innerWidth) * (scrollHeight - translateContainer.parentElement.offsetHeight - 100);\n          \/* we consider the 100px offset to make it sticky a bit longer after it reaches the end, for better UX \n          * we also consider the speedMultipliers, through the scrollHeight \n          *\/\n\n          scrollDistance += scrollParent.getBoundingClientRect().top + window.scrollY;\n\n          setTimeout(function () {\n            jQuery('html,body').animate({ scrollTop: scrollDistance }, 1300);\n          }, 100);\n        }\n      }\n    });\n  });\n  \/* END OF link anchors support *\/\n\n});\n\n<\/script>\n\n<style>\n\nbody:not(.elementor-editor-active) .horizontalScrollContainer {\n    overflow: hidden;\n}\n.horizontalScrollContainer {\n    position: sticky;\n    top:0;\n}\n\n.horizontalScrollTranslate.e-con {\n    width: fit-content;\n    transition: transform 0.14s cubic-bezier(.03,.89,.74,1.01);\n}\n\n.horizontalScrollTranslate > .e-con.e-con:first-child {\n   min-width: 100vw !important;\n   height: 100vh;\n   max-height: 100vh;\n   max-width: 100vw;\n}\n\n.horizontalScrollTranslate > .e-con.e-con {\n   min-width: 30vw;\n   height: 100vh;\n   max-height: 100vh;\n   max-width: 100vw; \/* delete if you want containers that are direct children of \"horizontalScrollTranslate\" to be more than 100vw *\/\n}\n\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 class=\"elementor-element elementor-element-63f9962 e-con-full horizontalScrollWrapper e-flex e-con e-parent\" data-id=\"63f9962\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1d47b4d e-con-full horizontalScrollContainer e-flex e-con e-child\" data-id=\"1d47b4d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-067354f e-con-full horizontalScrollTranslate e-flex e-con e-child\" data-id=\"067354f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ab6941e e-con-full e-flex e-con e-child\" data-id=\"ab6941e\" 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-1b99357 elementor-widget elementor-widget-heading\" data-id=\"1b99357\" 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<h1 class=\"elementor-heading-title elementor-size-default\">revealing<br \/>nature<br \/>from seed<br \/>to plant<\/h1>\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-2a972e3 e-con-full e-flex e-con e-child\" data-id=\"2a972e3\" 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-12391ab animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"12391ab\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" 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 fetchpriority=\"high\" decoding=\"async\" width=\"1707\" height=\"1871\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla.png\" class=\"attachment-full size-full wp-image-4153\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla.png 1707w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla-274x300.png 274w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla-934x1024.png 934w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla-768x842.png 768w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla-1401x1536.png 1401w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\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 class=\"elementor-element elementor-element-e47705b elementor-widget elementor-widget-heading\" data-id=\"e47705b\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Calla<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9372b8c elementor-widget elementor-widget-text-editor\" data-id=\"9372b8c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tOur Calla assortment is all about seasonal color trends, such as for Valentine&#8217;s Day or Easter. Whether it&#8217;s color or look, we have the perfect collection for every business need. \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-f669550 elementor-widget elementor-widget-button\" data-id=\"f669550\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/products\/calla\/\">\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\">Discover the Calla<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3627c64 e-con-full e-flex e-con e-child\" data-id=\"3627c64\" 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-641c5d2 animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"641c5d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" 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=\"1500\" height=\"2185\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant.png\" class=\"attachment-full size-full wp-image-4482\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant.png 1500w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant-206x300.png 206w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant-703x1024.png 703w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant-768x1119.png 768w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant-1054x1536.png 1054w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/11\/kentia_dynaplant-1406x2048.png 1406w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" \/>\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 class=\"elementor-element elementor-element-dbbacf1 elementor-widget elementor-widget-heading\" data-id=\"dbbacf1\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Kentia<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-602f95b elementor-widget elementor-widget-text-editor\" data-id=\"602f95b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tThe Kentia palm is an indestructible classic that has been popular in interior design for decades. With our variety of pot sizes and plant heights, you can tailor this green powerhouse to suit any space. \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-00788f7 elementor-widget elementor-widget-button\" data-id=\"00788f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/products\/kentia\/\">\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\">Discover the Kentia<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f67c9e e-con-full e-flex e-con e-child\" data-id=\"4f67c9e\" 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-dd83405 animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"dd83405\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" 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=\"1943\" height=\"1846\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-clivia.png\" class=\"attachment-full size-full wp-image-4155\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-clivia.png 1943w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-clivia-300x285.png 300w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-clivia-1024x973.png 1024w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-clivia-768x730.png 768w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-clivia-1536x1459.png 1536w\" sizes=\"(max-width: 1943px) 100vw, 1943px\" \/>\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 class=\"elementor-element elementor-element-7eab3fd elementor-widget elementor-widget-heading\" data-id=\"7eab3fd\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Clivia<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c63616c elementor-widget elementor-widget-text-editor\" data-id=\"c63616c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Did you know that we are the only Dutch grower of Clivia miniata? Thanks to our smart breeding and cultivation systems, we can offer this plant in periods when it normally does not flower. <\/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-25862b3 elementor-widget elementor-widget-button\" data-id=\"25862b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/products\/clivia\/\">\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\">Discover the Clivia<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59f9eb8 e-con-full e-flex e-con e-child\" data-id=\"59f9eb8\" 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-0eebe7b animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"0eebe7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" 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=\"1483\" height=\"2574\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera.png\" class=\"attachment-full size-full wp-image-4157\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera.png 1483w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera-173x300.png 173w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera-590x1024.png 590w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera-768x1333.png 768w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera-885x1536.png 885w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-monstera-1180x2048.png 1180w\" sizes=\"(max-width: 1483px) 100vw, 1483px\" \/>\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 class=\"elementor-element elementor-element-595411e elementor-widget elementor-widget-heading\" data-id=\"595411e\" 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<h3 class=\"elementor-heading-title elementor-size-default\">monstera<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f7461eb elementor-widget elementor-widget-text-editor\" data-id=\"f7461eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tOur Monstera collection, with varieties such as &#8216;Taurri&#8217; and &#8216;Pertusum&#8217;, comes from our own mother plants and seeds. Whether you want a full bush or a Monstera with moss cane, you&#8217;re in the right place with us for quality and variety. \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-e57b349 elementor-widget elementor-widget-button\" data-id=\"e57b349\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/products\/monstera\/\">\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\">Discover the Monstera<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-689ab1e e-con-full e-flex e-con e-child\" data-id=\"689ab1e\" 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-83e3882 animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"83e3882\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" 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=\"1672\" height=\"2589\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia.png\" class=\"attachment-full size-full wp-image-4156\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia.png 1672w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia-194x300.png 194w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia-661x1024.png 661w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia-768x1189.png 768w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia-992x1536.png 992w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-strelitzia-1323x2048.png 1323w\" sizes=\"(max-width: 1672px) 100vw, 1672px\" \/>\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 class=\"elementor-element elementor-element-62f60d1 elementor-widget elementor-widget-heading\" data-id=\"62f60d1\" 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<h3 class=\"elementor-heading-title elementor-size-default\">strelitzia<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-03fe8fc elementor-widget elementor-widget-text-editor\" data-id=\"03fe8fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tFrom seed to mature plant &#8211; we master every detail of the Strelitzia&#8217;s growth process. Our Nicolai variety is available year-round and is known for its sturdy plant quality. \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-68338c1 elementor-widget elementor-widget-button\" data-id=\"68338c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/products\/strelitzia\/\">\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\">Discover the Strelitzia<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-704de19 e-flex e-con-boxed e-con e-parent\" data-id=\"704de19\" 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-e8299d4 e-con-full e-flex e-con e-child\" data-id=\"e8299d4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6aec761 elementor-widget elementor-widget-heading\" data-id=\"6aec761\" 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\">About<br \/>Dynaplant<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f738651 elementor-widget elementor-widget-text-editor\" data-id=\"f738651\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tDynaplant is all about bringing the magic of nature to life. We source the most extraordinary seeds and bulbs from exotic locations worldwide and grow them with care and skill in our nurseries. Only when a plant has reached its full potential does it begin its journey to a new home &#8211; be it a cozy living room, a stylish office, or a retail space. We deliver our plants through a carefully selected network of wholesalers and retailers, guaranteeing a sustainable approach. Our plants add unique value to any interior, small or large, ensuring a healthy and vibrant environment.    \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-80ae658 elementor-widget elementor-widget-button\" data-id=\"80ae658\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/about-us\/\">\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\">More about Dynaplant<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6621c38 e-con-full e-flex e-con e-parent\" data-id=\"6621c38\" 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-1cb2215 e-con-full e-flex e-con e-child\" data-id=\"1cb2215\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fd77dbc e-transform elementor-widget elementor-widget-image\" data-id=\"fd77dbc\" data-element_type=\"widget\" data-e-type=\"widget\" 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;:1,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;none&quot;,&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-10,&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;],&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=\"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=\"1500\" height=\"1254\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/clivia_vrijstaand_dynaplant_final.png\" class=\"attachment-full size-full wp-image-4188\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/clivia_vrijstaand_dynaplant_final.png 1500w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/clivia_vrijstaand_dynaplant_final-300x251.png 300w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/clivia_vrijstaand_dynaplant_final-1024x856.png 1024w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/clivia_vrijstaand_dynaplant_final-768x642.png 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" \/>\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<div class=\"elementor-element elementor-element-75088f4 e-con-full e-flex e-con e-child\" data-id=\"75088f4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c60123a elementor-widget elementor-widget-heading\" data-id=\"c60123a\" 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\">Craftsman\u00adship in horticulture<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51d3adc elementor-widget elementor-widget-text-editor\" data-id=\"51d3adc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tExclusive houseplants with character &#8211; that is what Dynaplant stands for. Every plant we grow is a masterpiece in itself. From seed to impressive eye-catcher, the growing process requires craftsmanship and dedication. We rise to the challenge of making plants that are in danger of disappearing commercially attractive again. Our goal? Sustainable houseplants that stand the test of time, for both corporate and private customers.     \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-e0d76ae elementor-widget elementor-widget-button\" data-id=\"e0d76ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/about-us\/\">\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\">More about Dynaplant<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4fb2af6 e-con-full e-flex e-con e-child\" data-id=\"4fb2af6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a101dd4 elementor-widget elementor-widget-heading\" data-id=\"a101dd4\" 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\">Working with nature<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e65d701 elementor-widget elementor-widget-text-editor\" data-id=\"e65d701\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tAt Dynaplant, we work in harmony with nature. We believe that a good balance between climate and biology is the key to growing healthy, strong plants. Every step of our production process is focused on sustainability, so we not only deliver beautiful plants, but also contribute to a better environment.  \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-4162900 elementor-widget elementor-widget-button\" data-id=\"4162900\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/sustainability\/\">\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\">More on sustainability<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5c3e350 e-con-full e-flex e-con e-child\" data-id=\"5c3e350\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4ed88f6 e-con-full e-flex e-con e-parent\" data-id=\"4ed88f6\" 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-5d2b49b e-con-full e-flex e-con e-child\" data-id=\"5d2b49b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-420e0a0 e-con-full e-flex e-con e-child\" data-id=\"420e0a0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6378b5 elementor-widget elementor-widget-heading\" data-id=\"a6378b5\" 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\">so happy calla<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4dc8db5 elementor-widget elementor-widget-text-editor\" data-id=\"4dc8db5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tThe Calla has been the symbol of happiness for centuries. With its elegant shape and cheerful colors, it is perfect for sharing small moments of happiness with those around you. Whether as a gift or simply as a beautiful addition to your home, the Calla always brings a smile.  \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-cf0c644 elementor-widget elementor-widget-button\" data-id=\"cf0c644\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/products\/calla\/so-happy-calla\/\">\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\">Discover the Happy Calla<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cad650c e-flex e-con-boxed e-con e-parent\" data-id=\"cad650c\" 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-e39cda4 e-con-full e-flex e-con e-child\" data-id=\"e39cda4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a3d88c elementor-widget elementor-widget-heading\" data-id=\"4a3d88c\" 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\">Discover Dynaplant<br \/>at Floriday<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3fe80b elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f3fe80b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tFor the business market, our complete assortment can of course also be viewed and ordered via the digital trading platform Floriday.\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-d591b4e elementor-widget elementor-widget-button\" data-id=\"d591b4e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/customers.floriday.io\/purchase\/order-supply-preview\/f5187354-05dc-3d9b-b881-3d110a3ee08c\" target=\"_blank\">\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\">To Floriday<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-981c872 e-con-full e-flex e-con e-parent\" data-id=\"981c872\" 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-7661816 e-con-full e-flex e-con e-child\" data-id=\"7661816\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2047501 elementor-widget elementor-widget-heading\" data-id=\"2047501\" 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\">Join our team<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1ad16a9 elementor-widget elementor-widget-text-editor\" data-id=\"1ad16a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p1\">At Dynaplant, there is always room for new talents who are enthusiastic about unique plants and innovative growing techniques. Whether you are a professional or a student, with us you can learn and develop yourself every day. We are also a recognized apprenticeship company, so students can learn and work with us at the same time.  <\/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-21996c3 elementor-widget elementor-widget-button\" data-id=\"21996c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/working-at-dynaplant\/\">\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\">Working at Dynaplant<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5867820 e-con-full e-flex e-con e-child\" data-id=\"5867820\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fd9dec2 e-con-full e-flex e-con e-parent\" data-id=\"fd9dec2\" 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-03bc313 e-con-full e-flex e-con e-child\" data-id=\"03bc313\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a8fe97e e-transform elementor-widget elementor-widget-image\" data-id=\"a8fe97e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;none&quot;,&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-15,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_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;],&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=\"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=\"2099\" height=\"1994\" src=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit.png\" class=\"attachment-full size-full wp-image-4168\" alt=\"\" srcset=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit.png 2099w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit-300x285.png 300w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit-1024x973.png 1024w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit-768x730.png 768w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit-1536x1459.png 1536w, https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/Dynaplant-aug-22-5664-edit-2048x1946.png 2048w\" sizes=\"(max-width: 2099px) 100vw, 2099px\" \/>\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<div class=\"elementor-element elementor-element-390026a e-con-full e-flex e-con e-child\" data-id=\"390026a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-299f9fd elementor-widget elementor-widget-heading\" data-id=\"299f9fd\" 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\">get in touch<br \/>with us<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-17bc8c0 elementor-widget elementor-widget-text-editor\" data-id=\"17bc8c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p1\">Are you curious about our exclusive range of houseplants or looking for customized solutions for your business? Contact us today &#8211; we would love to help you! <\/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-8a43676 elementor-widget elementor-widget-button\" data-id=\"8a43676\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/dynaplant.nl\/en\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get in touch<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>revealingnaturefrom seedto plant Calla Our Calla assortment is all about seasonal color trends, such as for Valentine&#8217;s Day or Easter. Whether it&#8217;s color or look, we have the perfect collection for every business need. Discover the Calla Kentia The Kentia palm is an indestructible classic that has been popular in interior design for decades. With [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-4206","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Dynaplant - Revealing nature from seed to plant<\/title>\n<meta name=\"description\" content=\"Dynaplant is all about bringing the magic of nature to life. We seek out the most extraordinary seeds and bulbs in exotic locations worldwide and grow them with care and skill in our nurseries.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dynaplant.nl\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dynaplant - Revealing nature from seed to plant\" \/>\n<meta property=\"og:description\" content=\"Dynaplant is all about bringing the magic of nature to life. We seek out the most extraordinary seeds and bulbs in exotic locations worldwide and grow them with care and skill in our nurseries.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dynaplant.nl\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Dynaplant\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dynaplant\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-08T12:38:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla-934x1024.png\" \/>\n\t<meta property=\"og:image:width\" content=\"934\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@DynaplantNL\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/\",\"url\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/\",\"name\":\"Dynaplant - Revealing nature from seed to plant\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dynaplant.nl\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/dynaplant-calla.png\",\"datePublished\":\"2024-09-25T08:47:30+00:00\",\"dateModified\":\"2026-06-08T12:38:03+00:00\",\"description\":\"Dynaplant is all about bringing the magic of nature to life. We seek out the most extraordinary seeds and bulbs in exotic locations worldwide and grow them with care and skill in our nurseries.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dynaplant.nl\\\/en\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/#primaryimage\",\"url\":\"https:\\\/\\\/dynaplant.nl\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/dynaplant-calla.png\",\"contentUrl\":\"https:\\\/\\\/dynaplant.nl\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/dynaplant-calla.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dynaplant.nl\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/#website\",\"url\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/\",\"name\":\"Dynaplant\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/#organization\",\"name\":\"Dynaplant\",\"url\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/dynaplant.nl\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/logo_zonder_beeldmerk_dynaplant.svg\",\"contentUrl\":\"https:\\\/\\\/dynaplant.nl\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/logo_zonder_beeldmerk_dynaplant.svg\",\"width\":566,\"height\":149,\"caption\":\"Dynaplant\"},\"image\":{\"@id\":\"http:\\\/\\\/dynaplant.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dynaplant\\\/\",\"https:\\\/\\\/x.com\\\/DynaplantNL\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Dynaplant - Revealing nature from seed to plant","description":"Dynaplant is all about bringing the magic of nature to life. We seek out the most extraordinary seeds and bulbs in exotic locations worldwide and grow them with care and skill in our nurseries.","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:\/\/dynaplant.nl\/en\/","og_locale":"en_US","og_type":"article","og_title":"Dynaplant - Revealing nature from seed to plant","og_description":"Dynaplant is all about bringing the magic of nature to life. We seek out the most extraordinary seeds and bulbs in exotic locations worldwide and grow them with care and skill in our nurseries.","og_url":"https:\/\/dynaplant.nl\/en\/","og_site_name":"Dynaplant","article_publisher":"https:\/\/www.facebook.com\/dynaplant\/","article_modified_time":"2026-06-08T12:38:03+00:00","og_image":[{"width":934,"height":1024,"url":"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla-934x1024.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@DynaplantNL","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dynaplant.nl\/en\/","url":"https:\/\/dynaplant.nl\/en\/","name":"Dynaplant - Revealing nature from seed to plant","isPartOf":{"@id":"http:\/\/dynaplant.nl\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dynaplant.nl\/en\/#primaryimage"},"image":{"@id":"https:\/\/dynaplant.nl\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla.png","datePublished":"2024-09-25T08:47:30+00:00","dateModified":"2026-06-08T12:38:03+00:00","description":"Dynaplant is all about bringing the magic of nature to life. We seek out the most extraordinary seeds and bulbs in exotic locations worldwide and grow them with care and skill in our nurseries.","breadcrumb":{"@id":"https:\/\/dynaplant.nl\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dynaplant.nl\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dynaplant.nl\/en\/#primaryimage","url":"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla.png","contentUrl":"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/10\/dynaplant-calla.png"},{"@type":"BreadcrumbList","@id":"https:\/\/dynaplant.nl\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dynaplant.nl\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"http:\/\/dynaplant.nl\/en\/#website","url":"http:\/\/dynaplant.nl\/en\/","name":"Dynaplant","description":"","publisher":{"@id":"http:\/\/dynaplant.nl\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/dynaplant.nl\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/dynaplant.nl\/en\/#organization","name":"Dynaplant","url":"http:\/\/dynaplant.nl\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/dynaplant.nl\/en\/#\/schema\/logo\/image\/","url":"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/09\/logo_zonder_beeldmerk_dynaplant.svg","contentUrl":"https:\/\/dynaplant.nl\/wp-content\/uploads\/2024\/09\/logo_zonder_beeldmerk_dynaplant.svg","width":566,"height":149,"caption":"Dynaplant"},"image":{"@id":"http:\/\/dynaplant.nl\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dynaplant\/","https:\/\/x.com\/DynaplantNL"]}]}},"_links":{"self":[{"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/pages\/4206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/comments?post=4206"}],"version-history":[{"count":3,"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/pages\/4206\/revisions"}],"predecessor-version":[{"id":4979,"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/pages\/4206\/revisions\/4979"}],"wp:attachment":[{"href":"https:\/\/dynaplant.nl\/en\/wp-json\/wp\/v2\/media?parent=4206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}