{"id":194,"date":"2021-02-04T20:52:40","date_gmt":"2021-02-04T19:52:40","guid":{"rendered":"http:\/\/wir-tschaft.jetzt\/?page_id=194"},"modified":"2021-03-01T19:13:40","modified_gmt":"2021-03-01T18:13:40","slug":"datenschutz","status":"publish","type":"page","link":"https:\/\/wir-tschaft.jetzt\/en\/datenschutz\/","title":{"rendered":"Privacy"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"194\" class=\"elementor elementor-194\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"has_ma_el_bg_slider elementor-section elementor-top-section elementor-element elementor-element-3f4c5b80 elementor-section-full_width elementor-section-height-min-height elementor-section-height-default elementor-section-items-middle jltma-glass-effect-no\" data-id=\"3f4c5b80\" data-element_type=\"section\" id=\"show-hide-header\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;animation&quot;:&quot;none&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2c7bff8f jltma-glass-effect-no\" data-id=\"2c7bff8f\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-38261e70 jltma-glass-effect-no elementor-widget elementor-widget-image\" data-id=\"38261e70\" data-element_type=\"widget\" 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\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"300\" height=\"101\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo.png\" class=\"attachment-medium size-medium wp-image-150\" alt=\"WIR wie WIRtschaft\" srcset=\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo.png 650w, https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo-400x145.png 400w, https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo-18x7.png 18w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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-5c97572c elementor-widget__width-auto elementor-absolute jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"5c97572c\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n\"use strict\";\nOB_ready(OB_doWhenReady);\n\nfunction OB_doWhenReady() {\n    \/\/ localize everything\n    var ooohBoi = window.ooohBoi || {};\n    \/\/ local scope variables\n    ooohBoi.prev_scroll_pos = window.scrollY || document.body.scrollTop;\n    ooohBoi.cur_scroll_pos;\n    ooohBoi.scroll_direction = 'init';\n    ooohBoi.prev_scroll_direction = 0;\n    ooohBoi.header = document.querySelector('#show-hide-header'); \/\/ header ID\n    ooohBoi.header_pos = {\n        top: ooohBoi.header.offsetTop,\n        left: ooohBoi.header.offsetLeft,\n    };\n    ooohBoi.header_height = OB_outerHeight(ooohBoi.header);\n    \/\/ show-hide header with ease\/transition\n    ooohBoi.header.style.transition = 'all 0.3s ease';\n    \/\/ update header height on window resize\n    ooohBoi.updateHeaderHeight = function() {\n        ooohBoi.header_height = OB_outerHeight(ooohBoi.header);\n    }\n    \/\/ listen \"scroll\" event and decide what to do\n    ooohBoi.checkScroll = function() {\n        ooohBoi.cur_scroll_pos = window.scrollY || document.body.scrollTop;\n\n        if (ooohBoi.cur_scroll_pos > ooohBoi.prev_scroll_pos) ooohBoi.scroll_direction = 'down';\n        else if (ooohBoi.cur_scroll_pos < ooohBoi.prev_scroll_pos) ooohBoi.scroll_direction = 'up';\n\n        if (ooohBoi.scroll_direction !== ooohBoi.prev_scroll_direction) ooohBoi.toggleHeader(ooohBoi.scroll_direction, ooohBoi.cur_scroll_pos);\n        ooohBoi.prev_scroll_pos = ooohBoi.cur_scroll_pos;\n    }\n    \/\/ add or remove class based on the scrolling direction\n    ooohBoi.toggleHeader = function(scroll_direction, scroll_current) {\n        if (scroll_direction === 'down' && scroll_current > ooohBoi.header_height) {\n            OB_addClass(ooohBoi.header, 'im-hidden'); \/\/ for styling\n            ooohBoi.header.style.top = -1 * ooohBoi.header_height + \"px\";\n            ooohBoi.prev_scroll_direction = scroll_direction;\n        } else if (scroll_direction === 'up') {\n            OB_removeClass(ooohBoi.header, 'im-hidden');\n            ooohBoi.header.style.top = ooohBoi.header_pos.top + \"px\";\n            ooohBoi.prev_scroll_direction = scroll_direction;\n        }\n    }\n    \/\/ listen \"scroll\" and \"resize\" window events\n    window.addEventListener('scroll', ooohBoi.checkScroll);\n    window.addEventListener('resize', ooohBoi.updateHeaderHeight);\n}\n\nfunction OB_outerHeight(el) {\n    var height = el.offsetHeight;\n    var style = getComputedStyle(el);\n    height += parseInt(style.marginTop) + parseInt(style.marginBottom);\n    return height;\n}\n\nfunction OB_addClass(el, className) {\n    if (el.classList) el.classList.add(className);\n    else {\n        var current = el.className,\n            found = false;\n        var all = current.split(' ');\n        for (var i = 0; i < all.length, !found; i++) found = all[i] === className;\n        if (!found) {\n            if (current === '') el.className = className;\n            else el.className += ' ' + className;\n        }\n    }\n}\n\nfunction OB_removeClass(el, className) {\n    if (el.classList) el.classList.remove(className);\n    else el.className = el.className.replace(new RegExp('(^|\\\\b)' + className.split(' ').join('|') + '(\\\\b|$)', 'gi'), ' ');\n}\n\nfunction OB_ready(fn) {\n    if (document.readyState != 'loading') fn();\n    else if (document.addEventListener) document.addEventListener('DOMContentLoaded', fn);\n    else {\n        document.attachEvent('onreadystatechange', function() {\n            if (document.readyState != 'loading') fn();\n        });\n    }\n}\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3591931d jltma-glass-effect-no\" data-id=\"3591931d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-489641c0 elementor-nav-menu__align-end elementor-nav-menu--stretch elementor-nav-menu__text-align-center elementor-nav-menu--dropdown-tablet elementor-nav-menu--toggle elementor-nav-menu--burger jltma-glass-effect-no elementor-widget elementor-widget-nav-menu\" data-id=\"489641c0\" data-element_type=\"widget\" data-settings=\"{&quot;full_width&quot;:&quot;stretch&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\\&quot;fas fa-chevron-down\\&quot;&gt;&lt;\\\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;layout&quot;:&quot;horizontal&quot;,&quot;toggle&quot;:&quot;burger&quot;}\" data-widget_type=\"nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<nav aria-label=\"Menu\" class=\"elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none\">\n\t\t\t\t<ul id=\"menu-1-489641c0\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-120\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/mitmachen\/\" class=\"elementor-item\">Participate<\/a><\/li>\n<li class=\"menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-1530\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/category\/aktuelles-beitraege\/\" class=\"elementor-item\">News<\/a>\n<ul class=\"sub-menu elementor-nav-menu--dropdown\">\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-post menu-item-1646\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wirtschafts-impulse\/\" class=\"elementor-sub-item\">WIRtschafts-Impulse<\/a><\/li>\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1647\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/aktuelles\/\" class=\"elementor-sub-item\">Everything new<\/a><\/li>\n<\/ul>\n<\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-324\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/ueber\/\" class=\"elementor-item\">About<\/a>\n<ul class=\"sub-menu elementor-nav-menu--dropdown\">\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-117\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/ziele\/\" class=\"elementor-sub-item\">Goals<\/a><\/li>\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-118\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/ueber-uns\/\" class=\"elementor-sub-item\">About us<\/a><\/li>\n<\/ul>\n<\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-116\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/kontakt\/\" class=\"elementor-item\">Contact<\/a><\/li>\n<li class=\"trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher current-language-menu-item menu-item-1447\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\" class=\"elementor-item elementor-item-anchor\"><span data-no-translation><img decoding=\"async\" class=\"trp-flag-image\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/plugins\/translatepress-multilingual\/assets\/images\/flags\/de_DE_formal.png\" width=\"18\" height=\"12\" alt=\"de_DE_formal\" title=\"German\"><\/span><\/a><\/li>\n<li class=\"trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher current-language-menu-item menu-item-1444\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\" class=\"elementor-item elementor-item-anchor\"><span data-no-translation><img decoding=\"async\" class=\"trp-flag-image\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/plugins\/translatepress-multilingual\/assets\/images\/flags\/en_US.png\" width=\"18\" height=\"12\" alt=\"en_US\" title=\"English\"><\/span><\/a><\/li>\n<li class=\"trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher current-language-menu-item menu-item-1535\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\" class=\"elementor-item elementor-item-anchor\"><span data-no-translation><img loading=\"lazy\" decoding=\"async\" class=\"trp-flag-image\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/plugins\/translatepress-multilingual\/assets\/images\/flags\/es_ES.png\" width=\"18\" height=\"12\" alt=\"es_ES\" title=\"Spanish\"><\/span><\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t<div class=\"elementor-menu-toggle\" role=\"button\" tabindex=\"0\" aria-label=\"Menu Toggle\" aria-expanded=\"false\">\n\t\t\t<i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--open eicon-menu-bar\"><\/i><i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--close eicon-close\"><\/i>\t\t<\/div>\n\t\t\t\t\t<nav class=\"elementor-nav-menu--dropdown elementor-nav-menu__container\" aria-hidden=\"true\">\n\t\t\t\t<ul id=\"menu-2-489641c0\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-120\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/mitmachen\/\" class=\"elementor-item\" tabindex=\"-1\">Participate<\/a><\/li>\n<li class=\"menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-1530\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/category\/aktuelles-beitraege\/\" class=\"elementor-item\" tabindex=\"-1\">News<\/a>\n<ul class=\"sub-menu elementor-nav-menu--dropdown\">\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-post menu-item-1646\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wirtschafts-impulse\/\" class=\"elementor-sub-item\" tabindex=\"-1\">WIRtschafts-Impulse<\/a><\/li>\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1647\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/aktuelles\/\" class=\"elementor-sub-item\" tabindex=\"-1\">Everything new<\/a><\/li>\n<\/ul>\n<\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-324\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/ueber\/\" class=\"elementor-item\" tabindex=\"-1\">About<\/a>\n<ul class=\"sub-menu elementor-nav-menu--dropdown\">\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-117\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/ziele\/\" class=\"elementor-sub-item\" tabindex=\"-1\">Goals<\/a><\/li>\n\t<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-118\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/ueber-uns\/\" class=\"elementor-sub-item\" tabindex=\"-1\">About us<\/a><\/li>\n<\/ul>\n<\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-116\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/kontakt\/\" class=\"elementor-item\" tabindex=\"-1\">Contact<\/a><\/li>\n<li class=\"trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher current-language-menu-item menu-item-1447\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\" class=\"elementor-item elementor-item-anchor\" tabindex=\"-1\"><span data-no-translation><img decoding=\"async\" class=\"trp-flag-image\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/plugins\/translatepress-multilingual\/assets\/images\/flags\/de_DE_formal.png\" width=\"18\" height=\"12\" alt=\"de_DE_formal\" title=\"German\"><\/span><\/a><\/li>\n<li class=\"trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher current-language-menu-item menu-item-1444\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\" class=\"elementor-item elementor-item-anchor\" tabindex=\"-1\"><span data-no-translation><img decoding=\"async\" class=\"trp-flag-image\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/plugins\/translatepress-multilingual\/assets\/images\/flags\/en_US.png\" width=\"18\" height=\"12\" alt=\"en_US\" title=\"English\"><\/span><\/a><\/li>\n<li class=\"trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher current-language-menu-item menu-item-1535\"><a href=\"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\" class=\"elementor-item elementor-item-anchor\" tabindex=\"-1\"><span data-no-translation><img loading=\"lazy\" decoding=\"async\" class=\"trp-flag-image\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/plugins\/translatepress-multilingual\/assets\/images\/flags\/es_ES.png\" width=\"18\" height=\"12\" alt=\"es_ES\" title=\"Spanish\"><\/span><\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-418fde0d jltma-glass-effect-no\" data-id=\"418fde0d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-65b5a9c8 elementor-align-center elementor-mobile-align-justify jltma-glass-effect-no elementor-widget elementor-widget-button\" data-id=\"65b5a9c8\" data-element_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-xs\" href=\"\">\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\">Find your recipe<\/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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"has_ma_el_bg_slider elementor-section elementor-top-section elementor-element elementor-element-cc748f3 elementor-section-boxed elementor-section-height-default elementor-section-height-default jltma-glass-effect-no\" data-id=\"cc748f3\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-38126771 jltma-glass-effect-no\" data-id=\"38126771\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-78056968 jltma-glass-effect-no elementor-widget elementor-widget-spacer\" data-id=\"78056968\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"has_ma_el_bg_slider elementor-section elementor-top-section elementor-element elementor-element-f9c324b elementor-section-boxed elementor-section-height-default elementor-section-height-default jltma-glass-effect-no\" data-id=\"f9c324b\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f9d25b4 jltma-glass-effect-no\" data-id=\"f9d25b4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a60472d jltma-glass-effect-no elementor-widget elementor-widget-heading\" data-id=\"a60472d\" data-element_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\">Privacy<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a94af7 jltma-glass-effect-no elementor-widget elementor-widget-spacer\" data-id=\"3a94af7\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c23bfca jltma-glass-effect-no elementor-widget elementor-widget-text-editor\" data-id=\"c23bfca\" data-element_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>This data protection declaration informs you about the nature, scope and purpose of the processing of personal data (hereinafter referred to as \"data\") within our online offer and the websites, functions and content associated with it, as well as external online presences, such as our social media profiles (hereinafter collectively referred to as \"online offer\"). With regard to the terms used, such as \"processing\" or \"controller\", we refer to the definitions in Article 4 of the General Data Protection Regulation (GDPR).<\/p><p>\u00a0<\/p><p><strong>Responsible<br \/><\/strong>Frank Braun, Herrnh\u00fcttestr. 21, 90411 Nuremberg;<br \/>Kerstin Seeger, Goethestr. 16, 90522 Oberasbach;<br \/>Maria Seeger, Beethovenstr. 12, 50674 Cologne.<br \/>Contact:<em><span style=\"color: #000000;\"> <a style=\"color: #000000;\" href=\"https:\/\/wir-tschaft.jetzt\/en\/impressum\/\">See imprint<\/a><\/span><\/em><\/p><p>\u00a0<\/p><p><strong>Types of data processed<br \/><\/strong>- Inventory data (e.g., names, addresses).<br \/>- Contact information (e.g., email, phone numbers).<br \/>- Content data (e.g., text input, photographs, videos).<br \/>- Usage data (e.g., web pages visited, interest in content, access times).<br \/>- Meta\/communication data (e.g., device information, IP addresses).<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Categories of persons concerned<br \/><\/strong>Visitors and users of the online offer (hereinafter we also refer to the data subjects collectively as \"users\").<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Purpose of processing<br \/><\/strong>- Provision of the online offer, its functions and contents.<br \/>- Respond to contact requests and communicate with users.<br \/>- Safety measures.<br \/>- Reach measurement\/marketing<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Terms used<br \/><\/strong>\"Personal data\" means any information relating to an identified or identifiable natural person (hereinafter \"data subject\"); an identifiable natural person is one who can be identified, directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier (e.g. cookie) or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person.<\/p><p data-adtags-visited=\"true\">\"Processing\" means any operation or set of operations which is performed upon personal data, whether or not by automatic means. The term is broad and includes virtually any handling of data.<\/p><p data-adtags-visited=\"true\">\"pseudonymization\" means the processing of personal data in such a way that the personal data can no longer be attributed to a specific data subject without the use of additional information, provided that such additional information is kept separately and is subject to technical and organizational measures which ensure that the personal data are not attributed to an identified or identifiable natural person.<\/p><p data-adtags-visited=\"true\">\"profiling\" means any automated processing of personal data which consists in using such personal data to evaluate certain personal aspects relating to a natural person, in particular to analyze or predict aspects relating to that natural person's performance at work, economic situation, health, personal preferences, interests, reliability, behavior, location or change of location.<\/p><p data-adtags-visited=\"true\">Controller\" means the natural or legal person, public authority, agency or other body which alone or jointly with others determines the purposes and means of the processing of personal data.<\/p><p data-adtags-visited=\"true\">\"Processor\" means a natural or legal person, public authority, agency or other body which processes personal data on behalf of the Controller.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Relevant legal bases<br \/><\/strong>In accordance with Art. 13 DSGVO, we inform you about the legal basis of our data processing. If the legal basis is not mentioned in the privacy policy, the following applies: The legal basis for obtaining consent is Art. 6(1)(a) and Art. 7 DSGVO, the legal basis for processing to fulfill our services and carry out contractual measures and respond to inquiries is Art. 6(1)(b) DSGVO, the legal basis for processing to fulfill our legal obligations is Art. 6(1)(c) DSGVO, and the legal basis for processing to protect our legitimate interests is Art. 6(1)(f) DSGVO. In the event that vital interests of the data subject or another natural person make processing of personal data necessary, Art. 6 (1) lit. d DSGVO serves as the legal basis.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Security measures<br \/><\/strong>We take appropriate technical and organizational measures to ensure a level of protection appropriate to the risk in accordance with Article 32 of the GDPR, taking into account the state of the art, the costs of implementation and the nature, scope, circumstances and purposes of the processing, as well as the varying likelihood and severity of the risk to the rights and freedoms of natural persons.<\/p><p data-adtags-visited=\"true\">The measures include, in particular, safeguarding the confidentiality, integrity and availability of data by controlling physical access to the data, as well as the access, input, transfer, safeguarding of availability and its separation. Furthermore, we have established procedures to ensure the exercise of data subjects' rights, deletion of data, and response to data compromise. Furthermore, we already take the protection of personal data into account during the development and selection of hardware, software and processes, in accordance with the principle of data protection through technology design and through data protection-friendly default settings (Article 25 of the GDPR).<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Cooperation with processors and third parties<\/strong><br \/>If, in the course of our processing, we disclose data to other persons and companies (processors or third parties), transmit it to them or otherwise grant them access to the data, this will only be done on the basis of a legal permission (e.g. if a transmission of the data to third parties, such as to payment service providers, is required for the performance of the contract pursuant to Art. 6 (1) lit. b DSGVO), you have consented, a legal obligation provides for this or on the basis of our legitimate interests (e.g. when using agents, web hosts, etc.).<\/p><p data-adtags-visited=\"true\">If we commission third parties with the processing of data on the basis of a so-called \"order processing agreement\", this is done on the basis of Art. 28 DSGVO.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Transfers to third countries<\/strong><br \/>If we process data in a third country (i.e. outside the European Union (EU) or the European Economic Area (EEA)) or if this is done in the context of using third-party services or disclosing or transferring data to third parties, this is only done if it is done to fulfill our (pre-)contractual obligations, on the basis of your consent, due to a legal obligation or on the basis of our legitimate interests. Subject to legal or contractual permissions, we process or allow the processing of data in a third country only if the special requirements of Art. 44 et seq. DSGVO are met. This means that the processing is carried out, for example, on the basis of special guarantees, such as the officially recognized determination of a level of data protection corresponding to that of the EU (e.g. for the USA through the \"Privacy Shield\") or compliance with officially recognized special contractual obligations (so-called \"standard contractual clauses\").<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Rights of the data subjects<\/strong><br \/>You have the right to request confirmation as to whether data in question is being processed and to information about this data, as well as further information and a copy of the data in accordance with Art. 15 DSGVO.<\/p><p data-adtags-visited=\"true\">You have according to. Art. 16 DSGVO the right to request the completion of the data concerning you or the correction of incorrect data concerning you.<\/p><p data-adtags-visited=\"true\">In accordance with Article 17 of the GDPR, you have the right to demand that the data in question be deleted without delay, or alternatively, in accordance with Article 18 of the GDPR, to demand restriction of the processing of the data.<\/p><p data-adtags-visited=\"true\">You have the right to request to receive the data concerning you that you have provided to us in accordance with Article 20 of the GDPR and to request its transfer to other data controllers.<\/p><p data-adtags-visited=\"true\">You also have the right to file a complaint with the competent supervisory authority pursuant to Art. 77 DSGVO.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Right of withdrawal<\/strong><br \/>You have the right to revoke given consents according to Art. 7 para. 3 DSGVO with effect for the future<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Right of objection<\/strong><br \/>You may object to the future processing of data relating to you in accordance with Art. 21 DSGVO at any time. The objection can be made in particular against the processing for purposes of direct marketing.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Cookies and right to object to direct advertising<\/strong><br \/>Cookies\" are small files that are stored on users' computers. Different information can be stored within the cookies. A cookie is primarily used to store information about a user (or the device on which the cookie is stored) during or after his visit to an online offer. Temporary cookies, or \"session cookies\" or \"transient cookies\", are cookies that are deleted after a user leaves an online offer and closes his browser. Such a cookie may store, for example, the contents of a shopping cart in an online store or a login status. Cookies that remain stored even after the browser is closed are referred to as \"permanent\" or \"persistent\". For example, the login status can be stored if users visit them after several days. Likewise, the interests of users can be stored in such a cookie, which is used for range measurement or marketing purposes. Third-party cookies\" are cookies that are offered by providers other than the responsible party that operates the online offer (otherwise, if it is only their cookies, it is called \"first-party cookies\").<\/p><p data-adtags-visited=\"true\">We may use temporary and permanent cookies and explain this in our privacy policy.<\/p><p data-adtags-visited=\"true\">If users do not want cookies to be stored on their computer, they are asked to disable the corresponding option in the system settings of their browser. Stored cookies can be deleted in the system settings of the browser. The exclusion of cookies can lead to functional restrictions of this online offer.<\/p><p data-adtags-visited=\"true\">A general objection to the use of cookies used for online marketing purposes can be made for a large number of the services, especially in the case of tracking, via the U.S. site\u00a0<a href=\"http:\/\/www.aboutads.info\/choices\/\" class=\"broken_link\"><em><span style=\"color: #000000;\">http:\/\/www.aboutads.info\/choices\/<\/span><\/em><\/a>\u00a0or the EU side\u00a0<a href=\"http:\/\/www.youronlinechoices.com\/\"><span style=\"color: #000000;\"><em>http:\/\/www.youronlinechoices.com\/<\/em><\/span><\/a>\u00a0be explained. Furthermore, the storage of cookies can be achieved by disabling them in the browser settings. Please note that then not all functions of this online offer can be used.<\/p><h3>\u00a0<\/h3><p data-adtags-visited=\"true\"><strong>Data deletion<\/strong><br \/>The data processed by us will be deleted or restricted in its processing in accordance with Articles 17 and 18 DSGVO. Unless expressly stated within the scope of this data protection declaration, the data stored by us will be deleted as soon as it is no longer required for its intended purpose and the deletion does not conflict with any statutory retention obligations. If the data is not deleted because it is required for other and legally permissible purposes, its processing will be restricted. I.e. the data is blocked and not processed for other purposes. This applies, for example, to data that must be retained for reasons of commercial or tax law.<\/p><p data-adtags-visited=\"true\">According to legal requirements in Germany, the storage takes place in particular for 10 years in accordance with \u00a7\u00a7 147 Abs. 1 AO, 257 Abs. 1 No. 1 and 4, Abs. 4 HGB (books, records, management reports, accounting vouchers, commercial books, for taxation relevant documents, etc.) and 6 years in accordance with \u00a7 257 Abs. 1 No. 2 and 3, Abs. 4 HGB (commercial letters).<\/p><p data-adtags-visited=\"true\">According to legal requirements in Austria, storage is carried out in particular for 7 years in accordance with Section 132 (1) BAO (accounting records, vouchers\/invoices, accounts, receipts, business papers, statement of income and expenses, etc.), for 22 years in connection with real property and for 10 years for records in connection with electronically provided services, telecommunications, radio and television services provided to non-entrepreneurs in EU member states and for which the Mini-One-Stop-Shop (MOSS) is used.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Provision of our statutory and business services<\/strong><br \/>We process the data of our members, supporters, interested parties, customers or other persons in accordance with Art. 6 para. 1 lit. b. DSGVO, insofar as we offer them contractual services or act within the scope of existing business relationships, e.g. towards members, or are ourselves recipients of services and benefits. Otherwise, we process the data of data subjects pursuant to Art. 6 para. 1 lit. f. DSGVO on the basis of our legitimate interests, e.g. when it concerns administrative tasks or public relations.<\/p><p data-adtags-visited=\"true\">The data processed in this context, the type, scope and purpose and the necessity of their processing are determined by the underlying contractual relationship. In principle, this includes inventory and master data of the persons (e.g., name, address, etc.), as well as contact data (e.g., e-mail address, telephone, etc.), contract data (e.g., services used, content and information provided, names of contact persons) and, if we offer payable services or products, payment data (e.g., bank details, payment history, etc.).<\/p><p data-adtags-visited=\"true\">We delete data that is no longer required to fulfill our statutory and business purposes. This is determined according to the respective tasks and contractual relationships. In the case of business processing, we retain the data for as long as it may be relevant for business processing, as well as with regard to any warranty or liability obligations. The necessity of retaining the data is reviewed every three years; otherwise, the statutory retention obligations apply.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Comments and contributions<\/strong><br \/>When users leave comments or other contributions, their IP addresses may be stored for 7 days on the basis of our legitimate interests as defined in Art. 6 (1) lit. f. DSGVO are stored for 7 days. This is done for our security in case someone leaves unlawful content in comments and posts (insults, prohibited political propaganda, etc.). In this case, we ourselves can be prosecuted for the comment or post and are therefore interested in the identity of the author.<\/p><p data-adtags-visited=\"true\">Furthermore, we reserve the right, on the basis of our legitimate interests pursuant to Art. 6 para. 1 lit. f. DSGVO, to process the information of the users for the purpose of spam detection.<\/p><p data-adtags-visited=\"true\">On the same legal basis, we reserve the right, in the case of surveys, to store the IP addresses of users for their duration and to use Cookis to avoid multiple votes.<\/p><p data-adtags-visited=\"true\">The data provided in the context of comments and contributions, will be stored by us permanently until the objection of the user.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Contact<\/strong><br \/>When contacting us (e.g. by contact form, e-mail, telephone or via social media), the user's details are processed for the purpose of handling the contact request and its processing pursuant to Art. 6 (1) lit. b) DSGVO. The user's details may be stored in a customer relationship management system (\"CRM system\") or comparable inquiry organization.<\/p><p data-adtags-visited=\"true\">We delete the requests if they are no longer necessary. We review the necessity every two years; Furthermore, the legal archiving obligations apply.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Hosting and emailing<\/strong><br \/>The hosting services used by us serve to provide the following services: Infrastructure and platform services, computing capacity, storage space and database services, e-mail dispatch, security services and technical maintenance services, which we use for the purpose of operating this online offering.<\/p><p data-adtags-visited=\"true\">We, or our hosting provider, process inventory data, contact data, content data, contract data, usage data, meta data and communication data of customers, interested parties and visitors of this online offer on the basis of our legitimate interests in an efficient and secure provision of this online offer pursuant to Art. 6 para. 1 lit. f DSGVO in conjunction with Art. 28 DSGVO. Art. 28 DSGVO (conclusion of order processing contract).<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Collection of access data and log files<\/strong><br \/>We, or rather our hosting provider, collects on the basis of our legitimate interests within the meaning of Art. 6 para. 1 lit. f. DSGVO data about each access to the server on which this service is located (so-called server log files). The access data includes the name of the website accessed, file, date and time of access, amount of data transferred, notification of successful access, browser type and version, the user's operating system, referrer URL (the previously visited page), IP address and the requesting provider.<\/p><p data-adtags-visited=\"true\">Log file information is stored for security reasons (e.g. to clarify acts of abuse or fraud) for a maximum of 7 days and then deleted. Data whose further storage is required for evidentiary purposes is exempt from deletion until final clarification of the respective incident.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Online presence in social media<\/strong><br \/>We maintain online presences within social networks and platforms in order to be able to communicate with the customers, interested parties and users active there and to inform them about our services there. When calling up the respective networks and platforms, the terms and conditions and data processing guidelines of their respective operators apply.<\/p><p data-adtags-visited=\"true\">Unless otherwise stated in our privacy policy, we process the data of users if they communicate with us within the social networks and platforms, e.g. write posts on our online presences or send us messages.<\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><strong>Youtube<\/strong><br \/>We integrate the videos of the platform \"YouTube\" of the provider Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA. Privacy policy:\u00a0<a href=\"https:\/\/www.google.com\/policies\/privacy\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color: #000000;\"><em>https:\/\/www.google.com\/policies\/privacy\/<\/em><\/span><\/a>, Opt-Out:\u00a0<a href=\"https:\/\/adssettings.google.com\/authenticated\" target=\"_blank\" rel=\"noreferrer noopener\"><em><span style=\"color: #000000;\">https:\/\/adssettings.google.com\/authenticated<\/span><\/em><\/a>.<br \/><br \/>We use Google's reCaptcha service to determine whether a human or a computer is making a particular entry in our contact or newsletter form. Google uses the following data to check whether you are a human or a computer: IP address of the terminal device used, the website you visit with us on which the captcha is embedded, the date and duration of the visit, the recognition data of the browser and operating system type used, Google account if you are logged in to Google, mouse movements on the reCaptcha areas and tasks that require you to identify images. The legal basis for the described data processing is Art. 6 (1) lit. f of the General Data Protection Regulation. There is a legitimate interest on our side in this data processing to ensure the security of our website and to protect us from automated entries (attacks).<br \/><br \/><\/p><p data-adtags-visited=\"true\">\u00a0<\/p><p data-adtags-visited=\"true\"><em><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https:\/\/datenschutz-generator.de\/\" target=\"_blank\" rel=\"noreferrer noopener\">Created with Datenschutz-Generator.de by RA Dr. Thomas Schwenke<\/a><\/span><\/em><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"has_ma_el_bg_slider elementor-section elementor-top-section elementor-element elementor-element-7e42f49 elementor-section-boxed elementor-section-height-default elementor-section-height-default jltma-glass-effect-no\" data-id=\"7e42f49\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2ac8b0d jltma-glass-effect-no\" data-id=\"2ac8b0d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6afc15a jltma-glass-effect-no elementor-widget elementor-widget-spacer\" data-id=\"6afc15a\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"has_ma_el_bg_slider elementor-section elementor-top-section elementor-element elementor-element-1d750506 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle jltma-glass-effect-no\" data-id=\"1d750506\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-668e8e5a jltma-glass-effect-no\" data-id=\"668e8e5a\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-19b19012 elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width jltma-glass-effect-no elementor-widget elementor-widget-icon-list\" data-id=\"19b19012\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Start<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/rezepte\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Recipes<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/mitmachen\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Participate<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/aktuelles\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">News<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/ziele\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Our goals<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/ueber-uns\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">About Us<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-29ded47c jltma-glass-effect-no\" data-id=\"29ded47c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2561afbd e-grid-align-left elementor-shape-square elementor-grid-0 jltma-glass-effect-no elementor-widget elementor-widget-social-icons\" data-id=\"2561afbd\" data-element_type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1e8ba32\" href=\"https:\/\/www.facebook.com\/WIR-tschaft-104574958347806\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Facebook<\/span>\n\t\t\t\t\t\t<i class=\"fab fa-facebook\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-7b8ed6b broken_link\" href=\"https:\/\/www.instagram.com\/wir_tschaft\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Instagram<\/span>\n\t\t\t\t\t\t<i class=\"fab fa-instagram\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-2e19d66\" href=\"https:\/\/twitter.com\/WTschaft\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Twitter<\/span>\n\t\t\t\t\t\t<i class=\"fab fa-twitter\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70452d55 jltma-glass-effect-no elementor-widget elementor-widget-spacer\" data-id=\"70452d55\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1720de64 elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width jltma-glass-effect-no elementor-widget elementor-widget-icon-list\" data-id=\"1720de64\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/datenschutz\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Privacy<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/impressum\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Imprint<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c444c19 elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width jltma-glass-effect-no elementor-widget elementor-widget-icon-list\" data-id=\"4c444c19\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">kontakt(at)wir-tschaft.jetzt<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-16a7621e jltma-glass-effect-no\" data-id=\"16a7621e\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4ef4c9be jltma-glass-effect-no elementor-widget elementor-widget-text-editor\" data-id=\"4ef4c9be\" data-element_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>never miss a recipe again?<\/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-2c569f96 jltma-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"2c569f96\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\nfunction loadjQuery(e,t){var n=document.createElement(\"script\");n.setAttribute(\"src\",e);n.onload=t;n.onreadystatechange=function(){if(this.readyState==\"complete\"||this.readyState==\"loaded\")t()};document.getElementsByTagName(\"head\")[0].appendChild(n)}function main(){\nvar $cr=jQuery.noConflict();var old_src;$cr(document).ready(function(){$cr(\".cr_form\").submit(function(){$cr(this).find('.clever_form_error').removeClass('clever_form_error');$cr(this).find('.clever_form_note').remove();$cr(this).find(\".musthave\").find('input, textarea').each(function(){if(jQuery.trim($cr(this).val())==\"\"||($cr(this).is(':checkbox'))||($cr(this).is(':radio'))){if($cr(this).is(':checkbox')||($cr(this).is(':radio'))){if(!$cr(this).parent().find(\":checked\").is(\":checked\")){$cr(this).parent().addClass('clever_form_error')}}else{$cr(this).addClass('clever_form_error')}}});if($cr(this).attr(\"action\").search(document.domain)>0&&$cr(\".cr_form\").attr(\"action\").search(\"wcs\")>0){var cr_email=$cr(this).find('input[name=email]');var unsub=false;unsub=true;if($cr(\"input['name=cr_subunsubscribe'][value='false']\").length){if($cr(\"input['name=cr_subunsubscribe'][value='false']\").is(\":checked\")){unsub=true}}if(cr_email.val()&&!unsub){$cr.ajax({type:\"GET\",url:$cr(\".cr_form\").attr(\"action\").replace(\"wcs\",\"check_email\")+$cr(this).find('input[name=email]').val(),success:function(data){if(data){cr_email.addClass('clever_form_error').before(\"<div class='clever_form_note cr_font'>\"+data+\"<\/div>\");return false}},async:false})}var cr_captcha=$cr(this).find('input[name=captcha]');if(cr_captcha.val()){$cr.ajax({type:\"GET\",url:$cr(\".cr_form\").attr(\"action\").replace(\"wcs\",\"check_captcha\")+$cr(this).find('input[name=captcha]').val(),success:function(data){if(data){cr_captcha.addClass('clever_form_error').after(\"<div style='display:block' class='clever_form_note cr_font'>\"+data+\"<\/div>\");return false}},async:false})}}if($cr(this).find('.clever_form_error').length){return false}return true});$cr('input[class*=\"cr_number\"]').change(function(){if(isNaN($cr(this).val())){$cr(this).val(1)}if($cr(this).attr(\"min\")){if(($cr(this).val()*1)<($cr(this).attr(\"min\")*1)){$cr(this).val($cr(this).attr(\"min\"))}}if($cr(this).attr(\"max\")){if(($cr(this).val()*1)>($cr(this).attr(\"max\")*1)){$cr(this).val($cr(this).attr(\"max\"))}}});old_src=$cr(\"div[rel='captcha'] img:not(.captcha2_reload)\").attr(\"src\");if($cr(\"div[rel='captcha'] img:not(.captcha2_reload)\").length!=0){captcha_reload()}});function captcha_reload(){var timestamp=new Date().getTime();$cr(\"div[rel='captcha'] img:not(.captcha2_reload)\").attr(\"src\",\"\");$cr(\"div[rel='captcha'] img:not(.captcha2_reload)\").attr(\"src\",old_src+\"?t=\"+timestamp);return false}\n\n}\nif(typeof jQuery===\"undefined\"){loadjQuery(\"\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.4.2\/jquery.min.js\",main)}else{main()}\n\n<\/script>\n\n\n<style>\n* {box-sizing: border-box;}\n.cr-mail-responsive, .cr-mail-responsive * {box-sizing: unset;}\n.cr_site{margin:0;padding:75px 0 0 0;text-align:center;background-color:#eeeeee;}\n.cr_font{font-size: 14px;font-family: Arial;}\n.cr_page{width: 100% !important;max-width:640px}\n.cr_body{box-shadow: 0px 0px 14px 0px rgba(51,51,51,0.4);border-radius:8px;line-height:150%;font-family:Helvetica;font-size:12px;color:#333333;}\n.cr_body h2, .cr_header h2{font-size:22px;line-height:28px;margin:0 0 10px 0;}\n.cr_body h1, .cr_header h2{font-size:28px;margin-bottom:15px;padding:0;margin-top:0;}\n.wrapper, .cr_page{margin:0 auto 10px auto;text-align:left;}\n.cr_header{text-align:center;background: transparent !Important;}\n.cr_body label, .cr_body .label{float:none;clear:both;display:inline-block;width:auto;margin-top:8px;text-align:left;font-weight:bold;position:relative;}\n.cr_body .no-label{font-weight: normal;}\n.cr_body #editable_content{padding:20px;}\n.editable-content {padding:20px}\n.cr_button{display:inline-block;font-family:'Helvetica', Arial, sans-serif;width:auto;white-space:nowrap;height:32px;margin:5px 5px 0 0;padding:0 22px;text-decoration:none;text-align:center;font-weight:bold;font-style:normal;font-size:15px;line-height:32px;cursor:pointer;border:0;-moz-border-radius:4px;border-radius:4px;-webkit-border-radius:4px;vertical-align:top;}\n.cr_button{background-color:#333;color:#ffffff;}\n.cr_button:hover,.cr_button-small:hover{opacity:0.7;filter:alpha(opacity=70);}\n.powered{padding:20px 0;width:560px;margin:0 auto;}\n.cr_ipe_item label{line-height:150%;font-size:14px;}\n.cr_ipe_item textarea{background: none repeat scroll 0 0 #ffffff;border-radius:3px;border: 1px solid #ccc;font-family: Helvetica;font-size: 16px;}\n.cr_ipe_item input{background: none repeat scroll 0 0 #ffffff;border-radius:3px;border: 1px solid #ccc;padding: 12px;font-family: Helvetica;font-size: 16px;}\n.cr_ipe_item select{background: none repeat scroll 0 0 #ffffff;border-radius:3px;border: 1px solid #ccc;padding: 12px !Important;display: block;margin: 0;padding: 5px;width: 100%;font-family: Helvetica;font-size: 16px;}\n.cr_ipe_item input.cr_ipe_radio, input.cr_ipe_checkbox{-moz-binding: none;-moz-box-sizing: border-box;background-color: -moz-field !important;border: 2px inset ThreeDFace !important;color: -moz-fieldtext !important;cursor: default;height: 13px;padding: 0 !important;width: 13px;}\n.cr_ipe_item input.cr_ipe_radio{-moz-appearance: radio;border-radius: 100% 100% 100% 100% !important;margin: 3px 3px 0 5px;}\n.cr_ipe_item{margin: 0px 10px; padding: 0px 10px;}\n.submit_container{text-align:center}\n.cr_ipe_item.inactive{display:none;}\n.imprint{font-size:0.8em;}\n.cr_captcha{padding-left:130px;}\n.cr_error{font-size:1.1em;padding:10px;}\n.clever_form_error{background-color:#f99; color:#000; border:1px solid #f22 !important}\n.clever_form_note {margin:26px 0 0 3px;position:absolute;display:inline; padding: 2px 4px; font-weight:bold;background-color:#f2ecb5; color:#000; font-size:12px !important;  }\n.cr_form-flex{display: flex;}\n.cr_form-flex>.cr_form-inputgroup{flex-grow:1;margin-right: 5px;}\n.cr_form-flex>.cr_form-inputgroup:last-child{margin-right: 0px;}\n.cr_form-flex input{width:100%;}\n\n.cr_site {background-color:#eee;}\n.cr_header {color:#000000;}\n.cr_body {background-color:#ffffff;font-size:12px;color:#000000;}\n.cr_hr {background-color:#ccc;}\n.cr_site a {color:#0084ff;}\n.imprint{color:#000;}\n\n<\/style>\n\n\n<style id=\"style\">\n.cr_site {background-color:#F4E47078;}\n.cr_body {color:#000000;background-color:#F4E47078;}\n.cr_header {color:#000000;}\n.cr_hr {background-color:#ccc;}\n.cr_site a {color:#0084ff;}\n.imprint {color:#000000;}\n.cr_page {width:auto;}\n.cr_button {background-color:#000000;}\n.cr_font {font-family:Georgia;}\n\n<\/style>\n\n\n\n<form class=\"layout_form cr_form cr_font\" action=\"https:\/\/seu2.cleverreach.com\/f\/286547-285851\/wcs\/\" method=\"post\" target=\"_blank\">\n\t<div class=\"cr_body cr_page cr_font formbox\">\n\t\t<div class=\"non_sortable\" style=\"text-align:left;\">\n\t\t\t\n\t\t<\/div>\n\t\t\n\t\t<div class=\"editable_content\" style=\"text-align:left;\">\n\t\t<div id=\"6283897\" rel=\"email\" class=\"cr_form-component cr_form-component--email cr_ipe_item ui-sortable musthave\" style=\"margin-bottom:px;\">\n    <div class=\"cr_form-inputgroup cr_form-inputgroup--typeemail\">\n        <label for=\"text6283897\">Email*<\/label>\n        <input class=\"cr_form-input\" type=\"email\" id=\"text6283897\" name=\"email\" value=\"\" placeholder=\"name@example.com\" style=\"width:100%;\">\n    <\/div>\n<\/div><div id=\"6283901\" rel=\"recaptcha\" class=\"cr_ipe_item ui-sortable musthave\">\n\t\n\n\t\n\n\t<script src=\"https:\/\/www.google.com\/recaptcha\/api.js\" async defer><\/script>\n\t<br\/>\n\t<div id=\"recaptcha_v2_widget\" class=\"g-recaptcha\" data-theme=\"light\" data-size=\"normal\" data-sitekey=\"6Lfhcd0SAAAAAOBEHmAVEHJeRnrH8T7wPvvNzEPD\"  ><\/div>\n\t<br\/>\n\n\t\n<\/div><div id=\"6283899\" rel=\"button\" class=\"cr_form-component cr_form-component--submit cr_ipe_item ui-sortable  submit_container\">\n    <button type=\"submit\" class=\"cr_form-block cr_button\">SUBSCRIBE TO NEWSLETTER<\/button>\n<\/div>\n\n        <\/div>\n        \n\t<noscript><a href=\"http:\/\/www.cleverreach.de\">www.CleverReach.de<\/a><\/noscript>\n    <\/div>\n\n    \n<\/form>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e0727f0 jltma-glass-effect-no elementor-widget elementor-widget-image\" data-id=\"7e0727f0\" data-element_type=\"widget\" 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\t<a href=\"https:\/\/wir-tschaft.jetzt\/en\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"300\" height=\"101\" src=\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo.png\" class=\"attachment-medium size-medium wp-image-150\" alt=\"WIR wie WIRtschaft\" srcset=\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo.png 650w, https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo-400x145.png 400w, https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/WE-are-economy-Logo-18x7.png 18w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"has_ma_el_bg_slider elementor-section elementor-top-section elementor-element elementor-element-7dd4366 elementor-section-full_width elementor-section-height-default elementor-section-height-default jltma-glass-effect-no\" data-id=\"7dd4366\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-49fe9eb jltma-glass-effect-no\" data-id=\"49fe9eb\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1617d02 jltma-glass-effect-no elementor-widget elementor-widget-text-editor\" data-id=\"1617d02\" data-element_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>\u00a9 WIR wie WIRtschaft<br><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"has_ma_el_bg_slider elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-27479a0 jltma-glass-effect-no\" data-id=\"27479a0\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Find your recipe Data protection This data protection declaration informs you about the nature, scope and purpose of the processing of personal data (hereinafter referred to as \"data\") within<a href=\"https:\/\/wir-tschaft.jetzt\/en\/datenschutz\/\" class=\"more-link\">View More<\/a><\/p>","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"footnotes":""},"class_list":["post-194","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Datenschutz<\/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:\/\/wir-tschaft.jetzt\/en\/datenschutz\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Datenschutz\" \/>\n<meta property=\"og:description\" content=\"Finden Sie ihr Rezept Datenschutz Diese Datenschutzerkl\u00e4rung kl\u00e4rt Sie \u00fcber die Art, den Umfang und Zweck der Verarbeitung von personenbezogenen Daten (nachfolgend kurz \u201eDaten\u201c) innerhalbView More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wir-tschaft.jetzt\/en\/datenschutz\/\" \/>\n<meta property=\"og:site_name\" content=\"WIR wie WIRtschaft\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Wir.wie.WIRtschaft\/\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-01T18:13:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@WTschaft\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"14 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/\",\"url\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/\",\"name\":\"Datenschutz\",\"isPartOf\":{\"@id\":\"https:\/\/wir-tschaft.jetzt\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png\",\"datePublished\":\"2021-02-04T19:52:40+00:00\",\"dateModified\":\"2021-03-01T18:13:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wir-tschaft.jetzt\/datenschutz\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/#primaryimage\",\"url\":\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png\",\"contentUrl\":\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wir-tschaft.jetzt\/datenschutz\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/wir-tschaft.jetzt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Datenschutz\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wir-tschaft.jetzt\/#website\",\"url\":\"https:\/\/wir-tschaft.jetzt\/\",\"name\":\"WIR wie WIRtschaft\",\"description\":\"WIRtschaft gemeinsam neu kochen\",\"publisher\":{\"@id\":\"https:\/\/wir-tschaft.jetzt\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wir-tschaft.jetzt\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/wir-tschaft.jetzt\/#organization\",\"name\":\"WIR wie WIRtschaft\",\"url\":\"https:\/\/wir-tschaft.jetzt\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wir-tschaft.jetzt\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2020\/12\/WIRtschaft-Logo800x600.png\",\"contentUrl\":\"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2020\/12\/WIRtschaft-Logo800x600.png\",\"width\":1667,\"height\":1250,\"caption\":\"WIR wie WIRtschaft\"},\"image\":{\"@id\":\"https:\/\/wir-tschaft.jetzt\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Wir.wie.WIRtschaft\/\",\"https:\/\/x.com\/WTschaft\",\"https:\/\/www.instagram.com\/wir_tschaft\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Datenschutz","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:\/\/wir-tschaft.jetzt\/en\/datenschutz\/","og_locale":"en_US","og_type":"article","og_title":"Datenschutz","og_description":"Finden Sie ihr Rezept Datenschutz Diese Datenschutzerkl\u00e4rung kl\u00e4rt Sie \u00fcber die Art, den Umfang und Zweck der Verarbeitung von personenbezogenen Daten (nachfolgend kurz \u201eDaten\u201c) innerhalbView More","og_url":"https:\/\/wir-tschaft.jetzt\/en\/datenschutz\/","og_site_name":"WIR wie WIRtschaft","article_publisher":"https:\/\/www.facebook.com\/Wir.wie.WIRtschaft\/","article_modified_time":"2021-03-01T18:13:40+00:00","og_image":[{"url":"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@WTschaft","twitter_misc":{"Est. reading time":"14 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wir-tschaft.jetzt\/datenschutz\/","url":"https:\/\/wir-tschaft.jetzt\/datenschutz\/","name":"Datenschutz","isPartOf":{"@id":"https:\/\/wir-tschaft.jetzt\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wir-tschaft.jetzt\/datenschutz\/#primaryimage"},"image":{"@id":"https:\/\/wir-tschaft.jetzt\/datenschutz\/#primaryimage"},"thumbnailUrl":"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png","datePublished":"2021-02-04T19:52:40+00:00","dateModified":"2021-03-01T18:13:40+00:00","breadcrumb":{"@id":"https:\/\/wir-tschaft.jetzt\/datenschutz\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wir-tschaft.jetzt\/datenschutz\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wir-tschaft.jetzt\/datenschutz\/#primaryimage","url":"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png","contentUrl":"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2021\/02\/WIRtschaft-logo-700x236px-1-300x101.png"},{"@type":"BreadcrumbList","@id":"https:\/\/wir-tschaft.jetzt\/datenschutz\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/wir-tschaft.jetzt\/"},{"@type":"ListItem","position":2,"name":"Datenschutz"}]},{"@type":"WebSite","@id":"https:\/\/wir-tschaft.jetzt\/#website","url":"https:\/\/wir-tschaft.jetzt\/","name":"WIR wie WIRtschaft","description":"WIRtschaft gemeinsam neu kochen","publisher":{"@id":"https:\/\/wir-tschaft.jetzt\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wir-tschaft.jetzt\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wir-tschaft.jetzt\/#organization","name":"WIR wie WIRtschaft","url":"https:\/\/wir-tschaft.jetzt\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wir-tschaft.jetzt\/#\/schema\/logo\/image\/","url":"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2020\/12\/WIRtschaft-Logo800x600.png","contentUrl":"https:\/\/wir-tschaft.jetzt\/wp-content\/uploads\/2020\/12\/WIRtschaft-Logo800x600.png","width":1667,"height":1250,"caption":"WIR wie WIRtschaft"},"image":{"@id":"https:\/\/wir-tschaft.jetzt\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Wir.wie.WIRtschaft\/","https:\/\/x.com\/WTschaft","https:\/\/www.instagram.com\/wir_tschaft\/"]}]}},"_links":{"self":[{"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/comments?post=194"}],"version-history":[{"count":16,"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\/revisions"}],"predecessor-version":[{"id":1100,"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/pages\/194\/revisions\/1100"}],"wp:attachment":[{"href":"https:\/\/wir-tschaft.jetzt\/en\/wp-json\/wp\/v2\/media?parent=194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}