{"id":5869,"date":"2024-09-04T14:40:23","date_gmt":"2024-09-04T12:40:23","guid":{"rendered":"https:\/\/www.ibindo.eu\/?page_id=5869"},"modified":"2024-09-10T12:52:17","modified_gmt":"2024-09-10T10:52:17","slug":"nachhaltigkeit","status":"publish","type":"page","link":"https:\/\/www.ibindo.at\/en\/sustainability\/","title":{"rendered":"sustainability"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"5869\" class=\"elementor elementor-5869\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cc35203 e-con-full e-flex e-con e-parent\" data-id=\"cc35203\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-208453a e-con-full e-flex e-con e-child\" data-id=\"208453a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb53e0a elementor-widget elementor-widget-synckpageshero\" data-id=\"bb53e0a\" data-element_type=\"widget\" data-widget_type=\"synckpageshero.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n<!-- About Hero -->\n<section class=\"hero-service-wrap hero-section-wrap hero-portfolio-wrap\">\n<div class=\"hero-section-content-wrap\">\n<div class=\"custom-container\">\n    <div class=\"hero-portfolio-body\">\n\n        <div class=\"hero-section-content text-center\">\n            <h6 class=\"section-subtitle\">sustainability<\/h6><h2 class=\"section-title fade- in\">Our contribution to ibindo<\/h2>            <p>With our innovative guest sheet solution, we make an active contribution to sustainability by reducing the consumption of water, wood and CO2. At the same time, we also optimize your work processes and ensure relaxed guests.<\/p>\n        <\/div>\n\n    \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-undefined-3e8f07c e-con-full e-flex e-con e-parent\" data-id=\"undefined-3e8f07c\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-undefined-9c4bc0a e-flex e-con-boxed e-con e-child\" data-id=\"undefined-9c4bc0a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-864161e e-flex e-con-boxed e-con e-child\" data-id=\"undefined-864161e\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb4c39d elementor-widget elementor-widget-html\" data-id=\"eb4c39d\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<!DOCTYPE html>\r\n<html lang=\"de\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Savings counter<\/title>\r\n    <style>\r\n        #counter {\r\n            display: flex;\r\n            flex-direction: column; \/* \u00c4ndert die Richtung zu einer Spalte *\/\r\n            align-items: center; \/* Zentriert die Elemente *\/\r\n            font-size: 1.5em;\r\n        }\r\n        .counter-item {\r\n            text-align: center;\r\n            margin: 10px 0; \/* F\u00fcgt vertikalen Abstand zwischen den Items hinzu *\/\r\n        }\r\n    <\/style>\r\n<\/head>\r\n<body>\r\n    <div id=\"counter\">\r\n        <div class=\"counter-item\">\r\n            <strong><p>CO2 savings:<\/p><\/strong>\r\n            <p><span id=\"co2\">0<\/span> kg<\/p>\r\n        <\/div>\r\n        <div class=\"counter-item\">\r\n            <strong><p>Water saving:<\/p><\/strong>\r\n            <p><span id=\"water\">0<\/span> liter<\/p>\r\n        <\/div>\r\n        <div class=\"counter-item\">\r\n            <strong><p>Wood savings:<\/p><\/strong>\r\n            <p><span id=\"wood\">0<\/span> kg<\/p>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        \/\/ Startdatum und -zeit\r\n        const startDate = new Date('2024-07-23T11:30:00');\r\n\r\n        \/\/ Einsparungen pro Sekunde\r\n        const co2PerSecond = 8.68e-6; \/\/ kg CO2 pro Sekunde\r\n        const waterPerSecond = 0.01157; \/\/ Liter pro Sekunde\r\n        const woodPerSecond = 5.79e-6; \/\/ kg Holz pro Sekunde\r\n\r\n        \/\/ Initiale Werte am Startdatum\r\n        const initialCO2 = 460.23; \/\/ kg\r\n        const initialWater = 613612.210304; \/\/ Liter\r\n        const initialWood = 306.82; \/\/ kg\r\n\r\n        \/\/ Funktion zur Berechnung der Zeitdifferenz in Sekunden\r\n        function calculateTimeDifferenceInSeconds() {\r\n            const now = new Date();\r\n            const timeDiff = (now - startDate) \/ 1000; \/\/ Differenz in Sekunden\r\n            return timeDiff;\r\n        }\r\n\r\n        \/\/ Berechnung der aktuellen Werte basierend auf der Zeitdifferenz\r\n        function calculateInitialValues() {\r\n            const timeDiffInSeconds = calculateTimeDifferenceInSeconds();\r\n            const co2 = initialCO2 + co2PerSecond * timeDiffInSeconds;\r\n            const water = initialWater + waterPerSecond * timeDiffInSeconds;\r\n            const wood = initialWood + woodPerSecond * timeDiffInSeconds;\r\n            return { co2, water, wood };\r\n        }\r\n\r\n        \/\/ Initiale Werte berechnen und anzeigen\r\n        let { co2, water, wood } = calculateInitialValues();\r\n\r\n        document.getElementById('co2').innerText = co2.toFixed(6);\r\n        document.getElementById('water').innerText = water.toFixed(6);\r\n        document.getElementById('wood').innerText = wood.toFixed(6);\r\n\r\n        \/\/ Funktion zur Aktualisierung der Counter\r\n        function updateCounter() {\r\n            co2 += co2PerSecond;\r\n            water += waterPerSecond;\r\n            wood += woodPerSecond;\r\n\r\n            document.getElementById('co2').innerText = co2.toFixed(6);\r\n            document.getElementById('water').innerText = water.toFixed(6);\r\n            document.getElementById('wood').innerText = wood.toFixed(6);\r\n        }\r\n\r\n        \/\/ Aktualisierung jede Sekunde\r\n        setInterval(updateCounter, 1000);\r\n    <\/script>\r\n<\/body>\r\n<\/html>\r\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-27401a9 e-flex e-con-boxed e-con e-parent\" data-id=\"undefined-27401a9\" data-element_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-undefined-62aa0e2 elementor-widget elementor-widget-heading\" data-id=\"undefined-62aa0e2\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">FAQ<\/h4>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-7a0e13b elementor-widget elementor-widget-heading\" data-id=\"undefined-7a0e13b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">On our website you will see three counters that show you how much we have saved so far through the use of our digital guest list and the high efficiency of our servers. The savings are continuously counted up and are based on the following factors:<\/h5>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-0b53c8e e-flex e-con-boxed e-con e-child\" data-id=\"undefined-0b53c8e\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-undefined-d7f001a e-flex e-con-boxed e-con e-child\" data-id=\"undefined-d7f001a\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-f65de5d elementor-widget elementor-widget-accordion\" data-id=\"undefined-f65de5d\" data-element_type=\"widget\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2451\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-2451\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-right\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">CO2 savings<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2451\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-2451\"><p>What does this mean?: CO2 (carbon dioxide) is a greenhouse gas that contributes to global warming. By using our digital guest list instead of paper, we reduce CO2 emissions.<br \/>How is this calculated?: We calculate the savings by comparing the CO2 emissions for producing a paper sheet with the CO2 emissions of a digital guest sheet. Each digital guest sheet saves about 7.5 grams of CO2.<\/p><\/div>\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-undefined-9605767 e-flex e-con-boxed e-con e-child\" data-id=\"undefined-9605767\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-13dfd1f elementor-widget elementor-widget-accordion\" data-id=\"undefined-13dfd1f\" data-element_type=\"widget\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2451\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-2451\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-right\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Water saving<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2451\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-2451\"><p>What does this mean?: Water is used for paper production. By using digital guest sheets we save a lot of water.<br \/>How is this calculated?: Paper production requires about 10 liters of water per sheet. Each digital guest sheet saves us this amount of water.<\/p><\/div>\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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-5841743 e-flex e-con-boxed e-con e-child\" data-id=\"undefined-5841743\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-undefined-491ffab e-flex e-con-boxed e-con e-child\" data-id=\"undefined-491ffab\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-950a11b elementor-widget elementor-widget-accordion\" data-id=\"undefined-950a11b\" data-element_type=\"widget\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2451\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-2451\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-right\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Wood saving<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2451\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-2451\"><p>What does this mean?: Wood is needed to make paper. By using digital guest sheets, we protect our forests.<br \/>How is this calculated?: For each digital guest sheet we save 0.005 kilograms of wood because we do not have to produce paper.<\/p><\/div>\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-undefined-2e52a8f e-flex e-con-boxed e-con e-child\" data-id=\"undefined-2e52a8f\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-75ab3fc elementor-widget elementor-widget-accordion\" data-id=\"undefined-75ab3fc\" data-element_type=\"widget\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2451\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-2451\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-right\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-far-arrow-alt-circle-right\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Energy and CO2 efficiency of our servers<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2451\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-2451\"><p>Why are our servers efficient?: Our servers are powered 100% by wind and hydroelectric power, meaning we don&#039;t cause any additional CO2 emissions for energy production.<br \/>Efficient cooling: We use natural outside air to cool our servers, which drastically reduces the energy consumption for cooling systems.<br \/>PUE value: Our data center has a PUE (Power Usage Effectiveness) value of 1.10. This means that for every unit of energy used for the servers, only 10% of it is needed for cooling and other infrastructure. A low PUE value indicates high energy efficiency.<\/p><\/div>\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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Sustainability Our contribution at ibindo With our innovative guest sheet solution, we make an active contribution to sustainability by reducing the consumption of water, wood and CO2. At the same time, we also optimize your work processes and ensure relaxed guests. Savings counter CO2 savings: 0 kg Water savings: 0 liters Wood savings: 0 kg FAQ On our website you will see three counters, [\u2026]<\/p>","protected":false},"author":8,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/company.php","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-5869","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.4 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Nachhaltigkeit - ibindo<\/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:\/\/www.ibindo.at\/en\/sustainability\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Nachhaltigkeit\" \/>\n<meta property=\"og:description\" content=\"Nachhaltigkeit Unser Beitrag bei ibindo Mit unserer innovativen G\u00e4steblatt-L\u00f6sung leisten wir einen aktiven Beitrag zur Nachhaltigkeit, indem wir den Verbrauch von Wasser, Holz und CO2 reduzieren. Gleichzeitig optimieren wir auch Ihre Arbeitsabl\u00e4ufe und sorgen f\u00fcr entspannte G\u00e4ste. Ersparnisz\u00e4hler CO2-Einsparung: 0 kg Wasser-Einsparung: 0 Liter Holz-Einsparung: 0 kg FAQ Auf unserer Webseite sehen Sie drei Counter, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ibindo.at\/en\/sustainability\/\" \/>\n<meta property=\"og:site_name\" content=\"ibindo\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ibindo.digital\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-10T10:52:17+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/nachhaltigkeit\\\/\",\"url\":\"https:\\\/\\\/www.ibindo.at\\\/nachhaltigkeit\\\/\",\"name\":\"Nachhaltigkeit - ibindo\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/#website\"},\"datePublished\":\"2024-09-04T12:40:23+00:00\",\"dateModified\":\"2024-09-10T10:52:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/nachhaltigkeit\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.ibindo.at\\\/nachhaltigkeit\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/nachhaltigkeit\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/www.ibindo.at\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nachhaltigkeit\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/#website\",\"url\":\"https:\\\/\\\/www.ibindo.at\\\/\",\"name\":\"ibindo\",\"description\":\"Das digitale G\u00e4steblatt\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.ibindo.at\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/#organization\",\"name\":\"ibindo GmbH\",\"url\":\"https:\\\/\\\/www.ibindo.at\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.ibindo.at\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Logo2-cut-cut.png\",\"contentUrl\":\"https:\\\/\\\/www.ibindo.at\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Logo2-cut-cut.png\",\"width\":800,\"height\":220,\"caption\":\"ibindo GmbH\"},\"image\":{\"@id\":\"https:\\\/\\\/www.ibindo.at\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/ibindo.digital\",\"https:\\\/\\\/www.instagram.com\\\/ibindo.austria\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Nachhaltigkeit - ibindo","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:\/\/www.ibindo.at\/en\/sustainability\/","og_locale":"en_GB","og_type":"article","og_title":"Nachhaltigkeit","og_description":"Nachhaltigkeit Unser Beitrag bei ibindo Mit unserer innovativen G\u00e4steblatt-L\u00f6sung leisten wir einen aktiven Beitrag zur Nachhaltigkeit, indem wir den Verbrauch von Wasser, Holz und CO2 reduzieren. Gleichzeitig optimieren wir auch Ihre Arbeitsabl\u00e4ufe und sorgen f\u00fcr entspannte G\u00e4ste. Ersparnisz\u00e4hler CO2-Einsparung: 0 kg Wasser-Einsparung: 0 Liter Holz-Einsparung: 0 kg FAQ Auf unserer Webseite sehen Sie drei Counter, [&hellip;]","og_url":"https:\/\/www.ibindo.at\/en\/sustainability\/","og_site_name":"ibindo","article_publisher":"https:\/\/www.facebook.com\/ibindo.digital","article_modified_time":"2024-09-10T10:52:17+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.ibindo.at\/nachhaltigkeit\/","url":"https:\/\/www.ibindo.at\/nachhaltigkeit\/","name":"Nachhaltigkeit - ibindo","isPartOf":{"@id":"https:\/\/www.ibindo.at\/#website"},"datePublished":"2024-09-04T12:40:23+00:00","dateModified":"2024-09-10T10:52:17+00:00","breadcrumb":{"@id":"https:\/\/www.ibindo.at\/nachhaltigkeit\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ibindo.at\/nachhaltigkeit\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ibindo.at\/nachhaltigkeit\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/www.ibindo.at\/"},{"@type":"ListItem","position":2,"name":"Nachhaltigkeit"}]},{"@type":"WebSite","@id":"https:\/\/www.ibindo.at\/#website","url":"https:\/\/www.ibindo.at\/","name":"ibindo","description":"Das digitale G\u00e4steblatt","publisher":{"@id":"https:\/\/www.ibindo.at\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ibindo.at\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.ibindo.at\/#organization","name":"ibindo GmbH","url":"https:\/\/www.ibindo.at\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.ibindo.at\/#\/schema\/logo\/image\/","url":"https:\/\/www.ibindo.at\/wp-content\/uploads\/2021\/11\/Logo2-cut-cut.png","contentUrl":"https:\/\/www.ibindo.at\/wp-content\/uploads\/2021\/11\/Logo2-cut-cut.png","width":800,"height":220,"caption":"ibindo GmbH"},"image":{"@id":"https:\/\/www.ibindo.at\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ibindo.digital","https:\/\/www.instagram.com\/ibindo.austria\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/pages\/5869","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/comments?post=5869"}],"version-history":[{"count":31,"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/pages\/5869\/revisions"}],"predecessor-version":[{"id":6099,"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/pages\/5869\/revisions\/6099"}],"wp:attachment":[{"href":"https:\/\/www.ibindo.at\/en\/wp-json\/wp\/v2\/media?parent=5869"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}