{"id":6720,"date":"2025-11-30T06:02:54","date_gmt":"2025-11-30T05:02:54","guid":{"rendered":"https:\/\/paperwise.eu\/corona-turnover-decline-but-environmental-gains\/"},"modified":"2026-03-17T10:09:18","modified_gmt":"2026-03-17T09:09:18","slug":"corona-turnover-decline-but-environmental-gains","status":"publish","type":"post","link":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/","title":{"rendered":"Corona causes a decline in turnover, but also environmental gains"},"content":{"rendered":"\n<section class=\"section-hero-paperwise text-color-light\" >\n    <div class=\"hero-background \" style=\"background-image: url('https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg');\">\n\n        \n        <div class=\"container-fluid h-100 pt-4 pb-4\">\n            <div class=\"row h-100\">\n                <div class=\"col-12 d-flex align-items-end\">\n                    <div class=\"hero-content\">\n                        \n                        \n                                            <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n<script src=\"https:\/\/www.youtube.com\/iframe_api\"><\/script>\n<script src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Vimeo can run immediately since the SDK loads synchronously enough\n    const heroVideos = document.querySelectorAll('.hero-video-wrapper iframe');\n    heroVideos.forEach(iframe => {\n        if (iframe.src.includes('vimeo.com')) {\n            const player = new Vimeo.Player(iframe);\n            player.getDuration().then(duration => {\n                player.on('timeupdate', data => {\n                    if (data.seconds >= duration - 1) {\n                        player.setCurrentTime(0).then(() => player.play());\n                    }\n                });\n            });\n        }\n    });\n\n    \/\/ Collect YouTube iframes to initialize once the API is ready\n    window._ytHeroIframes = document.querySelectorAll('.hero-video-wrapper iframe[src*=\"youtube.com\"]');\n});\n\n\/\/ This is called automatically by the YouTube API once it's fully loaded\nwindow.onYouTubeIframeAPIReady = function() {\n    if (!window._ytHeroIframes) return;\n\n    window._ytHeroIframes.forEach(iframe => {\n        const videoId = iframe.src.match(\/embed\\\/([^?&]+)\/)[1];\n        const parent = iframe.parentNode;\n        iframe.remove();\n\n        const ytDiv = document.createElement('div');\n        ytDiv.id = 'yt-hero-' + Math.floor(Math.random() * 10000);\n        ytDiv.classList.add('hero-video');\n        parent.appendChild(ytDiv);\n\n        new YT.Player(ytDiv.id, {\n            videoId: videoId,\n            playerVars: {\n                autoplay: 1,\n                controls: 0,\n                loop: 1,\n                playlist: videoId,\n                mute: 1,\n                modestbranding: 1,\n                disablekb: 1,\n                playsinline: 1\n            },\n            events: {\n                onReady: function(event) {\n                    const duration = event.target.getDuration();\n                    setInterval(() => {\n                        const current = event.target.getCurrentTime();\n                        if (current >= duration - 1) {\n                            event.target.seekTo(0);\n                            event.target.playVideo();\n                        }\n                    }, 800);\n                }\n            }\n        });\n    });\n};\n<\/script>\n<section id=\"section-text-block_a9c95691efbe0a464f739b54ff222d43\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>Corona (Covid-19) has caused the turnover of PaperWise copy paper to drop by 50% among our existing customers! This is logical, as environmentally responsible PaperWise copy paper is mainly supplied to companies where employees have now started working from home. However, this decline in turnover also leads to environmental gains and increased demand for sustainability!  <\/p>\n<p>We took a closer look and compared a number of figures with last year. Since our founding in 2015, we have been supplying sustainable PaperWise <a href=\"https:\/\/paperwise.eu\/shop\/?_sfm_artikelen=kopieerpapier%20voor%20kantoor\">copying and printing paper<\/a> to more than 100 customers at home and abroad. In this comparison, we do not include the wholesalers who sell our environmentally friendly copying and printing paper. It turns out that the turnover of PaperWise copy paper has, on average, halved among existing customers due to the Corona measures. This is explainable; many employees work from home and do not take the copy paper with them from work. In fact, we wonder if Corona might have provided the final push towards a <a href=\"https:\/\/paperwise.eu\/verminder-papiergebruik\/\">paperless office<\/a>. Although, as far as we are concerned, it would be a nice gesture of good employership if employees were given the opportunity to take printing paper from the office home with them.      <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-printing-paperless-office.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_70436a403e7e90a6669389e43fbebc7a\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>Until 2010, the market for graphic paper types in Europe was still growing. This includes paper for books, magazines, brochures, letterheads, envelopes, but also copying and printing paper (Source: CEPI Key Statistics). From 2010 onwards, we see the European market for graphic paper shrinking rapidly. In 2019, the market had shrunk by 40% compared to 2010. The main cause lies in digitalization. We read the news digitally. Brochures have been replaced by websites. Invoices and flyers are sent by email, and copying and printing behavior is changing. On an annual basis, this represents a contraction of nearly 4.5% per year. In that context, a 50% reduction in turnover for copying and printing paper (among existing customers) in just a few months is an enormous amount.         <\/p>\n<p>Let&#8217;s look at it positively, because at PaperWise we believe in the power of positive thinking. From day one, we have stated on the front of the packaging of sustainable PaperWise copy paper: \u201cNature knows no waste. Together we turn waste into beautiful paper. If possible, use less paper. If you use paper, choose for PaperWise\u201d. At PaperWise, we are therefore pleased that Corona is having a positive effect in this area and is causing paper consumption to drop significantly. It contributes to <a href=\"https:\/\/paperwise.eu\/visie-missie\/\">our mission<\/a> to make the world a little more beautiful. Even though PaperWise is the most sustainable copying and printing paper, not using something is still better!     <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-eco-friendly-sustainable-copy-printing-paper-agriwaste-plantbased-office.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_1441f2a5fb2d58bf2323bbba77f5eea1\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>Despite the decline in turnover of PaperWise copying and printing paper (among existing customers) due to the Corona crisis, we see that the market has fully embraced sustainability. More and more people and companies realize that sustainability is no longer a hype, but the new normal. The demand for information and samples for sustainable packaging and printing has never been greater. PaperWise continues to grow strongly in 2020. At the end of the third quarter of 2020, we were once again able to help 35% more customers compared to the previous year in achieving their <a href=\"https:\/\/paperwise.eu\/\">sustainability goals<\/a>. We are extremely proud of this and very happy about it. Contributing positively to a better world together!      <\/p>\n<p>Are you also curious about how you can make a positive contribution to a better world by choosing PaperWise paper and paperboard? Do you want to know how agricultural residues become raw materials for high-quality paper? Are you open to shaping a circular economy together? Would you like to make copy paper available for your employees at home? Please feel free to contact us or request a sample pack containing all PaperWise paper types. We are happy to help you.     <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":6721,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[173],"tags":[165],"class_list":["post-6720","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news","tag-organization"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Reduced paper use and paperless office due to corona?<\/title>\n<meta name=\"description\" content=\"The impact of corona on the consumption of office printing and copying paper. Covid: the final push towards a paperless office?\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Reduced paper use and paperless office due to corona?\" \/>\n<meta property=\"og:description\" content=\"The impact of corona on the consumption of office printing and copying paper. Covid: the final push towards a paperless office?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\" \/>\n<meta property=\"og:site_name\" content=\"Paperwise\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-30T05:02:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-17T09:09:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"786\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"romano\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"romano\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\"},\"author\":{\"name\":\"romano\",\"@id\":\"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"headline\":\"Corona causes a decline in turnover, but also environmental gains\",\"datePublished\":\"2025-11-30T05:02:54+00:00\",\"dateModified\":\"2026-03-17T09:09:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\"},\"wordCount\":10,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg\",\"keywords\":[\"Organization\"],\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\",\"url\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\",\"name\":\"Reduced paper use and paperless office due to corona?\",\"isPartOf\":{\"@id\":\"https:\/\/paperwise.eu\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg\",\"datePublished\":\"2025-11-30T05:02:54+00:00\",\"dateModified\":\"2026-03-17T09:09:18+00:00\",\"author\":{\"@id\":\"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"description\":\"The impact of corona on the consumption of office printing and copying paper. Covid: the final push towards a paperless office?\",\"breadcrumb\":{\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage\",\"url\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg\",\"contentUrl\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg\",\"width\":1920,\"height\":786},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/paperwise.eu\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Corona causes a decline in turnover, but also environmental gains\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/paperwise.eu\/en\/#website\",\"url\":\"https:\/\/paperwise.eu\/en\/\",\"name\":\"Paperwise\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/paperwise.eu\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e\",\"name\":\"romano\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"caption\":\"romano\"},\"url\":\"https:\/\/paperwise.eu\/en\/author\/romano\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Reduced paper use and paperless office due to corona?","description":"The impact of corona on the consumption of office printing and copying paper. Covid: the final push towards a paperless office?","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:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/","og_locale":"en_US","og_type":"article","og_title":"Reduced paper use and paperless office due to corona?","og_description":"The impact of corona on the consumption of office printing and copying paper. Covid: the final push towards a paperless office?","og_url":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/","og_site_name":"Paperwise","article_published_time":"2025-11-30T05:02:54+00:00","article_modified_time":"2026-03-17T09:09:18+00:00","og_image":[{"width":1920,"height":786,"url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg","type":"image\/jpeg"}],"author":"romano","twitter_card":"summary_large_image","twitter_misc":{"Written by":"romano"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#article","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/"},"author":{"name":"romano","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"headline":"Corona causes a decline in turnover, but also environmental gains","datePublished":"2025-11-30T05:02:54+00:00","dateModified":"2026-03-17T09:09:18+00:00","mainEntityOfPage":{"@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/"},"wordCount":10,"commentCount":0,"image":{"@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg","keywords":["Organization"],"articleSection":["News"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/","url":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/","name":"Reduced paper use and paperless office due to corona?","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage"},"image":{"@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg","datePublished":"2025-11-30T05:02:54+00:00","dateModified":"2026-03-17T09:09:18+00:00","author":{"@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"description":"The impact of corona on the consumption of office printing and copying paper. Covid: the final push towards a paperless office?","breadcrumb":{"@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#primaryimage","url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg","contentUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-environmental-benefit-eco-friendly-copy-paper-corona-covid-paperless-office.jpg","width":1920,"height":786},{"@type":"BreadcrumbList","@id":"https:\/\/paperwise.eu\/en\/corona-turnover-decline-but-environmental-gains\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paperwise.eu\/en\/"},{"@type":"ListItem","position":2,"name":"Corona causes a decline in turnover, but also environmental gains"}]},{"@type":"WebSite","@id":"https:\/\/paperwise.eu\/en\/#website","url":"https:\/\/paperwise.eu\/en\/","name":"Paperwise","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paperwise.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e","name":"romano","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","caption":"romano"},"url":"https:\/\/paperwise.eu\/en\/author\/romano\/"}]}},"_links":{"self":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/6720","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/comments?post=6720"}],"version-history":[{"count":1,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/6720\/revisions"}],"predecessor-version":[{"id":6726,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/6720\/revisions\/6726"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media\/6721"}],"wp:attachment":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media?parent=6720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/categories?post=6720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/tags?post=6720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}