{"id":7455,"date":"2026-08-18T08:18:12","date_gmt":"2026-08-18T08:18:12","guid":{"rendered":"https:\/\/foamitgroup.tempurl.host\/foamitfinland\/?post_type=product&#038;p=7455"},"modified":"2026-08-18T08:42:16","modified_gmt":"2026-08-18T08:42:16","slug":"f10","status":"publish","type":"product","link":"https:\/\/foamitgroup.fi\/en\/product\/f10\/","title":{"rendered":"F10"},"content":{"rendered":"\n<p class=\"has-medium-font-size wp-block-paragraph\">Foamit 10 is an environmentally friendly foam glass aggregate made of recycled glass, used in building construction, with a particle size of 4-10 mm.<\/p>\n\n\n\r\n<div id=\"facts-block_7df181fbe04ffb36570321a633cf6372\" class=\"facts py-3 py-lg-5\">\r\n\r\n    <div class=\"columns-intro d-flex flex-column flex-lg-row\">\r\n                    <\/div>\r\n\r\n\r\n    <div class=\"factContainer\" data-block-id=\"facts-block_7df181fbe04ffb36570321a633cf6372\"><div class=\"fact-row d-flex flex-column flex-xl-row\"><div class=\"col factIndividual px-4\"><div class=\"fact-header-one\">Particle size<\/div><div class=\"factNumber-wrapper\"><span class=\"factNumber factNumber-thickness-bold\">4-10<\/span><\/div><div class=\"fact-header-two\">mm<\/div><hr class=\"factHr\"><div class=\"fact-proof-text\"><p>Angular particle shape.<\/p>\n<\/div><\/div><div class=\"col factIndividual px-4\"><div class=\"fact-header-one\">Density<\/div><div class=\"factNumber-wrapper\"><span class=\"factNumber factNumber-thickness-bold\">180<\/span><\/div><div class=\"fact-header-two\">kg\/m\u00b3<\/div><hr class=\"factHr\"><div class=\"fact-proof-text\"><p>Dry and loose, \u00b115 %.<\/p>\n<\/div><\/div><div class=\"col factIndividual px-4\"><div class=\"fact-header-one\">Thermal conductivity<\/div><div class=\"factNumber-wrapper\"><span class=\"factNumber factNumber-thickness-bold\">0,1<\/span><\/div><div class=\"fact-header-two\">W\/mK<\/div><hr class=\"factHr\"><div class=\"fact-proof-text\"><p>Dry.<\/p>\n<\/div><\/div><\/div><\/div>    <div class=\"foamit-facts-hr\">\r\n    <\/div>\r\n<\/div>\r\n\r\n\r\n\r\n\r\n<script>\r\n(() => {\r\n    if (typeof window.initializeFactBlock !== 'function') {\r\n        window.initializeFactBlock = function(blockElement) {\r\n            const factContainer = blockElement.querySelector('.factContainer');\r\n            if (!factContainer) return;\r\n\r\n            const wrappers = factContainer.querySelectorAll('.factNumber-wrapper');\r\n            const textElements = factContainer.querySelectorAll('.factNumber-wrapper .factNumber');\r\n            if (textElements.length === 0) return;\r\n\r\n            \/\/ State management to prevent infinite loops\r\n            let isCalculating = false;\r\n\r\n            const synchronizeFontSizes = () => {\r\n                if (isCalculating) return; \/\/ Exit if already running\r\n                isCalculating = true;\r\n\r\n                \/\/ 1. Hide everything and prevent the container from expanding\r\n                textElements.forEach(el => {\r\n                    el.style.visibility = 'hidden';\r\n                    el.style.display = 'inline-block'; \/\/ Ensures accurate width math\r\n                    el.style.whiteSpace = 'nowrap';\r\n                });\r\n\r\n                const calculatedFontSizes = new Array(wrappers.length);\r\n                let measurementsDone = 0;\r\n\r\n                wrappers.forEach((wrapper, index) => {\r\n                    const textElement = wrapper.querySelector('.factNumber');\r\n                    \r\n                    \/\/ 2. Measure using a 'virtual' size\r\n                    \/\/ We set it to 100px instead of 1000px to reduce layout thrashing\r\n                    const baseSize = 100;\r\n                    textElement.style.fontSize = baseSize + 'px';\r\n\r\n                    requestAnimationFrame(() => {\r\n                        const containerWidth = wrapper.clientWidth;\r\n                        const containerHeight = wrapper.clientHeight;\r\n                        const textWidth = textElement.scrollWidth;\r\n                        const textHeight = textElement.scrollHeight;\r\n\r\n                        if (textWidth > 0 && textHeight > 0) {\r\n                            const widthRatio = containerWidth \/ textWidth;\r\n                            const heightRatio = containerHeight \/ textHeight;\r\n                            calculatedFontSizes[index] = Math.min(widthRatio, heightRatio) * baseSize;\r\n                        } else {\r\n                            calculatedFontSizes[index] = 0;\r\n                        }\r\n\r\n                        measurementsDone++;\r\n                        \r\n                        if (measurementsDone === wrappers.length) {\r\n                            const validSizes = calculatedFontSizes.filter(size => size > 0);\r\n                            const smallestValidSize = validSizes.length ? Math.min(...validSizes) : 0;\r\n\r\n                            \/\/ 3. Final Application\r\n                            textElements.forEach(element => {\r\n                                if (smallestValidSize > 0){\r\n                                    \/\/ Use 98% to avoid sub-pixel rounding overflow\r\n                                    element.style.fontSize = (smallestValidSize * 0.98) + 'px';\r\n                                }\r\n                                element.style.visibility = 'visible';\r\n                            });\r\n\r\n                            \/\/ Unlock the observer after a short delay\r\n                            setTimeout(() => { isCalculating = false; }, 50);\r\n                        }\r\n                    });\r\n                });\r\n            };\r\n\r\n            \/\/ Run after fonts are loaded\r\n            if ('fonts' in document) {\r\n                document.fonts.ready.then(synchronizeFontSizes);\r\n            } else {\r\n                window.addEventListener('load', synchronizeFontSizes);\r\n            }\r\n\r\n            \/\/ Debounced ResizeObserver\r\n            let resizeTimeout;\r\n            const resizeObserver = new ResizeObserver(() => {\r\n                clearTimeout(resizeTimeout);\r\n                resizeTimeout = setTimeout(synchronizeFontSizes, 100);\r\n            });\r\n\r\n            wrappers.forEach(wrapper => resizeObserver.observe(wrapper));\r\n        }\r\n    }\r\n\r\n    const currentBlockElement = document.getElementById('facts-block_7df181fbe04ffb36570321a633cf6372');\r\n    if (currentBlockElement) {\r\n        \/\/ Run immediately if possible, otherwise wait for load\r\n        if (document.readyState === 'complete') {\r\n            window.initializeFactBlock(currentBlockElement);\r\n        } else {\r\n            window.addEventListener('load', () => window.initializeFactBlock(currentBlockElement));\r\n        }\r\n    }\r\n})();\r\n<\/script>\r\n\r\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Applications<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Intermediate floor structures<\/li>\n\n\n\n<li>Upper floor structures<\/li>\n\n\n\n<li>Green roof structures<br><br><\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\"><\/ul>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Foamit 10 is suitable for the upper and intermediate floors of buildings, the slopes of flat roofs and the implementation of green roofs.<\/p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Delivery formats<\/h2>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Foamit 10 is sold as loose bulk aggregate and in big bags (1 m\u00b3).<\/p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\r\n\r\n\r\n<div id=\"table-block_ae40f8dfcd4b124c105df6e82cff8c4a\" class=\"table py-3 py-lg-5\">\r\n\r\n            <div class=\"field-table_header mb-3\">\r\n            <h2>Technical data<\/h2>\r\n        <\/div>\r\n    \r\n    <div class=\"data_table\">\r\n\r\n                <div class=\"row px-0 mx-0 fw-bold no-hover\">\r\n                    <div class=\"col\">\r\n                        Property                    <\/div>\r\n                    <div class=\"col\">\r\n                        Value                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Particle size                    <\/div>\r\n                    <div class=\"col\">\r\n                        4\u201310 mm                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Particle shape                    <\/div>\r\n                    <div class=\"col\">\r\n                        Angular                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Density (dry, loose)                    <\/div>\r\n                    <div class=\"col\">\r\n                        180 kg\/m\u00b3 \u00b115 %                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Compression strength                    <\/div>\r\n                    <div class=\"col\">\r\n                        NA                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        pH value                    <\/div>\r\n                    <div class=\"col\">\r\n                        10,5                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Dry thermal conductivity (W\/mK)                    <\/div>\r\n                    <div class=\"col\">\r\n                        0,08                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Fire class                    <\/div>\r\n                    <div class=\"col\">\r\n                        Non-combustible (A1                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Indoor air class                    <\/div>\r\n                    <div class=\"col\">\r\n                        M1                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Purity                    <\/div>\r\n                    <div class=\"col\">\r\n                        Does not contain organic matter                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Capillary rise height                    <\/div>\r\n                    <div class=\"col\">\r\n                        225 mm                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Carbon footprint (CO2 eq. \/ m\u00b3)                    <\/div>\r\n                    <div class=\"col\">\r\n                        46,30 kg                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n                <div class=\"row px-0 mx-0 \">\r\n                    <div class=\"col\">\r\n                        Product credentials                    <\/div>\r\n                    <div class=\"col\">\r\n                        CE, M1, EPD                    <\/div>\r\n                <\/div>\r\n\r\n    \r\n<\/div>\r\n\r\n<\/div>\r\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div id=\"faq-block_1f4957dd4378b3108b7265fe0f5b1acb\" class=\"faq py-3 py-lg-5\">\r\n    \r\n            <div class=\"field-faq_header\">\r\n            <h2>Frequently asked questions<\/h2>\r\n        <\/div>\r\n                <div class=\"field-faq_intro_textarea\">\r\n            Short answers to the most common questions.        <\/div>\r\n    \r\n\r\n\r\n<div class=\"accordion mt-3\" id=\"faq-block_1f4957dd4378b3108b7265fe0f5b1acb\">\r\n            <div class=\"accordion-item\">\r\n            <h2 class=\"accordion-header\" id=\"heading-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-0\">\r\n                <button \r\n                    class=\"accordion-button \" \r\n                    type=\"button\" \r\n                    data-bs-toggle=\"collapse\" \r\n                    data-bs-target=\"#collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-0\" \r\n                    aria-expanded=\"true\" \r\n                    aria-controls=\"collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-0\"\r\n                >\r\n                    Where can I buy Foamit 10?                <\/button>\r\n            <\/h2>\r\n            <div \r\n                id=\"collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-0\" \r\n                class=\"accordion-collapse collapse show\" \r\n                aria-labelledby=\"heading-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-0\" \r\n                data-bs-parent=\"#faq-block_1f4957dd4378b3108b7265fe0f5b1acb\"\r\n            >\r\n                <div class=\"accordion-body my-4 ms-3 me-4\">\r\n                    <p>Big bags are sold by our retailers, hardware stores across Finland. For loose bulk and project deliveries, contact our sales team directly.<\/p>\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n            <div class=\"accordion-item\">\r\n            <h2 class=\"accordion-header\" id=\"heading-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-1\">\r\n                <button \r\n                    class=\"accordion-button collapsed\" \r\n                    type=\"button\" \r\n                    data-bs-toggle=\"collapse\" \r\n                    data-bs-target=\"#collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-1\" \r\n                    aria-expanded=\"false\" \r\n                    aria-controls=\"collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-1\"\r\n                >\r\n                    Is Foamit 10 suitable for a ground-supported base floor?                <\/button>\r\n            <\/h2>\r\n            <div \r\n                id=\"collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-1\" \r\n                class=\"accordion-collapse collapse \" \r\n                aria-labelledby=\"heading-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-1\" \r\n                data-bs-parent=\"#faq-block_1f4957dd4378b3108b7265fe0f5b1acb\"\r\n            >\r\n                <div class=\"accordion-body my-4 ms-3 me-4\">\r\n                    <p>Yes. Foamit 10 is made for building construction, and its applications include ground-supported base floors, upper and intermediate floors, and slopes in wet rooms and flat roofs.<\/p>\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n            <div class=\"accordion-item\">\r\n            <h2 class=\"accordion-header\" id=\"heading-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-2\">\r\n                <button \r\n                    class=\"accordion-button collapsed\" \r\n                    type=\"button\" \r\n                    data-bs-toggle=\"collapse\" \r\n                    data-bs-target=\"#collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-2\" \r\n                    aria-expanded=\"false\" \r\n                    aria-controls=\"collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-2\"\r\n                >\r\n                    Is Foamit 20 combustible?                <\/button>\r\n            <\/h2>\r\n            <div \r\n                id=\"collapse-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-2\" \r\n                class=\"accordion-collapse collapse \" \r\n                aria-labelledby=\"heading-faq-block_1f4957dd4378b3108b7265fe0f5b1acb-2\" \r\n                data-bs-parent=\"#faq-block_1f4957dd4378b3108b7265fe0f5b1acb\"\r\n            >\r\n                <div class=\"accordion-body my-4 ms-3 me-4\">\r\n                    <p>No. Foamit 10 is non-combustible, fire class A1. The indoor air classification is M1 and the aggregate contains no organic matter.<\/p>\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<\/div>\r\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\r\n\r\n<div id=\"highlight-block_d77623db4db7d5a1eb0984c0a6ae21b0\" class=\"highlight bg-color-green-dark breakout py-3 py-lg-5 my-3 my-lg-5\">\r\n    <div class=\"container\">\r\n        <h2>Where to buy Foamit products<\/h2>        <p>Bag products are available from hardware stores across Finland. For loose bulk and project deliveries, contact our sales team directly.<\/p>\n    <\/div>\r\n<\/div>\r\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"featured_media":7392,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false},"product-category":[],"class_list":["post-7455","product","type-product","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>F10 - Foamit Finland<\/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:\/\/foamitgroup.fi\/en\/product\/f10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"F10 - Foamit Finland\" \/>\n<meta property=\"og:description\" content=\"Foamit 10 is an environmentally friendly foam glass aggregate made of recycled glass, used in building construction, with a particle size of 4-10 mm. Applications Foamit 10 is suitable for the upper and intermediate floors of buildings, the slopes of flat roofs and the implementation of green roofs. Delivery formats Foamit 10 is sold as [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/foamitgroup.fi\/en\/product\/f10\/\" \/>\n<meta property=\"og:site_name\" content=\"Foamit Finland\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-18T08:42:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/foamitgroup.com\/foamitfinland\/wp-content\/uploads\/sites\/4\/2026\/08\/foamitgpic.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/\",\"url\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/\",\"name\":\"F10 - Foamit Finland\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/foamitgroup.fi\\\/wp-content\\\/uploads\\\/sites\\\/4\\\/2026\\\/08\\\/foamitgpic.jpg\",\"datePublished\":\"2026-08-18T08:18:12+00:00\",\"dateModified\":\"2026-08-18T08:42:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/#primaryimage\",\"url\":\"https:\\\/\\\/foamitgroup.fi\\\/wp-content\\\/uploads\\\/sites\\\/4\\\/2026\\\/08\\\/foamitgpic.jpg\",\"contentUrl\":\"https:\\\/\\\/foamitgroup.fi\\\/wp-content\\\/uploads\\\/sites\\\/4\\\/2026\\\/08\\\/foamitgpic.jpg\",\"width\":2000,\"height\":800,\"caption\":\"foamitgpic\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/product\\\/f10\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/foamitgroup.fi\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"F10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/#website\",\"url\":\"https:\\\/\\\/foamitgroup.fi\\\/\",\"name\":\"Foamit Country Master\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/foamitgroup.fi\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/#organization\",\"name\":\"Foamit Country Master\",\"url\":\"https:\\\/\\\/foamitgroup.fi\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/foamitgroup.fi\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Foamit-green-RGB.svg\",\"contentUrl\":\"https:\\\/\\\/foamitgroup.fi\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Foamit-green-RGB.svg\",\"width\":545,\"height\":187,\"caption\":\"Foamit Country Master\"},\"image\":{\"@id\":\"https:\\\/\\\/foamitgroup.fi\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"F10 - Foamit Finland","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:\/\/foamitgroup.fi\/en\/product\/f10\/","og_locale":"en_US","og_type":"article","og_title":"F10 - Foamit Finland","og_description":"Foamit 10 is an environmentally friendly foam glass aggregate made of recycled glass, used in building construction, with a particle size of 4-10 mm. Applications Foamit 10 is suitable for the upper and intermediate floors of buildings, the slopes of flat roofs and the implementation of green roofs. Delivery formats Foamit 10 is sold as [&hellip;]","og_url":"https:\/\/foamitgroup.fi\/en\/product\/f10\/","og_site_name":"Foamit Finland","article_modified_time":"2026-08-18T08:42:16+00:00","og_image":[{"width":2000,"height":800,"url":"https:\/\/foamitgroup.com\/foamitfinland\/wp-content\/uploads\/sites\/4\/2026\/08\/foamitgpic.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/foamitgroup.fi\/en\/product\/f10\/","url":"https:\/\/foamitgroup.fi\/en\/product\/f10\/","name":"F10 - Foamit Finland","isPartOf":{"@id":"https:\/\/foamitgroup.fi\/#website"},"primaryImageOfPage":{"@id":"https:\/\/foamitgroup.fi\/en\/product\/f10\/#primaryimage"},"image":{"@id":"https:\/\/foamitgroup.fi\/en\/product\/f10\/#primaryimage"},"thumbnailUrl":"https:\/\/foamitgroup.fi\/wp-content\/uploads\/sites\/4\/2026\/08\/foamitgpic.jpg","datePublished":"2026-08-18T08:18:12+00:00","dateModified":"2026-08-18T08:42:16+00:00","breadcrumb":{"@id":"https:\/\/foamitgroup.fi\/en\/product\/f10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/foamitgroup.fi\/en\/product\/f10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/foamitgroup.fi\/en\/product\/f10\/#primaryimage","url":"https:\/\/foamitgroup.fi\/wp-content\/uploads\/sites\/4\/2026\/08\/foamitgpic.jpg","contentUrl":"https:\/\/foamitgroup.fi\/wp-content\/uploads\/sites\/4\/2026\/08\/foamitgpic.jpg","width":2000,"height":800,"caption":"foamitgpic"},{"@type":"BreadcrumbList","@id":"https:\/\/foamitgroup.fi\/en\/product\/f10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/foamitgroup.fi\/en\/"},{"@type":"ListItem","position":2,"name":"F10"}]},{"@type":"WebSite","@id":"https:\/\/foamitgroup.fi\/#website","url":"https:\/\/foamitgroup.fi\/","name":"Foamit Country Master","description":"","publisher":{"@id":"https:\/\/foamitgroup.fi\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/foamitgroup.fi\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/foamitgroup.fi\/#organization","name":"Foamit Country Master","url":"https:\/\/foamitgroup.fi\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/foamitgroup.fi\/#\/schema\/logo\/image\/","url":"https:\/\/foamitgroup.fi\/wp-content\/uploads\/2026\/06\/Foamit-green-RGB.svg","contentUrl":"https:\/\/foamitgroup.fi\/wp-content\/uploads\/2026\/06\/Foamit-green-RGB.svg","width":545,"height":187,"caption":"Foamit Country Master"},"image":{"@id":"https:\/\/foamitgroup.fi\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/foamitgroup.fi\/en\/wp-json\/wp\/v2\/product\/7455","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/foamitgroup.fi\/en\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/foamitgroup.fi\/en\/wp-json\/wp\/v2\/types\/product"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/foamitgroup.fi\/en\/wp-json\/wp\/v2\/media\/7392"}],"wp:attachment":[{"href":"https:\/\/foamitgroup.fi\/en\/wp-json\/wp\/v2\/media?parent=7455"}],"wp:term":[{"taxonomy":"product-category","embeddable":true,"href":"https:\/\/foamitgroup.fi\/en\/wp-json\/wp\/v2\/product-category?post=7455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}